mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 11:40:44 +08:00
e07a488012
core(test): extending tests with SIMD C++ emulation code (intrin_cpp.hpp) * core(test): test SIMD CPP emulation code (intrin_cpp.hpp) * core(simd): eliminate build warnings from intrin_cpp.hpp
152 lines
5.4 KiB
C++
152 lines
5.4 KiB
C++
// This file is part of OpenCV project.
|
|
// It is subject to the license terms in the LICENSE file found in the top-level directory
|
|
// of this distribution and at http://opencv.org/license.html.
|
|
#include "test_precomp.hpp"
|
|
|
|
#include "test_intrin128.simd.hpp"
|
|
|
|
// see "test_intrin_emulator.cpp"
|
|
// see "opencv2/core/private/cv_cpu_include_simd_declarations.hpp"
|
|
#define CV_CPU_OPTIMIZATION_DECLARATIONS_ONLY
|
|
#undef CV_CPU_OPTIMIZATION_NAMESPACE_BEGIN
|
|
#undef CV_CPU_OPTIMIZATION_NAMESPACE_END
|
|
#define CV_CPU_OPTIMIZATION_NAMESPACE_BEGIN namespace opt_EMULATOR_CPP {
|
|
#define CV_CPU_OPTIMIZATION_NAMESPACE_END }
|
|
#include "test_intrin128.simd.hpp"
|
|
#undef CV_CPU_OPTIMIZATION_NAMESPACE_BEGIN
|
|
#undef CV_CPU_OPTIMIZATION_NAMESPACE_END
|
|
#undef CV_CPU_OPTIMIZATION_DECLARATIONS_ONLY
|
|
|
|
#include "test_intrin128.simd_declarations.hpp"
|
|
|
|
#undef CV_CPU_DISPATCH_MODES_ALL
|
|
#include "opencv2/core/cv_cpu_dispatch.h"
|
|
#include "test_intrin256.simd.hpp"
|
|
#include "test_intrin256.simd_declarations.hpp"
|
|
|
|
#undef CV_CPU_DISPATCH_MODES_ALL
|
|
#include "opencv2/core/cv_cpu_dispatch.h"
|
|
#include "test_intrin512.simd.hpp"
|
|
#include "test_intrin512.simd_declarations.hpp"
|
|
|
|
#ifdef _MSC_VER
|
|
# pragma warning(disable:4702) // unreachable code
|
|
#endif
|
|
|
|
namespace opencv_test { namespace hal {
|
|
|
|
#define CV_CPU_CALL_CPP_EMULATOR_(fn, args) return (opt_EMULATOR_CPP::fn args)
|
|
|
|
#define CV_CPU_CALL_BASELINE_(fn, args) CV_CPU_CALL_BASELINE(fn, args)
|
|
|
|
#define DISPATCH_SIMD128(fn, cpu_opt) do { \
|
|
CV_CPU_CALL_ ## cpu_opt ## _(fn, ()); \
|
|
throw SkipTestException("SIMD128 (" #cpu_opt ") is not available or disabled"); \
|
|
} while(0)
|
|
|
|
#define DISPATCH_SIMD256(fn, cpu_opt) do { \
|
|
CV_CPU_CALL_ ## cpu_opt ## _(fn, ()); \
|
|
throw SkipTestException("SIMD256 (" #cpu_opt ") is not available or disabled"); \
|
|
} while(0)
|
|
|
|
#define DISPATCH_SIMD512(fn, cpu_opt) do { \
|
|
CV_CPU_CALL_ ## cpu_opt ## _(fn, ()); \
|
|
throw SkipTestException("SIMD512 (" #cpu_opt ") is not available or disabled"); \
|
|
} while(0)
|
|
|
|
#define DEFINE_SIMD_TESTS(simd_size, cpu_opt) \
|
|
TEST(hal_intrin ## simd_size, uint8x16_ ## cpu_opt) { DISPATCH_SIMD ## simd_size(test_hal_intrin_uint8, cpu_opt); } \
|
|
TEST(hal_intrin ## simd_size, int8x16_ ## cpu_opt) { DISPATCH_SIMD ## simd_size(test_hal_intrin_int8, cpu_opt); } \
|
|
TEST(hal_intrin ## simd_size, uint16x8_ ## cpu_opt) { DISPATCH_SIMD ## simd_size(test_hal_intrin_uint16, cpu_opt); } \
|
|
TEST(hal_intrin ## simd_size, int16x8_ ## cpu_opt) { DISPATCH_SIMD ## simd_size(test_hal_intrin_int16, cpu_opt); } \
|
|
TEST(hal_intrin ## simd_size, int32x4_ ## cpu_opt) { DISPATCH_SIMD ## simd_size(test_hal_intrin_int32, cpu_opt); } \
|
|
TEST(hal_intrin ## simd_size, uint32x4_ ## cpu_opt) { DISPATCH_SIMD ## simd_size(test_hal_intrin_uint32, cpu_opt); } \
|
|
TEST(hal_intrin ## simd_size, uint64x2_ ## cpu_opt) { DISPATCH_SIMD ## simd_size(test_hal_intrin_uint64, cpu_opt); } \
|
|
TEST(hal_intrin ## simd_size, int64x2_ ## cpu_opt) { DISPATCH_SIMD ## simd_size(test_hal_intrin_int64, cpu_opt); } \
|
|
TEST(hal_intrin ## simd_size, float32x4_ ## cpu_opt) { DISPATCH_SIMD ## simd_size(test_hal_intrin_float32, cpu_opt); } \
|
|
TEST(hal_intrin ## simd_size, float64x2_ ## cpu_opt) { DISPATCH_SIMD ## simd_size(test_hal_intrin_float64, cpu_opt); } \
|
|
|
|
namespace intrin128 {
|
|
|
|
DEFINE_SIMD_TESTS(128, CPP_EMULATOR)
|
|
|
|
DEFINE_SIMD_TESTS(128, BASELINE)
|
|
|
|
#if defined CV_CPU_DISPATCH_COMPILE_SSE2 || defined CV_CPU_BASELINE_COMPILE_SSE2
|
|
DEFINE_SIMD_TESTS(128, SSE2)
|
|
#endif
|
|
#if defined CV_CPU_DISPATCH_COMPILE_SSE3 || defined CV_CPU_BASELINE_COMPILE_SSE3
|
|
DEFINE_SIMD_TESTS(128, SSE3)
|
|
#endif
|
|
#if defined CV_CPU_DISPATCH_COMPILE_SSSE3 || defined CV_CPU_BASELINE_COMPILE_SSSE3
|
|
DEFINE_SIMD_TESTS(128, SSSE3)
|
|
#endif
|
|
#if defined CV_CPU_DISPATCH_COMPILE_SSE4_1 || defined CV_CPU_BASELINE_COMPILE_SSE4_1
|
|
DEFINE_SIMD_TESTS(128, SSE4_1)
|
|
#endif
|
|
#if defined CV_CPU_DISPATCH_COMPILE_SSE4_2 || defined CV_CPU_BASELINE_COMPILE_SSE4_2
|
|
DEFINE_SIMD_TESTS(128, SSE4_2)
|
|
#endif
|
|
#if defined CV_CPU_DISPATCH_COMPILE_AVX || defined CV_CPU_BASELINE_COMPILE_AVX
|
|
DEFINE_SIMD_TESTS(128, AVX)
|
|
#endif
|
|
#if defined CV_CPU_DISPATCH_COMPILE_AVX2 || defined CV_CPU_BASELINE_COMPILE_AVX2
|
|
DEFINE_SIMD_TESTS(128, AVX2)
|
|
#endif
|
|
#if defined CV_CPU_DISPATCH_COMPILE_AVX512_SKX || defined CV_CPU_BASELINE_COMPILE_AVX512_SKX
|
|
DEFINE_SIMD_TESTS(128, AVX512_SKX)
|
|
#endif
|
|
|
|
TEST(hal_intrin128, float16x8_FP16)
|
|
{
|
|
CV_CPU_CALL_FP16_(test_hal_intrin_float16, ());
|
|
throw SkipTestException("Unsupported hardware: FP16 is not available");
|
|
}
|
|
|
|
} // namespace intrin128
|
|
|
|
|
|
namespace intrin256 {
|
|
|
|
|
|
// Not available due missing C++ backend for SIMD256
|
|
//DEFINE_SIMD_TESTS(256, BASELINE)
|
|
|
|
//#if defined CV_CPU_DISPATCH_COMPILE_AVX
|
|
//DEFINE_SIMD_TESTS(256, AVX)
|
|
//#endif
|
|
|
|
#if defined CV_CPU_DISPATCH_COMPILE_AVX2 || defined CV_CPU_BASELINE_COMPILE_AVX2
|
|
DEFINE_SIMD_TESTS(256, AVX2)
|
|
#endif
|
|
|
|
#if defined CV_CPU_DISPATCH_COMPILE_AVX512_SKX || defined CV_CPU_BASELINE_COMPILE_AVX512_SKX
|
|
DEFINE_SIMD_TESTS(256, AVX512_SKX)
|
|
#endif
|
|
|
|
TEST(hal_intrin256, float16x16_FP16)
|
|
{
|
|
//CV_CPU_CALL_FP16_(test_hal_intrin_float16, ());
|
|
CV_CPU_CALL_AVX2_(test_hal_intrin_float16, ());
|
|
throw SkipTestException("Unsupported hardware: FP16 is not available");
|
|
}
|
|
|
|
|
|
} // namespace intrin256
|
|
|
|
namespace intrin512 {
|
|
|
|
#if defined CV_CPU_DISPATCH_COMPILE_AVX512_SKX || defined CV_CPU_BASELINE_COMPILE_AVX512_SKX
|
|
DEFINE_SIMD_TESTS(512, AVX512_SKX)
|
|
#endif
|
|
|
|
TEST(hal_intrin512, float16x32_FP16)
|
|
{
|
|
CV_CPU_CALL_AVX512_SKX_(test_hal_intrin_float16, ());
|
|
throw SkipTestException("Unsupported hardware: FP16 is not available");
|
|
}
|
|
|
|
|
|
} // namespace intrin512
|
|
|
|
}} // namespace
|