Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tetragramm
GitHub Repository: Tetragramm/opencv
Path: blob/master/modules/core/test/test_intrin128.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
#ifndef CV_CPU_OPTIMIZATION_DECLARATIONS_ONLY
5
6
#define CV__SIMD_FORCE_WIDTH 128
7
#include "opencv2/core/hal/intrin.hpp"
8
#undef CV__SIMD_FORCE_WIDTH
9
10
#if CV_SIMD_WIDTH != 16
11
#error "Invalid build configuration"
12
#endif
13
14
#endif // CV_CPU_OPTIMIZATION_DECLARATIONS_ONLY
15
16
namespace opencv_test { namespace hal { namespace intrin128 {
17
CV_CPU_OPTIMIZATION_NAMESPACE_BEGIN
18
19
#include "test_intrin_utils.hpp"
20
21
CV_CPU_OPTIMIZATION_NAMESPACE_END
22
}}} //namespace
23
24