react-native-vision-camera-spoof-detector 1.0.22 → 1.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (206) hide show
  1. package/README.md +442 -442
  2. package/android/.gradle/9.2.0/checksums/checksums.lock +0 -0
  3. package/android/.gradle/9.2.0/fileHashes/fileHashes.bin +0 -0
  4. package/android/.gradle/9.2.0/fileHashes/fileHashes.lock +0 -0
  5. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  6. package/android/.gradle/buildOutputCleanup/cache.properties +2 -2
  7. package/android/build/reports/problems/problems-report.html +659 -0
  8. package/android/build.gradle +12 -4
  9. package/android/src/main/cpp/CMakeLists.txt +101 -94
  10. package/android/src/main/cpp/libyuv/.clang-format +6 -6
  11. package/android/src/main/cpp/libyuv/.gn +40 -40
  12. package/android/src/main/cpp/libyuv/.vpython3 +410 -410
  13. package/android/src/main/cpp/libyuv/AUTHORS +7 -7
  14. package/android/src/main/cpp/libyuv/Android.bp +202 -202
  15. package/android/src/main/cpp/libyuv/Android.mk +106 -106
  16. package/android/src/main/cpp/libyuv/BUILD.gn +490 -490
  17. package/android/src/main/cpp/libyuv/CM_linux_packages.cmake +70 -70
  18. package/android/src/main/cpp/libyuv/CMakeLists.txt +259 -252
  19. package/android/src/main/cpp/libyuv/DEPS +935 -935
  20. package/android/src/main/cpp/libyuv/DIR_METADATA +3 -3
  21. package/android/src/main/cpp/libyuv/LICENSE +29 -29
  22. package/android/src/main/cpp/libyuv/OWNERS +11 -11
  23. package/android/src/main/cpp/libyuv/PATENTS +23 -23
  24. package/android/src/main/cpp/libyuv/PRESUBMIT.py +65 -65
  25. package/android/src/main/cpp/libyuv/README.chromium +11 -11
  26. package/android/src/main/cpp/libyuv/README.md +19 -19
  27. package/android/src/main/cpp/libyuv/build_overrides/build.gni +60 -60
  28. package/android/src/main/cpp/libyuv/build_overrides/gtest.gni +19 -19
  29. package/android/src/main/cpp/libyuv/build_overrides/partition_alloc.gni +17 -17
  30. package/android/src/main/cpp/libyuv/codereview.settings +5 -5
  31. package/android/src/main/cpp/libyuv/docs/deprecated_builds.md +409 -409
  32. package/android/src/main/cpp/libyuv/docs/environment_variables.md +64 -64
  33. package/android/src/main/cpp/libyuv/docs/feature_detection.md +108 -108
  34. package/android/src/main/cpp/libyuv/docs/filtering.md +196 -196
  35. package/android/src/main/cpp/libyuv/docs/formats.md +208 -208
  36. package/android/src/main/cpp/libyuv/docs/getting_started.md +296 -296
  37. package/android/src/main/cpp/libyuv/docs/rotation.md +107 -107
  38. package/android/src/main/cpp/libyuv/download_vs_toolchain.py +29 -29
  39. package/android/src/main/cpp/libyuv/include/libyuv/basic_types.h +68 -68
  40. package/android/src/main/cpp/libyuv/include/libyuv/compare.h +111 -111
  41. package/android/src/main/cpp/libyuv/include/libyuv/compare_row.h +112 -112
  42. package/android/src/main/cpp/libyuv/include/libyuv/convert.h +1117 -1117
  43. package/android/src/main/cpp/libyuv/include/libyuv/convert_argb.h +2335 -2335
  44. package/android/src/main/cpp/libyuv/include/libyuv/convert_from.h +203 -203
  45. package/android/src/main/cpp/libyuv/include/libyuv/convert_from_argb.h +394 -394
  46. package/android/src/main/cpp/libyuv/include/libyuv/cpu_id.h +147 -147
  47. package/android/src/main/cpp/libyuv/include/libyuv/cpu_support.h +99 -99
  48. package/android/src/main/cpp/libyuv/include/libyuv/loongson_intrinsics.h +1949 -1949
  49. package/android/src/main/cpp/libyuv/include/libyuv/mjpeg_decoder.h +195 -195
  50. package/android/src/main/cpp/libyuv/include/libyuv/planar_functions.h +1131 -1131
  51. package/android/src/main/cpp/libyuv/include/libyuv/rotate.h +296 -296
  52. package/android/src/main/cpp/libyuv/include/libyuv/rotate_argb.h +37 -37
  53. package/android/src/main/cpp/libyuv/include/libyuv/rotate_row.h +265 -265
  54. package/android/src/main/cpp/libyuv/include/libyuv/row.h +6738 -6738
  55. package/android/src/main/cpp/libyuv/include/libyuv/row_sve.h +2154 -2154
  56. package/android/src/main/cpp/libyuv/include/libyuv/scale.h +336 -336
  57. package/android/src/main/cpp/libyuv/include/libyuv/scale_argb.h +76 -76
  58. package/android/src/main/cpp/libyuv/include/libyuv/scale_rgb.h +42 -42
  59. package/android/src/main/cpp/libyuv/include/libyuv/scale_row.h +1726 -1726
  60. package/android/src/main/cpp/libyuv/include/libyuv/scale_uv.h +51 -51
  61. package/android/src/main/cpp/libyuv/include/libyuv/version.h +16 -16
  62. package/android/src/main/cpp/libyuv/include/libyuv/video_common.h +222 -222
  63. package/android/src/main/cpp/libyuv/include/libyuv.h +33 -33
  64. package/android/src/main/cpp/libyuv/infra/config/OWNERS +3 -3
  65. package/android/src/main/cpp/libyuv/infra/config/PRESUBMIT.py +17 -17
  66. package/android/src/main/cpp/libyuv/infra/config/README.md +2 -2
  67. package/android/src/main/cpp/libyuv/infra/config/codereview.settings +6 -6
  68. package/android/src/main/cpp/libyuv/infra/config/commit-queue.cfg +144 -144
  69. package/android/src/main/cpp/libyuv/infra/config/cr-buildbucket.cfg +1185 -1185
  70. package/android/src/main/cpp/libyuv/infra/config/luci-logdog.cfg +9 -9
  71. package/android/src/main/cpp/libyuv/infra/config/luci-milo.cfg +246 -246
  72. package/android/src/main/cpp/libyuv/infra/config/luci-scheduler.cfg +385 -385
  73. package/android/src/main/cpp/libyuv/infra/config/main.star +402 -402
  74. package/android/src/main/cpp/libyuv/infra/config/project.cfg +16 -16
  75. package/android/src/main/cpp/libyuv/infra/config/realms.cfg +111 -111
  76. package/android/src/main/cpp/libyuv/libyuv.gni +34 -34
  77. package/android/src/main/cpp/libyuv/libyuv.gyp +149 -149
  78. package/android/src/main/cpp/libyuv/libyuv.gypi +87 -87
  79. package/android/src/main/cpp/libyuv/linux.mk +96 -96
  80. package/android/src/main/cpp/libyuv/public.mk +13 -13
  81. package/android/src/main/cpp/libyuv/pylintrc +49 -49
  82. package/android/src/main/cpp/libyuv/riscv_script/prepare_toolchain_qemu.sh +74 -74
  83. package/android/src/main/cpp/libyuv/riscv_script/riscv-clang.cmake +56 -56
  84. package/android/src/main/cpp/libyuv/riscv_script/run_qemu.sh +15 -15
  85. package/android/src/main/cpp/libyuv/source/compare.cc +435 -435
  86. package/android/src/main/cpp/libyuv/source/compare_common.cc +74 -74
  87. package/android/src/main/cpp/libyuv/source/compare_gcc.cc +362 -362
  88. package/android/src/main/cpp/libyuv/source/compare_neon.cc +96 -96
  89. package/android/src/main/cpp/libyuv/source/compare_neon64.cc +223 -223
  90. package/android/src/main/cpp/libyuv/source/compare_win.cc +241 -241
  91. package/android/src/main/cpp/libyuv/source/convert.cc +4746 -4746
  92. package/android/src/main/cpp/libyuv/source/convert_argb.cc +9179 -9179
  93. package/android/src/main/cpp/libyuv/source/convert_from.cc +866 -866
  94. package/android/src/main/cpp/libyuv/source/convert_from_argb.cc +3671 -3671
  95. package/android/src/main/cpp/libyuv/source/convert_jpeg.cc +602 -602
  96. package/android/src/main/cpp/libyuv/source/convert_to_argb.cc +391 -391
  97. package/android/src/main/cpp/libyuv/source/convert_to_i420.cc +288 -288
  98. package/android/src/main/cpp/libyuv/source/cpu_id.cc +496 -496
  99. package/android/src/main/cpp/libyuv/source/mjpeg_decoder.cc +580 -580
  100. package/android/src/main/cpp/libyuv/source/mjpeg_validate.cc +71 -71
  101. package/android/src/main/cpp/libyuv/source/planar_functions.cc +5663 -5663
  102. package/android/src/main/cpp/libyuv/source/rotate.cc +1241 -1241
  103. package/android/src/main/cpp/libyuv/source/rotate_any.cc +76 -76
  104. package/android/src/main/cpp/libyuv/source/rotate_argb.cc +259 -259
  105. package/android/src/main/cpp/libyuv/source/rotate_common.cc +208 -208
  106. package/android/src/main/cpp/libyuv/source/rotate_gcc.cc +505 -505
  107. package/android/src/main/cpp/libyuv/source/rotate_lsx.cc +233 -233
  108. package/android/src/main/cpp/libyuv/source/rotate_neon.cc +219 -219
  109. package/android/src/main/cpp/libyuv/source/rotate_neon64.cc +273 -273
  110. package/android/src/main/cpp/libyuv/source/rotate_sme.cc +174 -174
  111. package/android/src/main/cpp/libyuv/source/rotate_win.cc +253 -253
  112. package/android/src/main/cpp/libyuv/source/row_any.cc +2519 -2519
  113. package/android/src/main/cpp/libyuv/source/row_common.cc +4461 -4461
  114. package/android/src/main/cpp/libyuv/source/row_gcc.cc +9570 -9570
  115. package/android/src/main/cpp/libyuv/source/row_lasx.cc +2343 -2343
  116. package/android/src/main/cpp/libyuv/source/row_lsx.cc +3030 -3030
  117. package/android/src/main/cpp/libyuv/source/row_neon.cc +4026 -4026
  118. package/android/src/main/cpp/libyuv/source/row_neon64.cc +5617 -5617
  119. package/android/src/main/cpp/libyuv/source/row_rvv.cc +2599 -2599
  120. package/android/src/main/cpp/libyuv/source/row_sme.cc +1183 -1183
  121. package/android/src/main/cpp/libyuv/source/row_sve.cc +1088 -1088
  122. package/android/src/main/cpp/libyuv/source/row_win.cc +6453 -6453
  123. package/android/src/main/cpp/libyuv/source/scale.cc +2710 -2710
  124. package/android/src/main/cpp/libyuv/source/scale_any.cc +991 -991
  125. package/android/src/main/cpp/libyuv/source/scale_argb.cc +1158 -1158
  126. package/android/src/main/cpp/libyuv/source/scale_common.cc +1977 -1977
  127. package/android/src/main/cpp/libyuv/source/scale_gcc.cc +2947 -2947
  128. package/android/src/main/cpp/libyuv/source/scale_lsx.cc +739 -739
  129. package/android/src/main/cpp/libyuv/source/scale_neon.cc +1449 -1449
  130. package/android/src/main/cpp/libyuv/source/scale_neon64.cc +1552 -1552
  131. package/android/src/main/cpp/libyuv/source/scale_rgb.cc +82 -82
  132. package/android/src/main/cpp/libyuv/source/scale_rvv.cc +1971 -1971
  133. package/android/src/main/cpp/libyuv/source/scale_sme.cc +555 -555
  134. package/android/src/main/cpp/libyuv/source/scale_uv.cc +1159 -1159
  135. package/android/src/main/cpp/libyuv/source/scale_win.cc +1392 -1392
  136. package/android/src/main/cpp/libyuv/source/test.sh +35 -35
  137. package/android/src/main/cpp/libyuv/source/video_common.cc +62 -62
  138. package/android/src/main/cpp/libyuv/tools_libyuv/OWNERS +4 -4
  139. package/android/src/main/cpp/libyuv/tools_libyuv/autoroller/roll_deps.py +931 -931
  140. package/android/src/main/cpp/libyuv/tools_libyuv/autoroller/unittests/roll_deps_test.py +164 -164
  141. package/android/src/main/cpp/libyuv/tools_libyuv/autoroller/unittests/testdata/DEPS +21 -21
  142. package/android/src/main/cpp/libyuv/tools_libyuv/autoroller/unittests/testdata/DEPS.chromium.new +13 -13
  143. package/android/src/main/cpp/libyuv/tools_libyuv/autoroller/unittests/testdata/DEPS.chromium.old +13 -13
  144. package/android/src/main/cpp/libyuv/tools_libyuv/get_landmines.py +38 -38
  145. package/android/src/main/cpp/libyuv/tools_libyuv/msan/OWNERS +3 -3
  146. package/android/src/main/cpp/libyuv/tools_libyuv/msan/blacklist.txt +9 -9
  147. package/android/src/main/cpp/libyuv/tools_libyuv/ubsan/OWNERS +3 -3
  148. package/android/src/main/cpp/libyuv/tools_libyuv/ubsan/blacklist.txt +15 -15
  149. package/android/src/main/cpp/libyuv/tools_libyuv/ubsan/vptr_blacklist.txt +25 -25
  150. package/android/src/main/cpp/libyuv/unit_test/basictypes_test.cc +43 -43
  151. package/android/src/main/cpp/libyuv/unit_test/color_test.cc +848 -848
  152. package/android/src/main/cpp/libyuv/unit_test/compare_test.cc +739 -739
  153. package/android/src/main/cpp/libyuv/unit_test/convert_argb_test.cc +2867 -2867
  154. package/android/src/main/cpp/libyuv/unit_test/convert_test.cc +2133 -2133
  155. package/android/src/main/cpp/libyuv/unit_test/cpu_test.cc +427 -427
  156. package/android/src/main/cpp/libyuv/unit_test/cpu_thread_test.cc +63 -63
  157. package/android/src/main/cpp/libyuv/unit_test/math_test.cc +160 -160
  158. package/android/src/main/cpp/libyuv/unit_test/planar_test.cc +4731 -4731
  159. package/android/src/main/cpp/libyuv/unit_test/rotate_argb_test.cc +334 -334
  160. package/android/src/main/cpp/libyuv/unit_test/rotate_test.cc +962 -962
  161. package/android/src/main/cpp/libyuv/unit_test/scale_argb_test.cc +590 -590
  162. package/android/src/main/cpp/libyuv/unit_test/scale_plane_test.cc +465 -465
  163. package/android/src/main/cpp/libyuv/unit_test/scale_rgb_test.cc +280 -280
  164. package/android/src/main/cpp/libyuv/unit_test/scale_test.cc +1135 -1135
  165. package/android/src/main/cpp/libyuv/unit_test/scale_uv_test.cc +249 -249
  166. package/android/src/main/cpp/libyuv/unit_test/testdata/arm_v7.txt +12 -12
  167. package/android/src/main/cpp/libyuv/unit_test/testdata/mips.txt +7 -7
  168. package/android/src/main/cpp/libyuv/unit_test/testdata/mips_loongson2k.txt +5 -5
  169. package/android/src/main/cpp/libyuv/unit_test/testdata/mips_loongson3.txt +10 -10
  170. package/android/src/main/cpp/libyuv/unit_test/testdata/mips_loongson_mmi.txt +7 -7
  171. package/android/src/main/cpp/libyuv/unit_test/testdata/riscv64.txt +3 -3
  172. package/android/src/main/cpp/libyuv/unit_test/testdata/riscv64_rvv.txt +3 -3
  173. package/android/src/main/cpp/libyuv/unit_test/testdata/riscv64_rvv_zvfh.txt +3 -3
  174. package/android/src/main/cpp/libyuv/unit_test/testdata/tegra3.txt +23 -23
  175. package/android/src/main/cpp/libyuv/unit_test/unit_test.cc +581 -581
  176. package/android/src/main/cpp/libyuv/unit_test/unit_test.h +232 -232
  177. package/android/src/main/cpp/libyuv/unit_test/video_common_test.cc +112 -112
  178. package/android/src/main/cpp/libyuv/util/Makefile +9 -9
  179. package/android/src/main/cpp/libyuv/util/color.cc +120 -120
  180. package/android/src/main/cpp/libyuv/util/compare.cc +67 -67
  181. package/android/src/main/cpp/libyuv/util/cpuid.c +211 -211
  182. package/android/src/main/cpp/libyuv/util/i444tonv12_eg.cc +27 -27
  183. package/android/src/main/cpp/libyuv/util/psnr.cc +291 -291
  184. package/android/src/main/cpp/libyuv/util/psnr.h +47 -47
  185. package/android/src/main/cpp/libyuv/util/psnr_main.cc +620 -620
  186. package/android/src/main/cpp/libyuv/util/ssim.cc +364 -364
  187. package/android/src/main/cpp/libyuv/util/ssim.h +38 -38
  188. package/android/src/main/cpp/libyuv/util/yuvconstants.c +114 -114
  189. package/android/src/main/cpp/libyuv/util/yuvconvert.cc +367 -367
  190. package/android/src/main/cpp/libyuv/winarm.mk +47 -47
  191. package/index.js +17 -1
  192. package/ios/FaceAntiSpoofFrameProcessor.swift +283 -0
  193. package/ios/FaceAntiSpoofJSI.h +12 -0
  194. package/ios/FaceAntiSpoofJSI.mm +92 -0
  195. package/ios/FaceAntiSpoofManager.swift +63 -0
  196. package/ios/FaceAntiSpoofModule.m +191 -0
  197. package/ios/FaceAntiSpoofPluginRegister.m +42 -0
  198. package/ios/models/FaceAntiSpoofing.tflite +0 -0
  199. package/ios/models/model_spec.json +16 -0
  200. package/package.json +87 -86
  201. package/.gitignore +0 -27
  202. package/android/.gradle/8.9/checksums/checksums.lock +0 -0
  203. package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
  204. package/android/.gradle/8.9/gc.properties +0 -0
  205. /package/android/.gradle/{8.9 → 9.2.0}/fileChanges/last-build.bin +0 -0
  206. /package/android/.gradle/{8.9/dependencies-accessors → 9.2.0}/gc.properties +0 -0
