1 /*M///////////////////////////////////////////////////////////////////////////////////////
3 // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
5 // By downloading, copying, installing or using the software you agree to this license.
6 // If you do not agree to this license, do not download, install,
7 // copy or use the software.
11 // For Open Source Computer Vision Library
13 // Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
14 // Copyright (C) 2009, Willow Garage Inc., all rights reserved.
15 // Copyright (C) 2015, Itseez Inc., all rights reserved.
16 // Third party copyrights are property of their respective owners.
18 // Redistribution and use in source and binary forms, with or without modification,
19 // are permitted provided that the following conditions are met:
21 // * Redistribution's of source code must retain the above copyright notice,
22 // this list of conditions and the following disclaimer.
24 // * Redistribution's in binary form must reproduce the above copyright notice,
25 // this list of conditions and the following disclaimer in the documentation
26 // and/or other materials provided with the distribution.
28 // * The name of the copyright holders may not be used to endorse or promote products
29 // derived from this software without specific prior written permission.
31 // This software is provided by the copyright holders and contributors "as is" and
32 // any express or implied warranties, including, but not limited to, the implied
33 // warranties of merchantability and fitness for a particular purpose are disclaimed.
34 // In no event shall the Intel Corporation or contributors be liable for any direct,
35 // indirect, incidental, special, exemplary, or consequential damages
36 // (including, but not limited to, procurement of substitute goods or services;
37 // loss of use, data, or profits; or business interruption) however caused
38 // and on any theory of liability, whether in contract, strict liability,
39 // or tort (including negligence or otherwise) arising in any way out of
40 // the use of this software, even if advised of the possibility of such damage.
44 #include "precomp.hpp"
47 #include <opencv2/core/utils/configuration.private.hpp>
48 #include <opencv2/core/utils/trace.private.hpp>
52 static Mutex* __initialization_mutex = NULL;
53 Mutex& getInitializationMutex()
55 if (__initialization_mutex == NULL)
56 __initialization_mutex = new Mutex();
57 return *__initialization_mutex;
59 // force initialization (single-threaded environment)
60 Mutex* __initialization_mutex_initializer = &getInitializationMutex();
66 # pragma warning(disable:4447) // Disable warning 'main' signature found without threading model
70 #if defined __ANDROID__ || defined __linux__ || defined __FreeBSD__ || defined __HAIKU__
74 #if defined __ANDROID__ || defined __linux__
75 # include <linux/auxvec.h>
79 #if defined __ANDROID__ && defined HAVE_CPUFEATURES
80 # include <cpu-features.h>
84 # if defined __PPC64__ && defined __linux__
85 # include "sys/auxv.h"
89 # ifndef PPC_FEATURE2_ARCH_2_07
90 # define PPC_FEATURE2_ARCH_2_07 0x80000000
95 #if defined _WIN32 || defined WINCE
96 #ifndef _WIN32_WINNT // This is needed for the declaration of TryEnterCriticalSection in winbase.h with Visual Studio 2005 (and older?)
97 #define _WIN32_WINNT 0x0400 // http://msdn.microsoft.com/en-us/library/ms686857(VS.85).aspx
100 #if (_WIN32_WINNT >= 0x0602)
101 #include <synchapi.h>
111 #elif defined _M_IX86
112 static void __cpuid(int* cpuid_data, int)
129 static void __cpuidex(int* cpuid_data, int, int)
149 #include <wrl/client.h>
150 #ifndef __cplusplus_winrt
151 #include <windows.storage.h>
152 #pragma comment(lib, "runtimeobject.lib")
155 std::wstring GetTempPathWinRT()
157 #ifdef __cplusplus_winrt
158 return std::wstring(Windows::Storage::ApplicationData::Current->TemporaryFolder->Path->Data());
160 Microsoft::WRL::ComPtr<ABI::Windows::Storage::IApplicationDataStatics> appdataFactory;
161 Microsoft::WRL::ComPtr<ABI::Windows::Storage::IApplicationData> appdataRef;
162 Microsoft::WRL::ComPtr<ABI::Windows::Storage::IStorageFolder> storagefolderRef;
163 Microsoft::WRL::ComPtr<ABI::Windows::Storage::IStorageItem> storageitemRef;
165 HSTRING_HEADER hstrHead;
167 if (FAILED(WindowsCreateStringReference(RuntimeClass_Windows_Storage_ApplicationData,
168 (UINT32)wcslen(RuntimeClass_Windows_Storage_ApplicationData), &hstrHead, &str)))
170 if (FAILED(RoGetActivationFactory(str, IID_PPV_ARGS(appdataFactory.ReleaseAndGetAddressOf()))))
172 if (FAILED(appdataFactory->get_Current(appdataRef.ReleaseAndGetAddressOf())))
174 if (FAILED(appdataRef->get_TemporaryFolder(storagefolderRef.ReleaseAndGetAddressOf())))
176 if (FAILED(storagefolderRef.As(&storageitemRef)))
179 if (FAILED(storageitemRef->get_Path(&str)))
181 wstr = WindowsGetStringRawBuffer(str, NULL);
182 WindowsDeleteString(str);
187 std::wstring GetTempFileNameWinRT(std::wstring prefix)
192 wchar_t* mask = L"%08x_%04x_%04x_%02x%02x_%02x%02x%02x%02x%02x%02x";
193 swprintf(&guidStr[0], sizeof(guidStr)/sizeof(wchar_t), mask,
194 g.Data1, g.Data2, g.Data3, UINT(g.Data4[0]), UINT(g.Data4[1]),
195 UINT(g.Data4[2]), UINT(g.Data4[3]), UINT(g.Data4[4]),
196 UINT(g.Data4[5]), UINT(g.Data4[6]), UINT(g.Data4[7]));
198 return prefix.append(std::wstring(guidStr));
204 #include <sys/time.h>
207 #if defined __MACH__ && defined __APPLE__
208 #include <mach/mach.h>
209 #include <mach/mach_time.h>
218 #if defined __linux__ || defined __APPLE__ || defined __EMSCRIPTEN__ || defined __FreeBSD__ || defined __GLIBC__ || defined __HAIKU__
221 #include <sys/types.h>
222 #if defined __ANDROID__
223 #include <sys/sysconf.h>
228 # include <android/log.h>
234 Exception::Exception() { code = 0; line = 0; }
236 Exception::Exception(int _code, const String& _err, const String& _func, const String& _file, int _line)
237 : code(_code), err(_err), func(_func), file(_file), line(_line)
242 Exception::~Exception() throw() {}
245 \return the error description and the context as a text string.
247 const char* Exception::what() const throw() { return msg.c_str(); }
249 void Exception::formatMessage()
251 if( func.size() > 0 )
252 msg = format("OpenCV(%s) %s:%d: error: (%d) %s in function %s\n", CV_VERSION, file.c_str(), line, code, err.c_str(), func.c_str());
254 msg = format("OpenCV(%s) %s:%d: error: (%d) %s\n", CV_VERSION, file.c_str(), line, code, err.c_str());
257 static const char* g_hwFeatureNames[CV_HARDWARE_MAX_FEATURE] = { NULL };
259 static const char* getHWFeatureName(int id)
261 return (id < CV_HARDWARE_MAX_FEATURE) ? g_hwFeatureNames[id] : NULL;
263 static const char* getHWFeatureNameSafe(int id)
265 const char* name = getHWFeatureName(id);
266 return name ? name : "Unknown feature";
271 enum { MAX_FEATURE = CV_HARDWARE_MAX_FEATURE };
273 HWFeatures(bool run_initialize = false)
275 memset( have, 0, sizeof(have[0]) * MAX_FEATURE );
280 static void initializeNames()
282 for (int i = 0; i < CV_HARDWARE_MAX_FEATURE; i++)
284 g_hwFeatureNames[i] = 0;
286 g_hwFeatureNames[CPU_MMX] = "MMX";
287 g_hwFeatureNames[CPU_SSE] = "SSE";
288 g_hwFeatureNames[CPU_SSE2] = "SSE2";
289 g_hwFeatureNames[CPU_SSE3] = "SSE3";
290 g_hwFeatureNames[CPU_SSSE3] = "SSSE3";
291 g_hwFeatureNames[CPU_SSE4_1] = "SSE4.1";
292 g_hwFeatureNames[CPU_SSE4_2] = "SSE4.2";
293 g_hwFeatureNames[CPU_POPCNT] = "POPCNT";
294 g_hwFeatureNames[CPU_FP16] = "FP16";
295 g_hwFeatureNames[CPU_AVX] = "AVX";
296 g_hwFeatureNames[CPU_AVX2] = "AVX2";
297 g_hwFeatureNames[CPU_FMA3] = "FMA3";
299 g_hwFeatureNames[CPU_AVX_512F] = "AVX512F";
300 g_hwFeatureNames[CPU_AVX_512BW] = "AVX512BW";
301 g_hwFeatureNames[CPU_AVX_512CD] = "AVX512CD";
302 g_hwFeatureNames[CPU_AVX_512DQ] = "AVX512DQ";
303 g_hwFeatureNames[CPU_AVX_512ER] = "AVX512ER";
304 g_hwFeatureNames[CPU_AVX_512IFMA] = "AVX512IFMA";
305 g_hwFeatureNames[CPU_AVX_512PF] = "AVX512PF";
306 g_hwFeatureNames[CPU_AVX_512VBMI] = "AVX512VBMI";
307 g_hwFeatureNames[CPU_AVX_512VL] = "AVX512VL";
309 g_hwFeatureNames[CPU_NEON] = "NEON";
311 g_hwFeatureNames[CPU_VSX] = "VSX";
313 g_hwFeatureNames[CPU_AVX512_SKX] = "AVX512-SKX";
316 void initialize(void)
319 if (getenv("OPENCV_DUMP_CONFIG"))
321 fprintf(stderr, "\nOpenCV build configuration is:\n%s\n",
322 cv::getBuildInformation().c_str());
328 int cpuid_data[4] = { 0, 0, 0, 0 };
329 int cpuid_data_ex[4] = { 0, 0, 0, 0 };
331 #if defined _MSC_VER && (defined _M_IX86 || defined _M_X64)
332 #define OPENCV_HAVE_X86_CPUID 1
333 __cpuid(cpuid_data, 1);
334 #elif defined __GNUC__ && (defined __i386__ || defined __x86_64__)
335 #define OPENCV_HAVE_X86_CPUID 1
341 :[eax]"=a"(cpuid_data[0]),[ebx]"=b"(cpuid_data[1]),[ecx]"=c"(cpuid_data[2]),[edx]"=d"(cpuid_data[3])
352 : "=a"(cpuid_data[0]), "=c"(cpuid_data[2]), "=d"(cpuid_data[3])
359 #ifdef OPENCV_HAVE_X86_CPUID
360 int x86_family = (cpuid_data[0] >> 8) & 15;
361 if( x86_family >= 6 )
363 have[CV_CPU_MMX] = (cpuid_data[3] & (1<<23)) != 0;
364 have[CV_CPU_SSE] = (cpuid_data[3] & (1<<25)) != 0;
365 have[CV_CPU_SSE2] = (cpuid_data[3] & (1<<26)) != 0;
366 have[CV_CPU_SSE3] = (cpuid_data[2] & (1<<0)) != 0;
367 have[CV_CPU_SSSE3] = (cpuid_data[2] & (1<<9)) != 0;
368 have[CV_CPU_FMA3] = (cpuid_data[2] & (1<<12)) != 0;
369 have[CV_CPU_SSE4_1] = (cpuid_data[2] & (1<<19)) != 0;
370 have[CV_CPU_SSE4_2] = (cpuid_data[2] & (1<<20)) != 0;
371 have[CV_CPU_POPCNT] = (cpuid_data[2] & (1<<23)) != 0;
372 have[CV_CPU_AVX] = (cpuid_data[2] & (1<<28)) != 0;
373 have[CV_CPU_FP16] = (cpuid_data[2] & (1<<29)) != 0;
375 // make the second call to the cpuid command in order to get
376 // information about extended features like AVX2
377 #if defined _MSC_VER && (defined _M_IX86 || defined _M_X64)
378 #define OPENCV_HAVE_X86_CPUID_EX 1
379 __cpuidex(cpuid_data_ex, 7, 0);
380 #elif defined __GNUC__ && (defined __i386__ || defined __x86_64__)
381 #define OPENCV_HAVE_X86_CPUID_EX 1
388 :[eax]"=a"(cpuid_data_ex[0]),[ebx]"=b"(cpuid_data_ex[1]),[ecx]"=c"(cpuid_data_ex[2]),[edx]"=d"(cpuid_data_ex[3])
401 : "=r"(cpuid_data_ex[1]), "=c"(cpuid_data_ex[2])
408 #ifdef OPENCV_HAVE_X86_CPUID_EX
409 have[CV_CPU_AVX2] = (cpuid_data_ex[1] & (1<<5)) != 0;
411 have[CV_CPU_AVX_512F] = (cpuid_data_ex[1] & (1<<16)) != 0;
412 have[CV_CPU_AVX_512DQ] = (cpuid_data_ex[1] & (1<<17)) != 0;
413 have[CV_CPU_AVX_512IFMA512] = (cpuid_data_ex[1] & (1<<21)) != 0;
414 have[CV_CPU_AVX_512PF] = (cpuid_data_ex[1] & (1<<26)) != 0;
415 have[CV_CPU_AVX_512ER] = (cpuid_data_ex[1] & (1<<27)) != 0;
416 have[CV_CPU_AVX_512CD] = (cpuid_data_ex[1] & (1<<28)) != 0;
417 have[CV_CPU_AVX_512BW] = (cpuid_data_ex[1] & (1<<30)) != 0;
418 have[CV_CPU_AVX_512VL] = (cpuid_data_ex[1] & (1<<31)) != 0;
419 have[CV_CPU_AVX_512VBMI] = (cpuid_data_ex[2] & (1<<1)) != 0;
421 CV_UNUSED(cpuid_data_ex);
424 bool have_AVX_OS_support = true;
425 bool have_AVX512_OS_support = true;
426 if (!(cpuid_data[2] & (1<<27)))
427 have_AVX_OS_support = false; // OS uses XSAVE_XRSTORE and CPU support AVX
431 #ifdef _XCR_XFEATURE_ENABLED_MASK // requires immintrin.h
432 xcr0 = (int)_xgetbv(_XCR_XFEATURE_ENABLED_MASK);
433 #elif defined __GNUC__ && (defined __i386__ || defined __x86_64__)
434 __asm__ ("xgetbv" : "=a" (xcr0) : "c" (0) : "%edx" );
436 if ((xcr0 & 0x6) != 0x6)
437 have_AVX_OS_support = false; // YMM registers
438 if ((xcr0 & 0xe6) != 0xe6)
439 have_AVX512_OS_support = false; // ZMM registers
442 if (!have_AVX_OS_support)
444 have[CV_CPU_AVX] = false;
445 have[CV_CPU_FP16] = false;
446 have[CV_CPU_AVX2] = false;
447 have[CV_CPU_FMA3] = false;
449 if (!have_AVX_OS_support || !have_AVX512_OS_support)
451 have[CV_CPU_AVX_512F] = false;
452 have[CV_CPU_AVX_512BW] = false;
453 have[CV_CPU_AVX_512CD] = false;
454 have[CV_CPU_AVX_512DQ] = false;
455 have[CV_CPU_AVX_512ER] = false;
456 have[CV_CPU_AVX_512IFMA512] = false;
457 have[CV_CPU_AVX_512PF] = false;
458 have[CV_CPU_AVX_512VBMI] = false;
459 have[CV_CPU_AVX_512VL] = false;
462 if (have[CV_CPU_AVX_512F])
464 have[CV_CPU_AVX512_SKX] = have[CV_CPU_AVX_512F] & have[CV_CPU_AVX_512CD] & have[CV_CPU_AVX_512BW] & have[CV_CPU_AVX_512DQ] & have[CV_CPU_AVX_512VL];
468 CV_UNUSED(cpuid_data);
469 CV_UNUSED(cpuid_data_ex);
470 #endif // OPENCV_HAVE_X86_CPUID
472 #if defined __ANDROID__ || defined __linux__
474 have[CV_CPU_NEON] = true;
475 have[CV_CPU_FP16] = true;
476 #elif defined __arm__ && defined __ANDROID__
477 #if defined HAVE_CPUFEATURES
478 __android_log_print(ANDROID_LOG_INFO, "OpenCV", "calling android_getCpuFeatures() ...");
479 uint64_t features = android_getCpuFeatures();
480 __android_log_print(ANDROID_LOG_INFO, "OpenCV", "calling android_getCpuFeatures() ... Done (%llx)", features);
481 have[CV_CPU_NEON] = (features & ANDROID_CPU_ARM_FEATURE_NEON) != 0;
482 have[CV_CPU_FP16] = (features & ANDROID_CPU_ARM_FEATURE_VFP_FP16) != 0;
484 __android_log_print(ANDROID_LOG_INFO, "OpenCV", "cpufeatures library is not available for CPU detection");
486 __android_log_print(ANDROID_LOG_INFO, "OpenCV", "- NEON instructions is enabled via build flags");
487 have[CV_CPU_NEON] = true;
489 __android_log_print(ANDROID_LOG_INFO, "OpenCV", "- NEON instructions is NOT enabled via build flags");
492 __android_log_print(ANDROID_LOG_INFO, "OpenCV", "- FP16 instructions is enabled via build flags");
493 have[CV_CPU_FP16] = true;
495 __android_log_print(ANDROID_LOG_INFO, "OpenCV", "- FP16 instructions is NOT enabled via build flags");
498 #elif defined __arm__
499 int cpufile = open("/proc/self/auxv", O_RDONLY);
504 const size_t size_auxv_t = sizeof(auxv);
506 while ((size_t)read(cpufile, &auxv, size_auxv_t) == size_auxv_t)
508 if (auxv.a_type == AT_HWCAP)
510 have[CV_CPU_NEON] = (auxv.a_un.a_val & 4096) != 0;
511 have[CV_CPU_FP16] = (auxv.a_un.a_val & 2) != 0;
519 #elif (defined __clang__ || defined __APPLE__)
520 #if (defined __ARM_NEON__ || (defined __ARM_NEON && defined __aarch64__))
521 have[CV_CPU_NEON] = true;
523 #if (defined __ARM_FP && (((__ARM_FP & 0x2) != 0) && defined __ARM_NEON__))
524 have[CV_CPU_FP16] = true;
529 have[CV_CPU_VSX] = true;
530 #elif (defined __PPC64__ && defined __linux__)
531 uint64 hwcaps = getauxval(AT_HWCAP);
532 uint64 hwcap2 = getauxval(AT_HWCAP2);
533 have[CV_CPU_VSX] = (hwcaps & PPC_FEATURE_PPC_LE && hwcaps & PPC_FEATURE_HAS_VSX && hwcap2 & PPC_FEATURE2_ARCH_2_07);
535 have[CV_CPU_VSX] = false;
538 int baseline_features[] = { CV_CPU_BASELINE_FEATURES };
539 if (!checkFeatures(baseline_features, sizeof(baseline_features) / sizeof(baseline_features[0])))
542 "******************************************************************\n"
544 "* This OpenCV build doesn't support current CPU/HW configuration *\n"
546 "* Use OPENCV_DUMP_CONFIG=1 environment variable for details *\n"
547 "******************************************************************\n");
548 fprintf(stderr, "\nRequired baseline features:\n");
549 checkFeatures(baseline_features, sizeof(baseline_features) / sizeof(baseline_features[0]), true);
550 CV_ErrorNoReturn(cv::Error::StsAssert, "Missing support for required CPU baseline features. Check OpenCV build configuration and required CPU/HW setup.");
553 readSettings(baseline_features, sizeof(baseline_features) / sizeof(baseline_features[0]));
556 bool checkFeatures(const int* features, int count, bool dump = false)
559 for (int i = 0; i < count; i++)
561 int feature = features[i];
566 if (dump) fprintf(stderr, "%s - OK\n", getHWFeatureNameSafe(feature));
571 if (dump) fprintf(stderr, "%s - NOT AVAILABLE\n", getHWFeatureNameSafe(feature));
578 static inline bool isSymbolSeparator(char c)
580 return c == ',' || c == ';' || c == '-';
583 void readSettings(const int* baseline_features, int baseline_count)
586 const char* disabled_features =
588 getenv("OPENCV_CPU_DISABLE");
592 if (disabled_features && disabled_features[0] != 0)
594 const char* start = disabled_features;
597 while (start[0] != 0 && isSymbolSeparator(start[0]))
603 const char* end = start;
604 while (end[0] != 0 && !isSymbolSeparator(end[0]))
610 cv::String feature(start, end);
613 CV_Assert(feature.size() > 0);
616 for (int i = 0; i < CV_HARDWARE_MAX_FEATURE; i++)
618 if (!g_hwFeatureNames[i]) continue;
619 size_t len = strlen(g_hwFeatureNames[i]);
620 if (len != feature.size()) continue;
621 if (feature.compare(g_hwFeatureNames[i]) == 0)
623 bool isBaseline = false;
624 for (int k = 0; k < baseline_count; k++)
626 if (baseline_features[k] == i)
634 if (dump) fprintf(stderr, "OPENCV: Trying to disable baseline CPU feature: '%s'. This has very limited effect, because code optimizations for this feature are executed unconditionally in the most cases.\n", getHWFeatureNameSafe(i));
638 if (dump) fprintf(stderr, "OPENCV: Trying to disable unavailable CPU feature on the current platform: '%s'.\n", getHWFeatureNameSafe(i));
648 if (dump) fprintf(stderr, "OPENCV: Trying to disable unknown CPU feature: '%s'.\n", feature.c_str());
654 bool have[MAX_FEATURE+1];
657 static HWFeatures featuresEnabled(true), featuresDisabled = HWFeatures(false);
658 static HWFeatures* currentFeatures = &featuresEnabled;
660 bool checkHardwareSupport(int feature)
662 CV_DbgAssert( 0 <= feature && feature <= CV_HARDWARE_MAX_FEATURE );
663 return currentFeatures->have[feature];
666 String getHardwareFeatureName(int feature)
668 const char* name = getHWFeatureName(feature);
669 return name ? String(name) : String();
672 volatile bool useOptimizedFlag = true;
674 void setUseOptimized( bool flag )
676 useOptimizedFlag = flag;
677 currentFeatures = flag ? &featuresEnabled : &featuresDisabled;
679 ipp::setUseIPP(flag);
681 ocl::setUseOpenCL(flag);
683 #ifdef HAVE_TEGRA_OPTIMIZATION
684 ::tegra::setUseTegra(flag);
688 bool useOptimized(void)
690 return useOptimizedFlag;
693 int64 getTickCount(void)
695 #if defined _WIN32 || defined WINCE
696 LARGE_INTEGER counter;
697 QueryPerformanceCounter( &counter );
698 return (int64)counter.QuadPart;
699 #elif defined __linux || defined __linux__
701 clock_gettime(CLOCK_MONOTONIC, &tp);
702 return (int64)tp.tv_sec*1000000000 + tp.tv_nsec;
703 #elif defined __MACH__ && defined __APPLE__
704 return (int64)mach_absolute_time();
708 gettimeofday( &tv, &tz );
709 return (int64)tv.tv_sec*1000000 + tv.tv_usec;
713 double getTickFrequency(void)
715 #if defined _WIN32 || defined WINCE
717 QueryPerformanceFrequency(&freq);
718 return (double)freq.QuadPart;
719 #elif defined __linux || defined __linux__
721 #elif defined __MACH__ && defined __APPLE__
722 static double freq = 0;
725 mach_timebase_info_data_t sTimebaseInfo;
726 mach_timebase_info(&sTimebaseInfo);
727 freq = sTimebaseInfo.denom*1e9/sTimebaseInfo.numer;
735 #if defined __GNUC__ && (defined __i386__ || defined __x86_64__ || defined __ppc__)
736 #if defined(__i386__)
738 int64 getCPUTickCount(void)
741 __asm__ volatile (".byte 0x0f, 0x31" : "=A" (x));
744 #elif defined(__x86_64__)
746 int64 getCPUTickCount(void)
749 __asm__ __volatile__ ("rdtsc" : "=a"(lo), "=d"(hi));
750 return (int64)lo | ((int64)hi << 32);
753 #elif defined(__ppc__)
755 int64 getCPUTickCount(void)
758 unsigned upper, lower, tmp;
766 : "=r"(upper),"=r"(lower),"=r"(tmp)
768 return lower | ((int64)upper << 32);
773 #error "RDTSC not defined"
777 #elif defined _MSC_VER && defined _WIN32 && defined _M_IX86
779 int64 getCPUTickCount(void)
788 //int64 getCPUTickCount(void)
790 // return ippGetCpuClocks();
793 int64 getCPUTickCount(void)
795 return getTickCount();
801 const String& getBuildInformation()
803 static String build_info =
804 #include "version_string.inc"
809 String format( const char* fmt, ... )
811 AutoBuffer<char, 1024> buf;
817 int bsize = static_cast<int>(buf.size());
818 int len = cv_vsnprintf((char *)buf, bsize, fmt, va);
821 CV_Assert(len >= 0 && "Check format string for errors");
828 return String((char *)buf, len);
832 String tempfile( const char* suffix )
836 const char *temp_dir = getenv("OPENCV_TEMP_PATH");
841 RoInitialize(RO_INIT_MULTITHREADED);
842 std::wstring temp_dir = GetTempPathWinRT();
844 std::wstring temp_file = GetTempFileNameWinRT(L"ocv");
845 if (temp_file.empty())
848 temp_file = temp_dir.append(std::wstring(L"\\")).append(temp_file);
849 DeleteFileW(temp_file.c_str());
851 char aname[MAX_PATH];
852 size_t copied = wcstombs(aname, temp_file.c_str(), MAX_PATH);
853 CV_Assert((copied != MAX_PATH) && (copied != (size_t)-1));
854 fname = String(aname);
857 char temp_dir2[MAX_PATH] = { 0 };
858 char temp_file[MAX_PATH] = { 0 };
860 if (temp_dir == 0 || temp_dir[0] == 0)
862 ::GetTempPathA(sizeof(temp_dir2), temp_dir2);
863 temp_dir = temp_dir2;
865 if(0 == ::GetTempFileNameA(temp_dir, "ocv", 0, temp_file))
868 DeleteFileA(temp_file);
874 //char defaultTemplate[] = "/mnt/sdcard/__opencv_temp.XXXXXX";
875 char defaultTemplate[] = "/data/local/tmp/__opencv_temp.XXXXXX";
877 char defaultTemplate[] = "/tmp/__opencv_temp.XXXXXX";
880 if (temp_dir == 0 || temp_dir[0] == 0)
881 fname = defaultTemplate;
885 char ech = fname[fname.size() - 1];
886 if(ech != '/' && ech != '\\')
888 fname = fname + "__opencv_temp.XXXXXX";
891 const int fd = mkstemp((char*)fname.c_str());
892 if (fd == -1) return String();
895 remove(fname.c_str());
900 if (suffix[0] != '.')
901 return fname + "." + suffix;
903 return fname + suffix;
908 static ErrorCallback customErrorCallback = 0;
909 static void* customErrorCallbackData = 0;
910 static bool breakOnError = false;
912 bool setBreakOnError(bool value)
914 bool prevVal = breakOnError;
915 breakOnError = value;
919 int cv_snprintf(char* buf, int len, const char* fmt, ...)
923 int res = cv_vsnprintf(buf, len, fmt, va);
928 int cv_vsnprintf(char* buf, int len, const char* fmt, va_list args)
931 if (len <= 0) return len == 0 ? 1024 : -1;
932 int res = _vsnprintf_s(buf, len, _TRUNCATE, fmt, args);
933 // ensure null terminating on VS
934 if (res >= 0 && res < len)
941 buf[len - 1] = 0; // truncate happened
942 return res >= len ? res : (len * 2);
945 return vsnprintf(buf, len, fmt, args);
949 void error( const Exception& exc )
951 if (customErrorCallback != 0)
952 customErrorCallback(exc.code, exc.func.c_str(), exc.err.c_str(),
953 exc.file.c_str(), exc.line, customErrorCallbackData);
956 const char* errorStr = cvErrorStr(exc.code);
959 cv_snprintf(buf, sizeof(buf),
960 "OpenCV(%s) Error: %s (%s) in %s, file %s, line %d",
962 errorStr, exc.err.c_str(), exc.func.size() > 0 ?
963 exc.func.c_str() : "unknown function", exc.file.c_str(), exc.line);
964 fprintf( stderr, "%s\n", buf );
967 __android_log_print(ANDROID_LOG_ERROR, "cv::error()", "%s", buf);
973 static volatile int* p = 0;
980 void error(int _code, const String& _err, const char* _func, const char* _file, int _line)
982 error(cv::Exception(_code, _err, _func, _file, _line));
987 redirectError( ErrorCallback errCallback, void* userdata, void** prevUserdata)
990 *prevUserdata = customErrorCallbackData;
992 ErrorCallback prevCallback = customErrorCallback;
994 customErrorCallback = errCallback;
995 customErrorCallbackData = userdata;
1002 CV_IMPL int cvCheckHardwareSupport(int feature)
1004 CV_DbgAssert( 0 <= feature && feature <= CV_HARDWARE_MAX_FEATURE );
1005 return cv::currentFeatures->have[feature];
1008 CV_IMPL int cvUseOptimized( int flag )
1010 int prevMode = cv::useOptimizedFlag;
1011 cv::setUseOptimized( flag != 0 );
1015 CV_IMPL int64 cvGetTickCount(void)
1017 return cv::getTickCount();
1020 CV_IMPL double cvGetTickFrequency(void)
1022 return cv::getTickFrequency()*1e-6;
1025 CV_IMPL CvErrorCallback
1026 cvRedirectError( CvErrorCallback errCallback, void* userdata, void** prevUserdata)
1028 return cv::redirectError(errCallback, userdata, prevUserdata);
1031 CV_IMPL int cvNulDevReport( int, const char*, const char*,
1032 const char*, int, void* )
1037 CV_IMPL int cvStdErrReport( int, const char*, const char*,
1038 const char*, int, void* )
1043 CV_IMPL int cvGuiBoxReport( int, const char*, const char*,
1044 const char*, int, void* )
1049 CV_IMPL int cvGetErrInfo( const char**, const char**, const char**, int* )
1055 CV_IMPL const char* cvErrorStr( int status )
1057 static char buf[256];
1061 case CV_StsOk : return "No Error";
1062 case CV_StsBackTrace : return "Backtrace";
1063 case CV_StsError : return "Unspecified error";
1064 case CV_StsInternal : return "Internal error";
1065 case CV_StsNoMem : return "Insufficient memory";
1066 case CV_StsBadArg : return "Bad argument";
1067 case CV_StsNoConv : return "Iterations do not converge";
1068 case CV_StsAutoTrace : return "Autotrace call";
1069 case CV_StsBadSize : return "Incorrect size of input array";
1070 case CV_StsNullPtr : return "Null pointer";
1071 case CV_StsDivByZero : return "Division by zero occurred";
1072 case CV_BadStep : return "Image step is wrong";
1073 case CV_StsInplaceNotSupported : return "Inplace operation is not supported";
1074 case CV_StsObjectNotFound : return "Requested object was not found";
1075 case CV_BadDepth : return "Input image depth is not supported by function";
1076 case CV_StsUnmatchedFormats : return "Formats of input arguments do not match";
1077 case CV_StsUnmatchedSizes : return "Sizes of input arguments do not match";
1078 case CV_StsOutOfRange : return "One of arguments\' values is out of range";
1079 case CV_StsUnsupportedFormat : return "Unsupported format or combination of formats";
1080 case CV_BadCOI : return "Input COI is not supported";
1081 case CV_BadNumChannels : return "Bad number of channels";
1082 case CV_StsBadFlag : return "Bad flag (parameter or structure field)";
1083 case CV_StsBadPoint : return "Bad parameter of type CvPoint";
1084 case CV_StsBadMask : return "Bad type of mask argument";
1085 case CV_StsParseError : return "Parsing error";
1086 case CV_StsNotImplemented : return "The function/feature is not implemented";
1087 case CV_StsBadMemBlock : return "Memory block has been corrupted";
1088 case CV_StsAssert : return "Assertion failed";
1089 case CV_GpuNotSupported : return "No CUDA support";
1090 case CV_GpuApiCallError : return "Gpu API call";
1091 case CV_OpenGlNotSupported : return "No OpenGL support";
1092 case CV_OpenGlApiCallError : return "OpenGL API call";
1095 sprintf(buf, "Unknown %s code %d", status >= 0 ? "status":"error", status);
1099 CV_IMPL int cvGetErrMode(void)
1104 CV_IMPL int cvSetErrMode(int)
1109 CV_IMPL int cvGetErrStatus(void)
1114 CV_IMPL void cvSetErrStatus(int)
1119 CV_IMPL void cvError( int code, const char* func_name,
1120 const char* err_msg,
1121 const char* file_name, int line )
1123 cv::error(cv::Exception(code, err_msg, func_name, file_name, line));
1126 /* function, which converts int to int */
1128 cvErrorFromIppStatus( int status )
1132 case CV_BADSIZE_ERR: return CV_StsBadSize;
1133 case CV_BADMEMBLOCK_ERR: return CV_StsBadMemBlock;
1134 case CV_NULLPTR_ERR: return CV_StsNullPtr;
1135 case CV_DIV_BY_ZERO_ERR: return CV_StsDivByZero;
1136 case CV_BADSTEP_ERR: return CV_BadStep;
1137 case CV_OUTOFMEM_ERR: return CV_StsNoMem;
1138 case CV_BADARG_ERR: return CV_StsBadArg;
1139 case CV_NOTDEFINED_ERR: return CV_StsError;
1140 case CV_INPLACE_NOT_SUPPORTED_ERR: return CV_StsInplaceNotSupported;
1141 case CV_NOTFOUND_ERR: return CV_StsObjectNotFound;
1142 case CV_BADCONVERGENCE_ERR: return CV_StsNoConv;
1143 case CV_BADDEPTH_ERR: return CV_BadDepth;
1144 case CV_UNMATCHED_FORMATS_ERR: return CV_StsUnmatchedFormats;
1145 case CV_UNSUPPORTED_COI_ERR: return CV_BadCOI;
1146 case CV_UNSUPPORTED_CHANNELS_ERR: return CV_BadNumChannels;
1147 case CV_BADFLAG_ERR: return CV_StsBadFlag;
1148 case CV_BADRANGE_ERR: return CV_StsBadArg;
1149 case CV_BADCOEF_ERR: return CV_StsBadArg;
1150 case CV_BADFACTOR_ERR: return CV_StsBadArg;
1151 case CV_BADPOINT_ERR: return CV_StsBadPoint;
1159 bool __termination = false;
1165 #if defined _WIN32 || defined WINCE
1171 #if (_WIN32_WINNT >= 0x0600)
1172 ::InitializeCriticalSectionEx(&cs, 1000, 0);
1174 ::InitializeCriticalSection(&cs);
1178 ~Impl() { DeleteCriticalSection(&cs); }
1180 void lock() { EnterCriticalSection(&cs); }
1181 bool trylock() { return TryEnterCriticalSection(&cs) != 0; }
1182 void unlock() { LeaveCriticalSection(&cs); }
1184 CRITICAL_SECTION cs;
1194 pthread_mutexattr_t attr;
1195 pthread_mutexattr_init(&attr);
1196 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
1197 pthread_mutex_init(&mt, &attr);
1198 pthread_mutexattr_destroy(&attr);
1202 ~Impl() { pthread_mutex_destroy(&mt); }
1204 void lock() { pthread_mutex_lock(&mt); }
1205 bool trylock() { return pthread_mutex_trylock(&mt) == 0; }
1206 void unlock() { pthread_mutex_unlock(&mt); }
1216 impl = new Mutex::Impl;
1221 if( CV_XADD(&impl->refcount, -1) == 1 )
1226 Mutex::Mutex(const Mutex& m)
1229 CV_XADD(&impl->refcount, 1);
1232 Mutex& Mutex::operator = (const Mutex& m)
1236 CV_XADD(&m.impl->refcount, 1);
1237 if( CV_XADD(&impl->refcount, -1) == 1 )
1244 void Mutex::lock() { impl->lock(); }
1245 void Mutex::unlock() { impl->unlock(); }
1246 bool Mutex::trylock() { return impl->trylock(); }
1249 //////////////////////////////// thread-local storage ////////////////////////////////
1253 #pragma warning(disable:4505) // unreferenced local function has been removed
1255 #ifndef TLS_OUT_OF_INDEXES
1256 #define TLS_OUT_OF_INDEXES ((DWORD)0xFFFFFFFF)
1260 // TLS platform abstraction layer
1261 class TlsAbstraction
1266 void* GetData() const;
1267 void SetData(void *pData);
1275 pthread_key_t tlsKey;
1281 static __declspec( thread ) void* tlsData = NULL; // using C++11 thread attribute for local thread data
1282 TlsAbstraction::TlsAbstraction() {}
1283 TlsAbstraction::~TlsAbstraction() {}
1284 void* TlsAbstraction::GetData() const
1288 void TlsAbstraction::SetData(void *pData)
1293 TlsAbstraction::TlsAbstraction()
1295 tlsKey = TlsAlloc();
1296 CV_Assert(tlsKey != TLS_OUT_OF_INDEXES);
1298 TlsAbstraction::~TlsAbstraction()
1302 void* TlsAbstraction::GetData() const
1304 return TlsGetValue(tlsKey);
1306 void TlsAbstraction::SetData(void *pData)
1308 CV_Assert(TlsSetValue(tlsKey, pData) == TRUE);
1312 TlsAbstraction::TlsAbstraction()
1314 CV_Assert(pthread_key_create(&tlsKey, NULL) == 0);
1316 TlsAbstraction::~TlsAbstraction()
1318 CV_Assert(pthread_key_delete(tlsKey) == 0);
1320 void* TlsAbstraction::GetData() const
1322 return pthread_getspecific(tlsKey);
1324 void TlsAbstraction::SetData(void *pData)
1326 CV_Assert(pthread_setspecific(tlsKey, pData) == 0);
1330 // Per-thread data structure
1339 std::vector<void*> slots; // Data array for a thread
1340 size_t idx; // Thread index in TLS storage. This is not OS thread ID!
1343 // Main TLS storage class
1350 tlsSlots.reserve(32);
1351 threads.reserve(32);
1355 for(size_t i = 0; i < threads.size(); i++)
1359 /* Current architecture doesn't allow proper global objects release, so this check can cause crashes
1361 // Check if all slots were properly cleared
1362 for(size_t j = 0; j < threads[i]->slots.size(); j++)
1364 CV_Assert(threads[i]->slots[j] == 0);
1373 void releaseThread()
1375 AutoLock guard(mtxGlobalAccess);
1376 ThreadData *pTD = (ThreadData*)tls.GetData();
1377 for(size_t i = 0; i < threads.size(); i++)
1379 if(pTD == threads[i])
1389 // Reserve TLS storage index
1390 size_t reserveSlot()
1392 AutoLock guard(mtxGlobalAccess);
1393 CV_Assert(tlsSlotsSize == tlsSlots.size());
1395 // Find unused slots
1396 for(size_t slot = 0; slot < tlsSlotsSize; slot++)
1406 tlsSlots.push_back(1); tlsSlotsSize++;
1407 return tlsSlotsSize - 1;
1410 // Release TLS storage index and pass associated data to caller
1411 void releaseSlot(size_t slotIdx, std::vector<void*> &dataVec, bool keepSlot = false)
1413 AutoLock guard(mtxGlobalAccess);
1414 CV_Assert(tlsSlotsSize == tlsSlots.size());
1415 CV_Assert(tlsSlotsSize > slotIdx);
1417 for(size_t i = 0; i < threads.size(); i++)
1421 std::vector<void*>& thread_slots = threads[i]->slots;
1422 if (thread_slots.size() > slotIdx && thread_slots[slotIdx])
1424 dataVec.push_back(thread_slots[slotIdx]);
1425 thread_slots[slotIdx] = NULL;
1431 tlsSlots[slotIdx] = 0;
1434 // Get data by TLS storage index
1435 void* getData(size_t slotIdx) const
1437 #ifndef CV_THREAD_SANITIZER
1438 CV_Assert(tlsSlotsSize > slotIdx);
1441 ThreadData* threadData = (ThreadData*)tls.GetData();
1442 if(threadData && threadData->slots.size() > slotIdx)
1443 return threadData->slots[slotIdx];
1448 // Gather data from threads by TLS storage index
1449 void gather(size_t slotIdx, std::vector<void*> &dataVec)
1451 AutoLock guard(mtxGlobalAccess);
1452 CV_Assert(tlsSlotsSize == tlsSlots.size());
1453 CV_Assert(tlsSlotsSize > slotIdx);
1455 for(size_t i = 0; i < threads.size(); i++)
1459 std::vector<void*>& thread_slots = threads[i]->slots;
1460 if (thread_slots.size() > slotIdx && thread_slots[slotIdx])
1461 dataVec.push_back(thread_slots[slotIdx]);
1466 // Set data to storage index
1467 void setData(size_t slotIdx, void* pData)
1469 #ifndef CV_THREAD_SANITIZER
1470 CV_Assert(tlsSlotsSize > slotIdx);
1473 ThreadData* threadData = (ThreadData*)tls.GetData();
1476 threadData = new ThreadData;
1477 tls.SetData((void*)threadData);
1479 AutoLock guard(mtxGlobalAccess);
1480 threadData->idx = threads.size();
1481 threads.push_back(threadData);
1485 if(slotIdx >= threadData->slots.size())
1487 AutoLock guard(mtxGlobalAccess); // keep synchronization with gather() calls
1488 threadData->slots.resize(slotIdx + 1, NULL);
1490 threadData->slots[slotIdx] = pData;
1494 TlsAbstraction tls; // TLS abstraction layer instance
1496 Mutex mtxGlobalAccess; // Shared objects operation guard
1497 size_t tlsSlotsSize; // equal to tlsSlots.size() in synchronized sections
1498 // without synchronization this counter doesn't desrease - it is used for slotIdx sanity checks
1499 std::vector<int> tlsSlots; // TLS keys state
1500 std::vector<ThreadData*> threads; // Array for all allocated data. Thread data pointers are placed here to allow data cleanup
1503 // Create global TLS storage object
1504 static TlsStorage &getTlsStorage()
1506 CV_SINGLETON_LAZY_INIT_REF(TlsStorage, new TlsStorage())
1509 TLSDataContainer::TLSDataContainer()
1511 key_ = (int)getTlsStorage().reserveSlot(); // Reserve key from TLS storage
1514 TLSDataContainer::~TLSDataContainer()
1516 CV_Assert(key_ == -1); // Key must be released in child object
1519 void TLSDataContainer::gatherData(std::vector<void*> &data) const
1521 getTlsStorage().gather(key_, data);
1524 void TLSDataContainer::release()
1526 std::vector<void*> data;
1528 getTlsStorage().releaseSlot(key_, data); // Release key and get stored data for proper destruction
1530 for(size_t i = 0; i < data.size(); i++) // Delete all associated data
1531 deleteDataInstance(data[i]);
1534 void TLSDataContainer::cleanup()
1536 std::vector<void*> data;
1538 getTlsStorage().releaseSlot(key_, data, true); // Extract stored data with removal from TLS tables
1539 for(size_t i = 0; i < data.size(); i++) // Delete all associated data
1540 deleteDataInstance(data[i]);
1543 void* TLSDataContainer::getData() const
1545 CV_Assert(key_ != -1 && "Can't fetch data from terminated TLS container.");
1546 void* pData = getTlsStorage().getData(key_); // Check if data was already allocated
1549 // Create new data instance and save it to TLS storage
1550 pData = createDataInstance();
1551 getTlsStorage().setData(key_, pData);
1556 TLSData<CoreTLSData>& getCoreTlsData()
1558 CV_SINGLETON_LAZY_INIT_REF(TLSData<CoreTLSData>, new TLSData<CoreTLSData>())
1561 #if defined CVAPI_EXPORTS && defined _WIN32 && !defined WINCE
1563 #pragma warning(disable:4447) // Disable warning 'main' signature found without threading model
1567 BOOL WINAPI DllMain(HINSTANCE, DWORD fdwReason, LPVOID lpReserved);
1570 BOOL WINAPI DllMain(HINSTANCE, DWORD fdwReason, LPVOID lpReserved)
1572 if (fdwReason == DLL_THREAD_DETACH || fdwReason == DLL_PROCESS_DETACH)
1574 if (lpReserved != NULL) // called after ExitProcess() call
1576 cv::__termination = true;
1580 // Not allowed to free resources if lpReserved is non-null
1581 // http://msdn.microsoft.com/en-us/library/windows/desktop/ms682583.aspx
1582 cv::getTlsStorage().releaseThread();
1591 static int g_threadNum = 0;
1596 id(CV_XADD(&g_threadNum, 1))
1598 #ifdef OPENCV_WITH_ITT
1599 __itt_thread_set_name(cv::format("OpenCVThread-%03d", id).c_str());
1604 static TLSData<ThreadID>& getThreadIDTLS()
1606 CV_SINGLETON_LAZY_INIT_REF(TLSData<ThreadID>, new TLSData<ThreadID>());
1610 int utils::getThreadID() { return getThreadIDTLS().get()->id; }
1612 bool utils::getConfigurationParameterBool(const char* name, bool defaultValue)
1615 const char* envValue = NULL;
1617 const char* envValue = getenv(name);
1619 if (envValue == NULL)
1621 return defaultValue;
1623 cv::String value = envValue;
1624 if (value == "1" || value == "True" || value == "true" || value == "TRUE")
1628 if (value == "0" || value == "False" || value == "false" || value == "FALSE")
1632 CV_ErrorNoReturn(cv::Error::StsBadArg, cv::format("Invalid value for %s parameter: %s", name, value.c_str()));
1636 size_t utils::getConfigurationParameterSizeT(const char* name, size_t defaultValue)
1639 const char* envValue = NULL;
1641 const char* envValue = getenv(name);
1643 if (envValue == NULL)
1645 return defaultValue;
1647 cv::String value = envValue;
1649 for (; pos < value.size(); pos++)
1651 if (!isdigit(value[pos]))
1654 cv::String valueStr = value.substr(0, pos);
1655 cv::String suffixStr = value.substr(pos, value.length() - pos);
1656 int v = atoi(valueStr.c_str());
1657 if (suffixStr.length() == 0)
1659 else if (suffixStr == "MB" || suffixStr == "Mb" || suffixStr == "mb")
1660 return v * 1024 * 1024;
1661 else if (suffixStr == "KB" || suffixStr == "Kb" || suffixStr == "kb")
1663 CV_ErrorNoReturn(cv::Error::StsBadArg, cv::format("Invalid value for %s parameter: %s", name, value.c_str()));
1666 cv::String utils::getConfigurationParameterString(const char* name, const char* defaultValue)
1669 const char* envValue = NULL;
1671 const char* envValue = getenv(name);
1673 if (envValue == NULL)
1675 return defaultValue;
1677 cv::String value = envValue;
1682 #ifdef CV_COLLECT_IMPL_DATA
1683 ImplCollector& getImplData()
1685 CV_SINGLETON_LAZY_INIT_REF(ImplCollector, new ImplCollector())
1688 void setImpl(int flags)
1690 cv::AutoLock lock(getImplData().mutex);
1692 getImplData().implFlags = flags;
1693 getImplData().implCode.clear();
1694 getImplData().implFun.clear();
1697 void addImpl(int flag, const char* func)
1699 cv::AutoLock lock(getImplData().mutex);
1701 getImplData().implFlags |= flag;
1702 if(func) // use lazy collection if name was not specified
1704 size_t index = getImplData().implCode.size();
1705 if(!index || (getImplData().implCode[index-1] != flag || getImplData().implFun[index-1].compare(func))) // avoid duplicates
1707 getImplData().implCode.push_back(flag);
1708 getImplData().implFun.push_back(func);
1713 int getImpl(std::vector<int> &impl, std::vector<String> &funName)
1715 cv::AutoLock lock(getImplData().mutex);
1717 impl = getImplData().implCode;
1718 funName = getImplData().implFun;
1719 return getImplData().implFlags; // return actual flags for lazy collection
1722 bool useCollection()
1724 return getImplData().useCollection;
1727 void setUseCollection(bool flag)
1729 cv::AutoLock lock(getImplData().mutex);
1731 getImplData().useCollection = flag;
1737 bool useInstrumentation()
1739 #ifdef ENABLE_INSTRUMENTATION
1740 return getInstrumentStruct().useInstr;
1746 void setUseInstrumentation(bool flag)
1748 #ifdef ENABLE_INSTRUMENTATION
1749 getInstrumentStruct().useInstr = flag;
1755 InstrNode* getTrace()
1757 #ifdef ENABLE_INSTRUMENTATION
1758 return &getInstrumentStruct().rootNode;
1766 #ifdef ENABLE_INSTRUMENTATION
1767 getInstrumentStruct().rootNode.removeChilds();
1768 getInstrumentTLSStruct().pCurrentNode = &getInstrumentStruct().rootNode;
1772 void setFlags(FLAGS modeFlags)
1774 #ifdef ENABLE_INSTRUMENTATION
1775 getInstrumentStruct().flags = modeFlags;
1777 CV_UNUSED(modeFlags);
1782 #ifdef ENABLE_INSTRUMENTATION
1783 return (FLAGS)getInstrumentStruct().flags;
1789 NodeData::NodeData(const char* funName, const char* fileName, int lineNum, void* retAddress, bool alwaysExpand, cv::instr::TYPE instrType, cv::instr::IMPL implType)
1791 m_funName = funName;
1792 m_instrType = instrType;
1793 m_implType = implType;
1794 m_fileName = fileName;
1795 m_lineNum = lineNum;
1796 m_retAddress = retAddress;
1797 m_alwaysExpand = alwaysExpand;
1805 NodeData::NodeData(NodeData &ref)
1809 NodeData& NodeData::operator=(const NodeData &right)
1811 this->m_funName = right.m_funName;
1812 this->m_instrType = right.m_instrType;
1813 this->m_implType = right.m_implType;
1814 this->m_fileName = right.m_fileName;
1815 this->m_lineNum = right.m_lineNum;
1816 this->m_retAddress = right.m_retAddress;
1817 this->m_alwaysExpand = right.m_alwaysExpand;
1819 this->m_threads = right.m_threads;
1820 this->m_counter = right.m_counter;
1821 this->m_ticksTotal = right.m_ticksTotal;
1823 this->m_funError = right.m_funError;
1827 NodeData::~NodeData()
1830 bool operator==(const NodeData& left, const NodeData& right)
1832 if(left.m_lineNum == right.m_lineNum && left.m_funName == right.m_funName && left.m_fileName == right.m_fileName)
1834 if(left.m_retAddress == right.m_retAddress || !(cv::instr::getFlags()&cv::instr::FLAGS_EXPAND_SAME_NAMES || left.m_alwaysExpand))
1840 #ifdef ENABLE_INSTRUMENTATION
1841 InstrStruct& getInstrumentStruct()
1843 static InstrStruct instr;
1847 InstrTLSStruct& getInstrumentTLSStruct()
1849 return *getInstrumentStruct().tlsStruct.get();
1852 InstrNode* getCurrentNode()
1854 return getInstrumentTLSStruct().pCurrentNode;
1857 IntrumentationRegion::IntrumentationRegion(const char* funName, const char* fileName, int lineNum, void *retAddress, bool alwaysExpand, TYPE instrType, IMPL implType)
1862 InstrStruct *pStruct = &getInstrumentStruct();
1863 if(pStruct->useInstr)
1865 InstrTLSStruct *pTLS = &getInstrumentTLSStruct();
1867 // Disable in case of failure
1868 if(!pTLS->pCurrentNode)
1874 int depth = pTLS->pCurrentNode->getDepth();
1875 if(pStruct->maxDepth && pStruct->maxDepth <= depth)
1881 NodeData payload(funName, fileName, lineNum, retAddress, alwaysExpand, instrType, implType);
1882 Node<NodeData>* pChild = NULL;
1884 if(pStruct->flags&FLAGS_MAPPING)
1887 cv::AutoLock guard(pStruct->mutexCreate); // Guard from concurrent child creation
1888 pChild = pTLS->pCurrentNode->findChild(payload);
1891 pChild = new Node<NodeData>(payload);
1892 pTLS->pCurrentNode->addChild(pChild);
1897 pChild = pTLS->pCurrentNode->findChild(payload);
1904 pTLS->pCurrentNode = pChild;
1906 m_regionTicks = getTickCount();
1910 IntrumentationRegion::~IntrumentationRegion()
1912 InstrStruct *pStruct = &getInstrumentStruct();
1913 if(pStruct->useInstr)
1917 InstrTLSStruct *pTLS = &getInstrumentTLSStruct();
1919 if (pTLS->pCurrentNode->m_payload.m_implType == cv::instr::IMPL_OPENCL &&
1920 (pTLS->pCurrentNode->m_payload.m_instrType == cv::instr::TYPE_FUN ||
1921 pTLS->pCurrentNode->m_payload.m_instrType == cv::instr::TYPE_WRAPPER))
1923 cv::ocl::finish(); // TODO Support "async" OpenCL instrumentation
1926 uint64 ticks = (getTickCount() - m_regionTicks);
1928 cv::AutoLock guard(pStruct->mutexCount); // Concurrent ticks accumulation
1929 pTLS->pCurrentNode->m_payload.m_counter++;
1930 pTLS->pCurrentNode->m_payload.m_ticksTotal += ticks;
1931 pTLS->pCurrentNode->m_payload.m_tls.get()->m_ticksTotal += ticks;
1934 pTLS->pCurrentNode = pTLS->pCurrentNode->m_pParent;
1945 struct IPPInitSingleton
1961 ippStatus = ippGetCpuFeatures(&cpuFeatures, NULL);
1964 std::cerr << "ERROR: IPP cannot detect CPU features, IPP was disabled " << std::endl;
1968 ippFeatures = cpuFeatures;
1970 const char* pIppEnv = getenv("OPENCV_IPP");
1971 cv::String env = pIppEnv;
1974 #if IPP_VERSION_X100 >= 201703
1975 const Ipp64u minorFeatures = ippCPUID_MOVBE|ippCPUID_AES|ippCPUID_CLMUL|ippCPUID_ABR|ippCPUID_RDRAND|ippCPUID_F16C|
1976 ippCPUID_ADCOX|ippCPUID_RDSEED|ippCPUID_PREFETCHW|ippCPUID_SHA|ippCPUID_MPX|ippCPUID_AVX512CD|ippCPUID_AVX512ER|
1977 ippCPUID_AVX512PF|ippCPUID_AVX512BW|ippCPUID_AVX512DQ|ippCPUID_AVX512VL|ippCPUID_AVX512VBMI;
1978 #elif IPP_VERSION_X100 >= 201700
1979 const Ipp64u minorFeatures = ippCPUID_MOVBE|ippCPUID_AES|ippCPUID_CLMUL|ippCPUID_ABR|ippCPUID_RDRAND|ippCPUID_F16C|
1980 ippCPUID_ADCOX|ippCPUID_RDSEED|ippCPUID_PREFETCHW|ippCPUID_SHA|ippCPUID_AVX512CD|ippCPUID_AVX512ER|
1981 ippCPUID_AVX512PF|ippCPUID_AVX512BW|ippCPUID_AVX512DQ|ippCPUID_AVX512VL|ippCPUID_AVX512VBMI;
1983 const Ipp64u minorFeatures = 0;
1986 env = env.toLowerCase();
1987 if(env.substr(0, 2) == "ne")
1990 env = env.substr(3, env.size());
1993 if(env == "disabled")
1995 std::cerr << "WARNING: IPP was disabled by OPENCV_IPP environment variable" << std::endl;
1998 else if(env == "sse42")
1999 ippFeatures = minorFeatures|ippCPUID_SSE2|ippCPUID_SSE3|ippCPUID_SSSE3|ippCPUID_SSE41|ippCPUID_SSE42;
2000 else if(env == "avx2")
2001 ippFeatures = minorFeatures|ippCPUID_SSE2|ippCPUID_SSE3|ippCPUID_SSSE3|ippCPUID_SSE41|ippCPUID_SSE42|ippCPUID_AVX|ippCPUID_AVX2;
2002 #if IPP_VERSION_X100 >= 201700
2003 #if defined (_M_AMD64) || defined (__x86_64__)
2004 else if(env == "avx512")
2005 ippFeatures = minorFeatures|ippCPUID_SSE2|ippCPUID_SSE3|ippCPUID_SSSE3|ippCPUID_SSE41|ippCPUID_SSE42|ippCPUID_AVX|ippCPUID_AVX2|ippCPUID_AVX512F;
2009 std::cerr << "ERROR: Improper value of OPENCV_IPP: " << env.c_str() << ". Correct values are: disabled, sse42, avx2, avx512 (Intel64 only)" << std::endl;
2011 // Trim unsupported features
2012 ippFeatures &= cpuFeatures;
2015 // Disable AVX1 since we don't track regressions for it. SSE42 will be used instead
2016 if(cpuFeatures&ippCPUID_AVX && !(cpuFeatures&ippCPUID_AVX2))
2017 ippFeatures &= ~((Ipp64u)ippCPUID_AVX);
2019 // IPP integrations in OpenCV support only SSE4.2, AVX2 and AVX-512 optimizations.
2021 #if IPP_VERSION_X100 >= 201700
2022 cpuFeatures&ippCPUID_AVX512F ||
2024 cpuFeatures&ippCPUID_AVX2 ||
2025 cpuFeatures&ippCPUID_SSE42
2032 if(ippFeatures == cpuFeatures)
2035 IPP_INITIALIZER(ippFeatures)
2036 ippFeatures = ippGetEnabledCpuFeatures();
2038 // Detect top level optimizations to make comparison easier for optimizations dependent conditions
2039 #if IPP_VERSION_X100 >= 201700
2040 if(ippFeatures&ippCPUID_AVX512F)
2042 if((ippFeatures&ippCPUID_AVX512_SKX) == ippCPUID_AVX512_SKX)
2043 ippTopFeatures = ippCPUID_AVX512_SKX;
2044 else if((ippFeatures&ippCPUID_AVX512_KNL) == ippCPUID_AVX512_KNL)
2045 ippTopFeatures = ippCPUID_AVX512_KNL;
2047 ippTopFeatures = ippCPUID_AVX512F; // Unknown AVX512 configuration
2051 if(ippFeatures&ippCPUID_AVX2)
2052 ippTopFeatures = ippCPUID_AVX2;
2053 else if(ippFeatures&ippCPUID_SSE42)
2054 ippTopFeatures = ippCPUID_SSE42;
2056 pIppLibInfo = ippiGetLibVersion();
2063 int ippStatus; // 0 - all is ok, -1 - IPP functions failed
2064 const char *funcname;
2065 const char *filename;
2069 Ipp64u ippTopFeatures;
2070 const IppLibraryVersion *pIppLibInfo;
2073 static IPPInitSingleton& getIPPSingleton()
2075 CV_SINGLETON_LAZY_INIT_REF(IPPInitSingleton, new IPPInitSingleton())
2079 #if OPENCV_ABI_COMPATIBILITY > 300
2080 unsigned long long getIppFeatures()
2082 int getIppFeatures()
2086 #if OPENCV_ABI_COMPATIBILITY > 300
2087 return getIPPSingleton().ippFeatures;
2089 return (int)getIPPSingleton().ippFeatures;
2096 unsigned long long getIppTopFeatures();
2098 unsigned long long getIppTopFeatures()
2101 return getIPPSingleton().ippTopFeatures;
2107 void setIppStatus(int status, const char * const _funcname, const char * const _filename, int _line)
2110 getIPPSingleton().ippStatus = status;
2111 getIPPSingleton().funcname = _funcname;
2112 getIPPSingleton().filename = _filename;
2113 getIPPSingleton().linen = _line;
2115 CV_UNUSED(status); CV_UNUSED(_funcname); CV_UNUSED(_filename); CV_UNUSED(_line);
2122 return getIPPSingleton().ippStatus;
2128 String getIppErrorLocation()
2131 return format("%s:%d %s", getIPPSingleton().filename ? getIPPSingleton().filename : "", getIPPSingleton().linen, getIPPSingleton().funcname ? getIPPSingleton().funcname : "");
2137 String getIppVersion()
2140 const IppLibraryVersion *pInfo = getIPPSingleton().pIppLibInfo;
2142 return format("%s %s %s", pInfo->Name, pInfo->Version, pInfo->BuildDate);
2144 return String("error");
2146 return String("disabled");
2153 CoreTLSData* data = getCoreTlsData().get();
2154 if(data->useIPP < 0)
2156 data->useIPP = getIPPSingleton().useIPP;
2158 return (data->useIPP > 0);
2164 void setUseIPP(bool flag)
2166 CoreTLSData* data = getCoreTlsData().get();
2168 data->useIPP = (getIPPSingleton().useIPP)?flag:false;
2171 data->useIPP = false;
2178 CoreTLSData* data = getCoreTlsData().get();
2179 if(data->useIPP_NE < 0)
2181 data->useIPP_NE = getIPPSingleton().useIPP_NE;
2183 return (data->useIPP_NE > 0);
2189 void setUseIPP_NE(bool flag)
2191 CoreTLSData* data = getCoreTlsData().get();
2193 data->useIPP_NE = (getIPPSingleton().useIPP_NE)?flag:false;
2196 data->useIPP_NE = false;
2204 #ifdef HAVE_TEGRA_OPTIMIZATION
2210 cv::CoreTLSData* data = cv::getCoreTlsData().get();
2212 if (data->useTegra < 0)
2214 const char* pTegraEnv = getenv("OPENCV_TEGRA");
2215 if (pTegraEnv && (cv::String(pTegraEnv) == "disabled"))
2216 data->useTegra = false;
2218 data->useTegra = true;
2221 return (data->useTegra > 0);
2224 void setUseTegra(bool flag)
2226 cv::CoreTLSData* data = cv::getCoreTlsData().get();
2227 data->useTegra = flag;
2230 } // namespace tegra