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 30 matching lines...) Expand all Loading... |
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); | 47 int has_avx3 = TestCpuFlag(kCpuHasAVX3); |
48 printf("Has AVX3 %x\n", has_avx3); | 48 printf("Has AVX3 %x\n", has_avx3); |
49 int has_mips = TestCpuFlag(kCpuHasMIPS); | 49 int has_mips = TestCpuFlag(kCpuHasMIPS); |
50 printf("Has MIPS %x\n", has_mips); | 50 printf("Has MIPS %x\n", has_mips); |
51 int has_mips_dsp = TestCpuFlag(kCpuHasMIPS_DSP); | |
52 printf("Has MIPS DSP %x\n", has_mips_dsp); | |
53 int has_mips_dspr2 = TestCpuFlag(kCpuHasMIPS_DSPR2); | 51 int has_mips_dspr2 = TestCpuFlag(kCpuHasMIPS_DSPR2); |
54 printf("Has MIPS DSPR2 %x\n", has_mips_dspr2); | 52 printf("Has MIPS DSPR2 %x\n", has_mips_dspr2); |
55 } | 53 } |
56 | 54 |
57 TEST_F(LibYUVBaseTest, TestCompilerHasAVX2) { | 55 TEST_F(LibYUVBaseTest, TestCompilerHasAVX2) { |
58 #ifdef _MSC_VER | 56 #ifdef _MSC_VER |
59 printf("_MSC_VER %d\n", _MSC_VER); | 57 printf("_MSC_VER %d\n", _MSC_VER); |
60 #endif | 58 #endif |
61 #if !defined(LIBYUV_DISABLE_X86) && (defined(GCC_HAS_AVX2) || \ | 59 #if !defined(LIBYUV_DISABLE_X86) && (defined(GCC_HAS_AVX2) || \ |
62 defined(CLANG_HAS_AVX2) || defined(VISUALC_HAS_AVX2)) | 60 defined(CLANG_HAS_AVX2) || defined(VISUALC_HAS_AVX2)) |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 EXPECT_EQ(kCpuHasNEON, ArmCpuCaps("../../unit_test/testdata/juno.txt")); | 129 EXPECT_EQ(kCpuHasNEON, ArmCpuCaps("../../unit_test/testdata/juno.txt")); |
132 } else { | 130 } else { |
133 printf("WARNING: unable to load \"../../unit_test/testdata/arm_v7.txt\"\n"); | 131 printf("WARNING: unable to load \"../../unit_test/testdata/arm_v7.txt\"\n"); |
134 } | 132 } |
135 #if defined(__linux__) && defined(__ARM_NEON__) | 133 #if defined(__linux__) && defined(__ARM_NEON__) |
136 EXPECT_EQ(kCpuHasNEON, ArmCpuCaps("/proc/cpuinfo")); | 134 EXPECT_EQ(kCpuHasNEON, ArmCpuCaps("/proc/cpuinfo")); |
137 #endif | 135 #endif |
138 } | 136 } |
139 | 137 |
140 } // namespace libyuv | 138 } // namespace libyuv |
OLD | NEW |