@@ -1,427 +1,427 @@
1
- /*
2
- * Copyright 2012 The LibYuv Project Authors. All rights reserved.
3
- *
4
- * Use of this source code is governed by a BSD-style license
5
- * that can be found in the LICENSE file in the root of the source
6
- * tree. An additional intellectual property rights grant can be found
7
- * in the file PATENTS. All contributing project authors may
8
- * be found in the AUTHORS file in the root of the source tree.
9
- */
10
-
11
- #include <stdio.h>
12
- #include <stdlib.h>
13
- #include <string.h>
14
-
15
- #ifdef __linux__
16
- #include <ctype.h>
17
- #include <sys/utsname.h>
18
- #endif
19
-
20
- #include "../unit_test/unit_test.h"
21
- #include "libyuv/basic_types.h"
22
- #include "libyuv/cpu_id.h"
23
- #include "libyuv/version.h"
24
-
25
- namespace libyuv {
26
-
27
- #if defined(__i386__) || defined(__x86_64__) || defined(_M_IX86) || \
28
- defined(_M_X64)
29
- TEST_F(LibYUVBaseTest, TestCpuId) {
30
- int has_x86 = TestCpuFlag(kCpuHasX86);
31
- if (has_x86) {
32
- int cpu_info[4];
33
- // Vendor ID:
34
- // AuthenticAMD AMD processor
35
- // CentaurHauls Centaur processor
36
- // CyrixInstead Cyrix processor
37
- // GenuineIntel Intel processor
38
- // GenuineTMx86 Transmeta processor
39
- // Geode by NSC National Semiconductor processor
40
- // NexGenDriven NexGen processor
41
- // RiseRiseRise Rise Technology processor
42
- // SiS SiS SiS SiS processor
43
- // UMC UMC UMC UMC processor
44
- CpuId(0, 0, cpu_info);
45
- cpu_info[0] = cpu_info[1]; // Reorder output
46
- cpu_info[1] = cpu_info[3];
47
- cpu_info[3] = 0;
48
- printf("Cpu Vendor: %s 0x%x 0x%x 0x%x\n",
49
- reinterpret_cast<char*>(&cpu_info[0]), cpu_info[0], cpu_info[1],
50
- cpu_info[2]);
51
- EXPECT_EQ(12u, strlen(reinterpret_cast<char*>(&cpu_info[0])));
52
-
53
- // CPU Family and Model
54
- // 3:0 - Stepping
55
- // 7:4 - Model
56
- // 11:8 - Family
57
- // 13:12 - Processor Type
58
- // 19:16 - Extended Model
59
- // 27:20 - Extended Family
60
- CpuId(1, 0, cpu_info);
61
- int family = ((cpu_info[0] >> 8) & 0x0f) | ((cpu_info[0] >> 16) & 0xff0);
62
- int model = ((cpu_info[0] >> 4) & 0x0f) | ((cpu_info[0] >> 12) & 0xf0);
63
- printf("Cpu Family %d (0x%x), Model %d (0x%x)\n", family, family, model,
64
- model);
65
- }
66
- }
67
- #endif
68
-
69
- #ifdef __linux__
70
- static void KernelVersion(int* version) {
71
- struct utsname buffer;
72
- int i = 0;
73
-
74
- version[0] = version[1] = 0;
75
- if (uname(&buffer) == 0) {
76
- char* v = buffer.release;
77
- for (i = 0; *v && i < 2; ++v) {
78
- if (isdigit(*v)) {
79
- version[i++] = (int)strtol(v, &v, 10);
80
- }
81
- }
82
- }
83
- }
84
- #endif
85
-
86
- TEST_F(LibYUVBaseTest, TestCpuHas) {
87
- #if defined(__linux__)
88
- {
89
- int kernelversion[2];
90
- KernelVersion(kernelversion);
91
- printf("Kernel Version %d.%d\n", kernelversion[0], kernelversion[1]);
92
- }
93
- #endif // defined(__linux__)
94
-
95
- #if defined(__arm__) || defined(__aarch64__)
96
- int has_arm = TestCpuFlag(kCpuHasARM);
97
- if (has_arm) {
98
- int has_neon = TestCpuFlag(kCpuHasNEON);
99
- int has_neon_dotprod = TestCpuFlag(kCpuHasNeonDotProd);
100
- int has_neon_i8mm = TestCpuFlag(kCpuHasNeonI8MM);
101
- int has_sve = TestCpuFlag(kCpuHasSVE);
102
- int has_sve2 = TestCpuFlag(kCpuHasSVE2);
103
- int has_sve_f32mm = TestCpuFlag(kCpuHasSVEF32MM);
104
- int has_sme = TestCpuFlag(kCpuHasSME);
105
- int has_sme2 = TestCpuFlag(kCpuHasSME2);
106
- printf("Has Arm 0x%x\n", has_arm);
107
- printf("Has Neon 0x%x\n", has_neon);
108
- printf("Has Neon DotProd 0x%x\n", has_neon_dotprod);
109
- printf("Has Neon I8MM 0x%x\n", has_neon_i8mm);
110
- printf("Has SVE 0x%x\n", has_sve);
111
- printf("Has SVE2 0x%x\n", has_sve2);
112
- printf("Has SVE F32MM 0x%x\n", has_sve_f32mm);
113
- printf("Has SME 0x%x\n", has_sme);
114
- printf("Has SME2 0x%x\n", has_sme2);
115
-
116
- #if defined(__aarch64__)
117
- // Read and print the SVE and SME vector lengths.
118
- if (has_sve) {
119
- int sve_vl;
120
- asm(".inst 0x04bf5020 \n" // rdvl x0, #1
121
- "mov %w[sve_vl], w0 \n"
122
- : [sve_vl] "=r"(sve_vl) // %[sve_vl]
123
- :
124
- : "x0");
125
- printf("SVE vector length: %d bytes\n", sve_vl);
126
- }
127
- if (has_sme) {
128
- int sme_vl;
129
- asm(".inst 0x04bf5820 \n" // rdsvl x0, #1
130
- "mov %w[sme_vl], w0 \n"
131
- : [sme_vl] "=r"(sme_vl) // %[sme_vl]
132
- :
133
- : "x0");
134
- printf("SME vector length: %d bytes\n", sme_vl);
135
- }
136
- #endif // defined(__aarch64__)
137
- }
138
- #endif // if defined(__arm__) || defined(__aarch64__)
139
-
140
- #if defined(__riscv)
141
- int has_riscv = TestCpuFlag(kCpuHasRISCV);
142
- if (has_riscv) {
143
- int has_rvv = TestCpuFlag(kCpuHasRVV);
144
- printf("Has RISCV 0x%x\n", has_riscv);
145
- printf("Has RVV 0x%x\n", has_rvv);
146
-
147
- // Read and print the RVV vector length.
148
- if (has_rvv) {
149
- register uint32_t vlenb __asm__("t0");
150
- __asm__(".word 0xC22022F3" /* CSRR t0, vlenb */ : "=r"(vlenb));
151
- printf("RVV vector length: %d bytes\n", vlenb);
152
- }
153
- }
154
- #endif // defined(__riscv)
155
-
156
- #if defined(__loongarch__)
157
- int has_loongarch = TestCpuFlag(kCpuHasLOONGARCH);
158
- if (has_loongarch) {
159
- int has_lsx = TestCpuFlag(kCpuHasLSX);
160
- int has_lasx = TestCpuFlag(kCpuHasLASX);
161
- printf("Has LOONGARCH 0x%x\n", has_loongarch);
162
- printf("Has LSX 0x%x\n", has_lsx);
163
- printf("Has LASX 0x%x\n", has_lasx);
164
- }
165
- #endif // defined(__loongarch__)
166
-
167
- #if defined(__i386__) || defined(__x86_64__) || defined(_M_IX86) || \
168
- defined(_M_X64)
169
- int has_x86 = TestCpuFlag(kCpuHasX86);
170
- if (has_x86) {
171
- int has_sse2 = TestCpuFlag(kCpuHasSSE2);
172
- int has_ssse3 = TestCpuFlag(kCpuHasSSSE3);
173
- int has_sse41 = TestCpuFlag(kCpuHasSSE41);
174
- int has_sse42 = TestCpuFlag(kCpuHasSSE42);
175
- int has_avx = TestCpuFlag(kCpuHasAVX);
176
- int has_avx2 = TestCpuFlag(kCpuHasAVX2);
177
- int has_erms = TestCpuFlag(kCpuHasERMS);
178
- int has_fsmr = TestCpuFlag(kCpuHasFSMR);
179
- int has_fma3 = TestCpuFlag(kCpuHasFMA3);
180
- int has_f16c = TestCpuFlag(kCpuHasF16C);
181
- int has_avx512bw = TestCpuFlag(kCpuHasAVX512BW);
182
- int has_avx512vl = TestCpuFlag(kCpuHasAVX512VL);
183
- int has_avx512vnni = TestCpuFlag(kCpuHasAVX512VNNI);
184
- int has_avx512vbmi = TestCpuFlag(kCpuHasAVX512VBMI);
185
- int has_avx512vbmi2 = TestCpuFlag(kCpuHasAVX512VBMI2);
186
- int has_avx512vbitalg = TestCpuFlag(kCpuHasAVX512VBITALG);
187
- int has_avx10 = TestCpuFlag(kCpuHasAVX10);
188
- int has_avx10_2 = TestCpuFlag(kCpuHasAVX10_2);
189
- int has_avxvnni = TestCpuFlag(kCpuHasAVXVNNI);
190
- int has_avxvnniint8 = TestCpuFlag(kCpuHasAVXVNNIINT8);
191
- int has_amxint8 = TestCpuFlag(kCpuHasAMXINT8);
192
- printf("Has X86 0x%x\n", has_x86);
193
- printf("Has SSE2 0x%x\n", has_sse2);
194
- printf("Has SSSE3 0x%x\n", has_ssse3);
195
- printf("Has SSE4.1 0x%x\n", has_sse41);
196
- printf("Has SSE4.2 0x%x\n", has_sse42);
197
- printf("Has AVX 0x%x\n", has_avx);
198
- printf("Has AVX2 0x%x\n", has_avx2);
199
- printf("Has ERMS 0x%x\n", has_erms);
200
- printf("Has FSMR 0x%x\n", has_fsmr);
201
- printf("Has FMA3 0x%x\n", has_fma3);
202
- printf("Has F16C 0x%x\n", has_f16c);
203
- printf("Has AVX512BW 0x%x\n", has_avx512bw);
204
- printf("Has AVX512VL 0x%x\n", has_avx512vl);
205
- printf("Has AVX512VNNI 0x%x\n", has_avx512vnni);
206
- printf("Has AVX512VBMI 0x%x\n", has_avx512vbmi);
207
- printf("Has AVX512VBMI2 0x%x\n", has_avx512vbmi2);
208
- printf("Has AVX512VBITALG 0x%x\n", has_avx512vbitalg);
209
- printf("Has AVX10 0x%x\n", has_avx10);
210
- printf("Has AVX10_2 0x%x\n", has_avx10_2);
211
- printf("HAS AVXVNNI 0x%x\n", has_avxvnni);
212
- printf("Has AVXVNNIINT8 0x%x\n", has_avxvnniint8);
213
- printf("Has AMXINT8 0x%x\n", has_amxint8);
214
- }
215
- #endif // defined(__i386__) || defined(__x86_64__) || defined(_M_IX86) ||
216
- // defined(_M_X64)
217
- }
218
-
219
- TEST_F(LibYUVBaseTest, TestCompilerMacros) {
220
- // Tests all macros used in public headers.
221
- #ifdef __ATOMIC_RELAXED
222
- printf("__ATOMIC_RELAXED %d\n", __ATOMIC_RELAXED);
223
- #endif
224
- #ifdef __cplusplus
225
- printf("__cplusplus %ld\n", __cplusplus);
226
- #endif
227
- #ifdef __clang_major__
228
- printf("__clang_major__ %d\n", __clang_major__);
229
- #endif
230
- #ifdef __clang_minor__
231
- printf("__clang_minor__ %d\n", __clang_minor__);
232
- #endif
233
- #ifdef __GNUC__
234
- printf("__GNUC__ %d\n", __GNUC__);
235
- #endif
236
- #ifdef __GNUC_MINOR__
237
- printf("__GNUC_MINOR__ %d\n", __GNUC_MINOR__);
238
- #endif
239
- #ifdef __i386__
240
- printf("__i386__ %d\n", __i386__);
241
- #endif
242
- #ifdef __x86_64__
243
- printf("__x86_64__ %d\n", __x86_64__);
244
- #endif
245
- #ifdef _M_IX86
246
- printf("_M_IX86 %d\n", _M_IX86);
247
- #endif
248
- #ifdef _M_X64
249
- printf("_M_X64 %d\n", _M_X64);
250
- #endif
251
- #ifdef _MSC_VER
252
- printf("_MSC_VER %d\n", _MSC_VER);
253
- #endif
254
- #ifdef __aarch64__
255
- printf("__aarch64__ %d\n", __aarch64__);
256
- #endif
257
- #ifdef __arm__
258
- printf("__arm__ %d\n", __arm__);
259
- #endif
260
- #ifdef __riscv
261
- printf("__riscv %d\n", __riscv);
262
- #endif
263
- #ifdef __riscv_vector
264
- printf("__riscv_vector %d\n", __riscv_vector);
265
- #endif
266
- #ifdef __riscv_v_intrinsic
267
- printf("__riscv_v_intrinsic %d\n", __riscv_v_intrinsic);
268
- #endif
269
- #ifdef __riscv_zve64x
270
- printf("__riscv_zve64x %d\n", __riscv_zve64x);
271
- #endif
272
- #ifdef __APPLE__
273
- printf("__APPLE__ %d\n", __APPLE__);
274
- #endif
275
- #ifdef __clang__
276
- printf("__clang__ %d\n", __clang__);
277
- #endif
278
- #ifdef __CLR_VER
279
- printf("__CLR_VER %d\n", __CLR_VER);
280
- #endif
281
- #ifdef __CYGWIN__
282
- printf("__CYGWIN__ %d\n", __CYGWIN__);
283
- #endif
284
- #ifdef __llvm__
285
- printf("__llvm__ %d\n", __llvm__);
286
- #endif
287
- #ifdef __loongarch__
288
- printf("__loongarch__ %d\n", __loongarch__);
289
- #endif
290
- #ifdef _WIN32
291
- printf("_WIN32 %d\n", _WIN32);
292
- #endif
293
- #ifdef __native_client__
294
- printf("__native_client__ %d\n", __native_client__);
295
- #endif
296
- #ifdef __pic__
297
- printf("__pic__ %d\n", __pic__);
298
- #endif
299
- #ifdef __pnacl__
300
- printf("__pnacl__ %d\n", __pnacl__);
301
- #endif
302
- #ifdef GG_LONGLONG
303
- printf("GG_LONGLONG %lld\n", GG_LONGLONG(1));
304
- #endif
305
- #ifdef INT_TYPES_DEFINED
306
- printf("INT_TYPES_DEFINED\n");
307
- #endif
308
- #ifdef __has_feature
309
- printf("__has_feature\n");
310
- #if __has_feature(memory_sanitizer)
311
- printf("__has_feature(memory_sanitizer) %d\n",
312
- __has_feature(memory_sanitizer));
313
- #endif
314
- #endif
315
- }
316
-
317
- static int FileExists(const char* file_name) {
318
- FILE* f = fopen(file_name, "r");
319
- if (!f) {
320
- return 0;
321
- }
322
- fclose(f);
323
- return 1;
324
- }
325
-
326
- TEST_F(LibYUVBaseTest, DISABLED_TestLinuxArm) {
327
- if (FileExists("../../unit_test/testdata/arm_v7.txt")) {
328
- printf("Note: testing to load \"../../unit_test/testdata/arm_v7.txt\"\n");
329
-
330
- EXPECT_EQ(0, ArmCpuCaps("../../unit_test/testdata/arm_v7.txt"));
331
- EXPECT_EQ(kCpuHasNEON, ArmCpuCaps("../../unit_test/testdata/tegra3.txt"));
332
- } else {
333
- printf("WARNING: unable to load \"../../unit_test/testdata/arm_v7.txt\"\n");
334
- }
335
- #if defined(__linux__) && defined(__ARM_NEON__) && !defined(__aarch64__)
336
- if (FileExists("/proc/cpuinfo")) {
337
- if (kCpuHasNEON != ArmCpuCaps("/proc/cpuinfo")) {
338
- // This can happen on Arm emulator but /proc/cpuinfo is from host.
339
- printf("WARNING: Neon build enabled but CPU does not have Neon\n");
340
- }
341
- } else {
342
- printf("WARNING: unable to load \"/proc/cpuinfo\"\n");
343
- }
344
- #endif
345
- }
346
-
347
- #if defined(__linux__) && defined(__aarch64__)
348
- TEST_F(LibYUVBaseTest, TestLinuxAArch64) {
349
- // Values taken from a Cortex-A57 machine, only Neon available.
350
- EXPECT_EQ(kCpuHasNEON, AArch64CpuCaps(0xffU, 0x0U));
351
-
352
- // Values taken from a Google Pixel 7.
353
- int expected = kCpuHasNEON | kCpuHasNeonDotProd;
354
- EXPECT_EQ(expected, AArch64CpuCaps(0x119fffU, 0x0U));
355
-
356
- // Values taken from a Google Pixel 8.
357
- expected = kCpuHasNEON | kCpuHasNeonDotProd | kCpuHasNeonI8MM | kCpuHasSVE |
358
- kCpuHasSVE2;
359
- EXPECT_EQ(expected, AArch64CpuCaps(0x3fffffffU, 0x2f33fU));
360
-
361
- // Values taken from a Neoverse N2 machine.
362
- EXPECT_EQ(expected, AArch64CpuCaps(0x3fffffffU, 0x2f3ffU));
363
-
364
- // Check for SME feature detection.
365
- expected |= kCpuHasSME;
366
- EXPECT_EQ(expected, AArch64CpuCaps(0x3fffffffU, 0x82f3ffU));
367
-
368
- // TODO: Check for SME2 feature detection from Apple M4
369
- }
370
- #endif
371
-
372
- TEST_F(LibYUVBaseTest, DISABLED_TestLinuxRVV) {
373
- if (FileExists("../../unit_test/testdata/riscv64.txt")) {
374
- printf("Note: testing to load \"../../unit_test/testdata/riscv64.txt\"\n");
375
-
376
- EXPECT_EQ(0, RiscvCpuCaps("../../unit_test/testdata/riscv64.txt"));
377
- EXPECT_EQ(kCpuHasRVV,
378
- RiscvCpuCaps("../../unit_test/testdata/riscv64_rvv.txt"));
379
- EXPECT_EQ(kCpuHasRVV | kCpuHasRVVZVFH,
380
- RiscvCpuCaps("../../unit_test/testdata/riscv64_rvv_zvfh.txt"));
381
- } else {
382
- printf(
383
- "WARNING: unable to load "
384
- "\"../../unit_test/testdata/riscv64.txt\"\n");
385
- }
386
- #if defined(__linux__) && defined(__riscv)
387
- if (FileExists("/proc/cpuinfo")) {
388
- if (!(kCpuHasRVV & RiscvCpuCaps("/proc/cpuinfo"))) {
389
- // This can happen on RVV emulator but /proc/cpuinfo is from host.
390
- printf("WARNING: RVV build enabled but CPU does not have RVV\n");
391
- }
392
- } else {
393
- printf("WARNING: unable to load \"/proc/cpuinfo\"\n");
394
- }
395
- #endif
396
- }
397
-
398
- #ifdef _WIN32
399
- // This doesn't pass on Windows CQ.
400
- #define MAYBE_TestSetCpuFlags DISABLED_TestSetCpuFlags
401
- #else
402
- #define MAYBE_TestSetCpuFlags TestSetCpuFlags
403
- #endif
404
- TEST_F(LibYUVBaseTest, MAYBE_TestSetCpuFlags) {
405
- // Reset any masked flags that may have been set so auto init is enabled.
406
- MaskCpuFlags(0);
407
-
408
- int original_cpu_flags = TestCpuFlag(-1);
409
-
410
- // Test setting different CPU configurations.
411
- int cpu_flags = kCpuHasARM | kCpuHasNEON | kCpuInitialized;
412
- SetCpuFlags(cpu_flags);
413
- EXPECT_EQ(cpu_flags, TestCpuFlag(-1));
414
-
415
- cpu_flags = kCpuHasX86 | kCpuInitialized;
416
- SetCpuFlags(cpu_flags);
417
- EXPECT_EQ(cpu_flags, TestCpuFlag(-1));
418
-
419
- // Test that setting 0 turns auto-init back on.
420
- SetCpuFlags(0);
421
- EXPECT_EQ(original_cpu_flags, TestCpuFlag(-1));
422
-
423
- // Restore the CPU flag mask.
424
- MaskCpuFlags(benchmark_cpu_info_);
425
- }
426
-
427
- } // namespace libyuv
1
+ /*
2
+ * Copyright 2012 The LibYuv Project Authors. All rights reserved.
3
+ *
4
+ * Use of this source code is governed by a BSD-style license
5
+ * that can be found in the LICENSE file in the root of the source
6
+ * tree. An additional intellectual property rights grant can be found
7
+ * in the file PATENTS. All contributing project authors may
8
+ * be found in the AUTHORS file in the root of the source tree.
9
+ */
10
+
11
+ #include <stdio.h>
12
+ #include <stdlib.h>
13
+ #include <string.h>
14
+
15
+ #ifdef __linux__
16
+ #include <ctype.h>
17
+ #include <sys/utsname.h>
18
+ #endif
19
+
20
+ #include "../unit_test/unit_test.h"
21
+ #include "libyuv/basic_types.h"
22
+ #include "libyuv/cpu_id.h"
23
+ #include "libyuv/version.h"
24
+
25
+ namespace libyuv {
26
+
27
+ #if defined(__i386__) || defined(__x86_64__) || defined(_M_IX86) || \
28
+ defined(_M_X64)
29
+ TEST_F(LibYUVBaseTest, TestCpuId) {
30
+ int has_x86 = TestCpuFlag(kCpuHasX86);
31
+ if (has_x86) {
32
+ int cpu_info[4];
33
+ // Vendor ID:
34
+ // AuthenticAMD AMD processor
35
+ // CentaurHauls Centaur processor
36
+ // CyrixInstead Cyrix processor
37
+ // GenuineIntel Intel processor
38
+ // GenuineTMx86 Transmeta processor
39
+ // Geode by NSC National Semiconductor processor
40
+ // NexGenDriven NexGen processor
41
+ // RiseRiseRise Rise Technology processor
42
+ // SiS SiS SiS SiS processor
43
+ // UMC UMC UMC UMC processor
44
+ CpuId(0, 0, cpu_info);
45
+ cpu_info[0] = cpu_info[1]; // Reorder output
46
+ cpu_info[1] = cpu_info[3];
47
+ cpu_info[3] = 0;
48
+ printf("Cpu Vendor: %s 0x%x 0x%x 0x%x\n",
49
+ reinterpret_cast<char*>(&cpu_info[0]), cpu_info[0], cpu_info[1],
50
+ cpu_info[2]);
51
+ EXPECT_EQ(12u, strlen(reinterpret_cast<char*>(&cpu_info[0])));
52
+
53
+ // CPU Family and Model
54
+ // 3:0 - Stepping
55
+ // 7:4 - Model
56
+ // 11:8 - Family
57
+ // 13:12 - Processor Type
58
+ // 19:16 - Extended Model
59
+ // 27:20 - Extended Family
60
+ CpuId(1, 0, cpu_info);
61
+ int family = ((cpu_info[0] >> 8) & 0x0f) | ((cpu_info[0] >> 16) & 0xff0);
62
+ int model = ((cpu_info[0] >> 4) & 0x0f) | ((cpu_info[0] >> 12) & 0xf0);
63
+ printf("Cpu Family %d (0x%x), Model %d (0x%x)\n", family, family, model,
64
+ model);
65
+ }
66
+ }
67
+ #endif
68
+
69
+ #ifdef __linux__
70
+ static void KernelVersion(int* version) {
71
+ struct utsname buffer;
72
+ int i = 0;
73
+
74
+ version[0] = version[1] = 0;
75
+ if (uname(&buffer) == 0) {
76
+ char* v = buffer.release;
77
+ for (i = 0; *v && i < 2; ++v) {
78
+ if (isdigit(*v)) {
79
+ version[i++] = (int)strtol(v, &v, 10);
80
+ }
81
+ }
82
+ }
83
+ }
84
+ #endif
85
+
86
+ TEST_F(LibYUVBaseTest, TestCpuHas) {
87
+ #if defined(__linux__)
88
+ {
89
+ int kernelversion[2];
90
+ KernelVersion(kernelversion);
91
+ printf("Kernel Version %d.%d\n", kernelversion[0], kernelversion[1]);
92
+ }
93
+ #endif // defined(__linux__)
94
+
95
+ #if defined(__arm__) || defined(__aarch64__)
96
+ int has_arm = TestCpuFlag(kCpuHasARM);
97
+ if (has_arm) {
98
+ int has_neon = TestCpuFlag(kCpuHasNEON);
99
+ int has_neon_dotprod = TestCpuFlag(kCpuHasNeonDotProd);
100
+ int has_neon_i8mm = TestCpuFlag(kCpuHasNeonI8MM);
101
+ int has_sve = TestCpuFlag(kCpuHasSVE);
102
+ int has_sve2 = TestCpuFlag(kCpuHasSVE2);
103
+ int has_sve_f32mm = TestCpuFlag(kCpuHasSVEF32MM);
104
+ int has_sme = TestCpuFlag(kCpuHasSME);
105
+ int has_sme2 = TestCpuFlag(kCpuHasSME2);
106
+ printf("Has Arm 0x%x\n", has_arm);
107
+ printf("Has Neon 0x%x\n", has_neon);
108
+ printf("Has Neon DotProd 0x%x\n", has_neon_dotprod);
109
+ printf("Has Neon I8MM 0x%x\n", has_neon_i8mm);
110
+ printf("Has SVE 0x%x\n", has_sve);
111
+ printf("Has SVE2 0x%x\n", has_sve2);
112
+ printf("Has SVE F32MM 0x%x\n", has_sve_f32mm);
113
+ printf("Has SME 0x%x\n", has_sme);
114
+ printf("Has SME2 0x%x\n", has_sme2);
115
+
116
+ #if defined(__aarch64__)
117
+ // Read and print the SVE and SME vector lengths.
118
+ if (has_sve) {
119
+ int sve_vl;
120
+ asm(".inst 0x04bf5020 \n" // rdvl x0, #1
121
+ "mov %w[sve_vl], w0 \n"
122
+ : [sve_vl] "=r"(sve_vl) // %[sve_vl]
123
+ :
124
+ : "x0");
125
+ printf("SVE vector length: %d bytes\n", sve_vl);
126
+ }
127
+ if (has_sme) {
128
+ int sme_vl;
129
+ asm(".inst 0x04bf5820 \n" // rdsvl x0, #1
130
+ "mov %w[sme_vl], w0 \n"
131
+ : [sme_vl] "=r"(sme_vl) // %[sme_vl]
132
+ :
133
+ : "x0");
134
+ printf("SME vector length: %d bytes\n", sme_vl);
135
+ }
136
+ #endif // defined(__aarch64__)
137
+ }
138
+ #endif // if defined(__arm__) || defined(__aarch64__)
139
+
140
+ #if defined(__riscv)
141
+ int has_riscv = TestCpuFlag(kCpuHasRISCV);
142
+ if (has_riscv) {
143
+ int has_rvv = TestCpuFlag(kCpuHasRVV);
144
+ printf("Has RISCV 0x%x\n", has_riscv);
145
+ printf("Has RVV 0x%x\n", has_rvv);
146
+
147
+ // Read and print the RVV vector length.
148
+ if (has_rvv) {
149
+ register uint32_t vlenb __asm__("t0");
150
+ __asm__(".word 0xC22022F3" /* CSRR t0, vlenb */ : "=r"(vlenb));
151
+ printf("RVV vector length: %d bytes\n", vlenb);
152
+ }
153
+ }
154
+ #endif // defined(__riscv)
155
+
156
+ #if defined(__loongarch__)
157
+ int has_loongarch = TestCpuFlag(kCpuHasLOONGARCH);
158
+ if (has_loongarch) {
159
+ int has_lsx = TestCpuFlag(kCpuHasLSX);
160
+ int has_lasx = TestCpuFlag(kCpuHasLASX);
161
+ printf("Has LOONGARCH 0x%x\n", has_loongarch);
162
+ printf("Has LSX 0x%x\n", has_lsx);
163
+ printf("Has LASX 0x%x\n", has_lasx);
164
+ }
165
+ #endif // defined(__loongarch__)
166
+
167
+ #if defined(__i386__) || defined(__x86_64__) || defined(_M_IX86) || \
168
+ defined(_M_X64)
169
+ int has_x86 = TestCpuFlag(kCpuHasX86);
170
+ if (has_x86) {
171
+ int has_sse2 = TestCpuFlag(kCpuHasSSE2);
172
+ int has_ssse3 = TestCpuFlag(kCpuHasSSSE3);
173
+ int has_sse41 = TestCpuFlag(kCpuHasSSE41);
174
+ int has_sse42 = TestCpuFlag(kCpuHasSSE42);
175
+ int has_avx = TestCpuFlag(kCpuHasAVX);
176
+ int has_avx2 = TestCpuFlag(kCpuHasAVX2);
177
+ int has_erms = TestCpuFlag(kCpuHasERMS);
178
+ int has_fsmr = TestCpuFlag(kCpuHasFSMR);
179
+ int has_fma3 = TestCpuFlag(kCpuHasFMA3);
180
+ int has_f16c = TestCpuFlag(kCpuHasF16C);
181
+ int has_avx512bw = TestCpuFlag(kCpuHasAVX512BW);
182
+ int has_avx512vl = TestCpuFlag(kCpuHasAVX512VL);
183
+ int has_avx512vnni = TestCpuFlag(kCpuHasAVX512VNNI);
184
+ int has_avx512vbmi = TestCpuFlag(kCpuHasAVX512VBMI);
185
+ int has_avx512vbmi2 = TestCpuFlag(kCpuHasAVX512VBMI2);
186
+ int has_avx512vbitalg = TestCpuFlag(kCpuHasAVX512VBITALG);
187
+ int has_avx10 = TestCpuFlag(kCpuHasAVX10);
188
+ int has_avx10_2 = TestCpuFlag(kCpuHasAVX10_2);
189
+ int has_avxvnni = TestCpuFlag(kCpuHasAVXVNNI);
190
+ int has_avxvnniint8 = TestCpuFlag(kCpuHasAVXVNNIINT8);
191
+ int has_amxint8 = TestCpuFlag(kCpuHasAMXINT8);
192
+ printf("Has X86 0x%x\n", has_x86);
193
+ printf("Has SSE2 0x%x\n", has_sse2);
194
+ printf("Has SSSE3 0x%x\n", has_ssse3);
195
+ printf("Has SSE4.1 0x%x\n", has_sse41);
196
+ printf("Has SSE4.2 0x%x\n", has_sse42);
197
+ printf("Has AVX 0x%x\n", has_avx);
198
+ printf("Has AVX2 0x%x\n", has_avx2);
199
+ printf("Has ERMS 0x%x\n", has_erms);
200
+ printf("Has FSMR 0x%x\n", has_fsmr);
201
+ printf("Has FMA3 0x%x\n", has_fma3);
202
+ printf("Has F16C 0x%x\n", has_f16c);
203
+ printf("Has AVX512BW 0x%x\n", has_avx512bw);
204
+ printf("Has AVX512VL 0x%x\n", has_avx512vl);
205
+ printf("Has AVX512VNNI 0x%x\n", has_avx512vnni);
206
+ printf("Has AVX512VBMI 0x%x\n", has_avx512vbmi);
207
+ printf("Has AVX512VBMI2 0x%x\n", has_avx512vbmi2);
208
+ printf("Has AVX512VBITALG 0x%x\n", has_avx512vbitalg);
209
+ printf("Has AVX10 0x%x\n", has_avx10);
210
+ printf("Has AVX10_2 0x%x\n", has_avx10_2);
211
+ printf("HAS AVXVNNI 0x%x\n", has_avxvnni);
212
+ printf("Has AVXVNNIINT8 0x%x\n", has_avxvnniint8);
213
+ printf("Has AMXINT8 0x%x\n", has_amxint8);
214
+ }
215
+ #endif // defined(__i386__) || defined(__x86_64__) || defined(_M_IX86) ||
216
+ // defined(_M_X64)
217
+ }
218
+
219
+ TEST_F(LibYUVBaseTest, TestCompilerMacros) {
220
+ // Tests all macros used in public headers.
221
+ #ifdef __ATOMIC_RELAXED
222
+ printf("__ATOMIC_RELAXED %d\n", __ATOMIC_RELAXED);
223
+ #endif
224
+ #ifdef __cplusplus
225
+ printf("__cplusplus %ld\n", __cplusplus);
226
+ #endif
227
+ #ifdef __clang_major__
228
+ printf("__clang_major__ %d\n", __clang_major__);
229
+ #endif
230
+ #ifdef __clang_minor__
231
+ printf("__clang_minor__ %d\n", __clang_minor__);
232
+ #endif
233
+ #ifdef __GNUC__
234
+ printf("__GNUC__ %d\n", __GNUC__);
235
+ #endif
236
+ #ifdef __GNUC_MINOR__
237
+ printf("__GNUC_MINOR__ %d\n", __GNUC_MINOR__);
238
+ #endif
239
+ #ifdef __i386__
240
+ printf("__i386__ %d\n", __i386__);
241
+ #endif
242
+ #ifdef __x86_64__
243
+ printf("__x86_64__ %d\n", __x86_64__);
244
+ #endif
245
+ #ifdef _M_IX86
246
+ printf("_M_IX86 %d\n", _M_IX86);
247
+ #endif
248
+ #ifdef _M_X64
249
+ printf("_M_X64 %d\n", _M_X64);
250
+ #endif
251
+ #ifdef _MSC_VER
252
+ printf("_MSC_VER %d\n", _MSC_VER);
253
+ #endif
254
+ #ifdef __aarch64__
255
+ printf("__aarch64__ %d\n", __aarch64__);
256
+ #endif
257
+ #ifdef __arm__
258
+ printf("__arm__ %d\n", __arm__);
259
+ #endif
260
+ #ifdef __riscv
261
+ printf("__riscv %d\n", __riscv);
262
+ #endif
263
+ #ifdef __riscv_vector
264
+ printf("__riscv_vector %d\n", __riscv_vector);
265
+ #endif
266
+ #ifdef __riscv_v_intrinsic
267
+ printf("__riscv_v_intrinsic %d\n", __riscv_v_intrinsic);
268
+ #endif
269
+ #ifdef __riscv_zve64x
270
+ printf("__riscv_zve64x %d\n", __riscv_zve64x);
271
+ #endif
272
+ #ifdef __APPLE__
273
+ printf("__APPLE__ %d\n", __APPLE__);
274
+ #endif
275
+ #ifdef __clang__
276
+ printf("__clang__ %d\n", __clang__);
277
+ #endif
278
+ #ifdef __CLR_VER
279
+ printf("__CLR_VER %d\n", __CLR_VER);
280
+ #endif
281
+ #ifdef __CYGWIN__
282
+ printf("__CYGWIN__ %d\n", __CYGWIN__);
283
+ #endif
284
+ #ifdef __llvm__
285
+ printf("__llvm__ %d\n", __llvm__);
286
+ #endif
287
+ #ifdef __loongarch__
288
+ printf("__loongarch__ %d\n", __loongarch__);
289
+ #endif
290
+ #ifdef _WIN32
291
+ printf("_WIN32 %d\n", _WIN32);
292
+ #endif
293
+ #ifdef __native_client__
294
+ printf("__native_client__ %d\n", __native_client__);
295
+ #endif
296
+ #ifdef __pic__
297
+ printf("__pic__ %d\n", __pic__);
298
+ #endif
299
+ #ifdef __pnacl__
300
+ printf("__pnacl__ %d\n", __pnacl__);
301
+ #endif
302
+ #ifdef GG_LONGLONG
303
+ printf("GG_LONGLONG %lld\n", GG_LONGLONG(1));
304
+ #endif
305
+ #ifdef INT_TYPES_DEFINED
306
+ printf("INT_TYPES_DEFINED\n");
307
+ #endif
308
+ #ifdef __has_feature
309
+ printf("__has_feature\n");
310
+ #if __has_feature(memory_sanitizer)
311
+ printf("__has_feature(memory_sanitizer) %d\n",
312
+ __has_feature(memory_sanitizer));
313
+ #endif
314
+ #endif
315
+ }
316
+
317
+ static int FileExists(const char* file_name) {
318
+ FILE* f = fopen(file_name, "r");
319
+ if (!f) {
320
+ return 0;
321
+ }
322
+ fclose(f);
323
+ return 1;
324
+ }
325
+
326
+ TEST_F(LibYUVBaseTest, DISABLED_TestLinuxArm) {
327
+ if (FileExists("../../unit_test/testdata/arm_v7.txt")) {
328
+ printf("Note: testing to load \"../../unit_test/testdata/arm_v7.txt\"\n");
329
+
330
+ EXPECT_EQ(0, ArmCpuCaps("../../unit_test/testdata/arm_v7.txt"));
331
+ EXPECT_EQ(kCpuHasNEON, ArmCpuCaps("../../unit_test/testdata/tegra3.txt"));
332
+ } else {
333
+ printf("WARNING: unable to load \"../../unit_test/testdata/arm_v7.txt\"\n");
334
+ }
335
+ #if defined(__linux__) && defined(__ARM_NEON__) && !defined(__aarch64__)
336
+ if (FileExists("/proc/cpuinfo")) {
337
+ if (kCpuHasNEON != ArmCpuCaps("/proc/cpuinfo")) {
338
+ // This can happen on Arm emulator but /proc/cpuinfo is from host.
339
+ printf("WARNING: Neon build enabled but CPU does not have Neon\n");
340
+ }
341
+ } else {
342
+ printf("WARNING: unable to load \"/proc/cpuinfo\"\n");
343
+ }
344
+ #endif
345
+ }
346
+
347
+ #if defined(__linux__) && defined(__aarch64__)
348
+ TEST_F(LibYUVBaseTest, TestLinuxAArch64) {
349
+ // Values taken from a Cortex-A57 machine, only Neon available.
350
+ EXPECT_EQ(kCpuHasNEON, AArch64CpuCaps(0xffU, 0x0U));
351
+
352
+ // Values taken from a Google Pixel 7.
353
+ int expected = kCpuHasNEON | kCpuHasNeonDotProd;
354
+ EXPECT_EQ(expected, AArch64CpuCaps(0x119fffU, 0x0U));
355
+
356
+ // Values taken from a Google Pixel 8.
357
+ expected = kCpuHasNEON | kCpuHasNeonDotProd | kCpuHasNeonI8MM | kCpuHasSVE |
358
+ kCpuHasSVE2;
359
+ EXPECT_EQ(expected, AArch64CpuCaps(0x3fffffffU, 0x2f33fU));
360
+
361
+ // Values taken from a Neoverse N2 machine.
362
+ EXPECT_EQ(expected, AArch64CpuCaps(0x3fffffffU, 0x2f3ffU));
363
+
364
+ // Check for SME feature detection.
365
+ expected |= kCpuHasSME;
366
+ EXPECT_EQ(expected, AArch64CpuCaps(0x3fffffffU, 0x82f3ffU));
367
+
368
+ // TODO: Check for SME2 feature detection from Apple M4
369
+ }
370
+ #endif
371
+
372
+ TEST_F(LibYUVBaseTest, DISABLED_TestLinuxRVV) {
373
+ if (FileExists("../../unit_test/testdata/riscv64.txt")) {
374
+ printf("Note: testing to load \"../../unit_test/testdata/riscv64.txt\"\n");
375
+
376
+ EXPECT_EQ(0, RiscvCpuCaps("../../unit_test/testdata/riscv64.txt"));
377
+ EXPECT_EQ(kCpuHasRVV,
378
+ RiscvCpuCaps("../../unit_test/testdata/riscv64_rvv.txt"));
379
+ EXPECT_EQ(kCpuHasRVV | kCpuHasRVVZVFH,
380
+ RiscvCpuCaps("../../unit_test/testdata/riscv64_rvv_zvfh.txt"));
381
+ } else {
382
+ printf(
383
+ "WARNING: unable to load "
384
+ "\"../../unit_test/testdata/riscv64.txt\"\n");
385
+ }
386
+ #if defined(__linux__) && defined(__riscv)
387
+ if (FileExists("/proc/cpuinfo")) {
388
+ if (!(kCpuHasRVV & RiscvCpuCaps("/proc/cpuinfo"))) {
389
+ // This can happen on RVV emulator but /proc/cpuinfo is from host.
390
+ printf("WARNING: RVV build enabled but CPU does not have RVV\n");
391
+ }
392
+ } else {
393
+ printf("WARNING: unable to load \"/proc/cpuinfo\"\n");
394
+ }
395
+ #endif
396
+ }
397
+
398
+ #ifdef _WIN32
399
+ // This doesn't pass on Windows CQ.
400
+ #define MAYBE_TestSetCpuFlags DISABLED_TestSetCpuFlags
401
+ #else
402
+ #define MAYBE_TestSetCpuFlags TestSetCpuFlags
403
+ #endif
404
+ TEST_F(LibYUVBaseTest, MAYBE_TestSetCpuFlags) {
405
+ // Reset any masked flags that may have been set so auto init is enabled.
406
+ MaskCpuFlags(0);
407
+
408
+ int original_cpu_flags = TestCpuFlag(-1);
409
+
410
+ // Test setting different CPU configurations.
411
+ int cpu_flags = kCpuHasARM | kCpuHasNEON | kCpuInitialized;
412
+ SetCpuFlags(cpu_flags);
413
+ EXPECT_EQ(cpu_flags, TestCpuFlag(-1));
414
+
415
+ cpu_flags = kCpuHasX86 | kCpuInitialized;
416
+ SetCpuFlags(cpu_flags);
417
+ EXPECT_EQ(cpu_flags, TestCpuFlag(-1));
418
+
419
+ // Test that setting 0 turns auto-init back on.
420
+ SetCpuFlags(0);
421
+ EXPECT_EQ(original_cpu_flags, TestCpuFlag(-1));
422
+
423
+ // Restore the CPU flag mask.
424
+ MaskCpuFlags(benchmark_cpu_info_);
425
+ }
426
+
427
+ } // namespace libyuv