OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 The LibYuv Project Authors. All rights reserved. | 2 * Copyright 2012 The LibYuv Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 26 matching lines...) Expand all Loading... |
37 int has_sse42 = TestCpuFlag(kCpuHasSSE42); | 37 int has_sse42 = TestCpuFlag(kCpuHasSSE42); |
38 printf("Has SSE4.2 %x\n", has_sse42); | 38 printf("Has SSE4.2 %x\n", has_sse42); |
39 int has_avx = TestCpuFlag(kCpuHasAVX); | 39 int has_avx = TestCpuFlag(kCpuHasAVX); |
40 printf("Has AVX %x\n", has_avx); | 40 printf("Has AVX %x\n", has_avx); |
41 int has_avx2 = TestCpuFlag(kCpuHasAVX2); | 41 int has_avx2 = TestCpuFlag(kCpuHasAVX2); |
42 printf("Has AVX2 %x\n", has_avx2); | 42 printf("Has AVX2 %x\n", has_avx2); |
43 int has_erms = TestCpuFlag(kCpuHasERMS); | 43 int has_erms = TestCpuFlag(kCpuHasERMS); |
44 printf("Has ERMS %x\n", has_erms); | 44 printf("Has ERMS %x\n", has_erms); |
45 int has_fma3 = TestCpuFlag(kCpuHasFMA3); | 45 int has_fma3 = TestCpuFlag(kCpuHasFMA3); |
46 printf("Has FMA3 %x\n", has_fma3); | 46 printf("Has FMA3 %x\n", has_fma3); |
| 47 int has_avx3 = TestCpuFlag(kCpuHasAVX3); |
| 48 printf("Has AVX3 %x\n", has_avx3); |
47 int has_mips = TestCpuFlag(kCpuHasMIPS); | 49 int has_mips = TestCpuFlag(kCpuHasMIPS); |
48 printf("Has MIPS %x\n", has_mips); | 50 printf("Has MIPS %x\n", has_mips); |
49 int has_mips_dsp = TestCpuFlag(kCpuHasMIPS_DSP); | 51 int has_mips_dsp = TestCpuFlag(kCpuHasMIPS_DSP); |
50 printf("Has MIPS DSP %x\n", has_mips_dsp); | 52 printf("Has MIPS DSP %x\n", has_mips_dsp); |
51 int has_mips_dspr2 = TestCpuFlag(kCpuHasMIPS_DSPR2); | 53 int has_mips_dspr2 = TestCpuFlag(kCpuHasMIPS_DSPR2); |
52 printf("Has MIPS DSPR2 %x\n", has_mips_dspr2); | 54 printf("Has MIPS DSPR2 %x\n", has_mips_dspr2); |
53 } | 55 } |
54 | 56 |
55 TEST_F(LibYUVBaseTest, TestCompilerHasAVX2) { | 57 TEST_F(LibYUVBaseTest, TestCompilerHasAVX2) { |
56 #ifdef _MSC_VER | 58 #ifdef _MSC_VER |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 EXPECT_EQ(kCpuHasNEON, ArmCpuCaps("../../unit_test/testdata/juno.txt")); | 131 EXPECT_EQ(kCpuHasNEON, ArmCpuCaps("../../unit_test/testdata/juno.txt")); |
130 } else { | 132 } else { |
131 printf("WARNING: unable to load \"../../unit_test/testdata/arm_v7.txt\"\n"); | 133 printf("WARNING: unable to load \"../../unit_test/testdata/arm_v7.txt\"\n"); |
132 } | 134 } |
133 #if defined(__linux__) && defined(__ARM_NEON__) | 135 #if defined(__linux__) && defined(__ARM_NEON__) |
134 EXPECT_EQ(kCpuHasNEON, ArmCpuCaps("/proc/cpuinfo")); | 136 EXPECT_EQ(kCpuHasNEON, ArmCpuCaps("/proc/cpuinfo")); |
135 #endif | 137 #endif |
136 } | 138 } |
137 | 139 |
138 } // namespace libyuv | 140 } // namespace libyuv |
OLD | NEW |