Path: blob/master/modules/core/test/test_intrin256.simd.hpp
16337 views
// This file is part of OpenCV project.1// It is subject to the license terms in the LICENSE file found in the top-level directory2// of this distribution and at http://opencv.org/license.html.3#if !defined CV_CPU_OPTIMIZATION_DECLARATIONS_ONLY && \4!defined CV_DISABLE_OPTIMIZATION && defined CV_ENABLE_INTRINSICS // TODO? C++ fallback implementation for SIMD25656#define CV__SIMD_FORCE_WIDTH 2567#include "opencv2/core/hal/intrin.hpp"8#undef CV__SIMD_FORCE_WIDTH910#if CV_SIMD_WIDTH != 3211#error "Invalid build configuration"12#endif1314#endif // CV_CPU_OPTIMIZATION_DECLARATIONS_ONLY1516namespace opencv_test { namespace hal { namespace intrin256 {17CV_CPU_OPTIMIZATION_NAMESPACE_BEGIN1819#include "test_intrin_utils.hpp"2021CV_CPU_OPTIMIZATION_NAMESPACE_END22}}} //namespace232425