Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tetragramm
GitHub Repository: Tetragramm/opencv
Path: blob/master/modules/core/test/test_intrin256.simd.hpp
16337 views
1
// This file is part of OpenCV project.
2
// It is subject to the license terms in the LICENSE file found in the top-level directory
3
// of this distribution and at http://opencv.org/license.html.
4
#if !defined CV_CPU_OPTIMIZATION_DECLARATIONS_ONLY && \
5
!defined CV_DISABLE_OPTIMIZATION && defined CV_ENABLE_INTRINSICS // TODO? C++ fallback implementation for SIMD256
6
7
#define CV__SIMD_FORCE_WIDTH 256
8
#include "opencv2/core/hal/intrin.hpp"
9
#undef CV__SIMD_FORCE_WIDTH
10
11
#if CV_SIMD_WIDTH != 32
12
#error "Invalid build configuration"
13
#endif
14
15
#endif // CV_CPU_OPTIMIZATION_DECLARATIONS_ONLY
16
17
namespace opencv_test { namespace hal { namespace intrin256 {
18
CV_CPU_OPTIMIZATION_NAMESPACE_BEGIN
19
20
#include "test_intrin_utils.hpp"
21
22
CV_CPU_OPTIMIZATION_NAMESPACE_END
23
}}} //namespace
24
25