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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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); | 51 int has_mips_dsp = TestCpuFlag(kCpuHasMIPS_DSP); |
52 printf("Has MIPS DSP %x\n", has_mips_dsp); | 52 printf("Has MIPS DSP %x\n", has_mips_dsp); |
53 int has_mips_dspr2 = TestCpuFlag(kCpuHasMIPS_DSPR2); | 53 int has_mips_dspr2 = TestCpuFlag(kCpuHasMIPS_DSPR2); |
54 printf("Has MIPS DSPR2 %x\n", has_mips_dspr2); | 54 printf("Has MIPS DSPR2 %x\n", has_mips_dspr2); |
55 } | 55 } |
56 | 56 |
57 TEST_F(LibYUVBaseTest, TestCompilerHasAVX2) { | 57 TEST_F(LibYUVBaseTest, TestCpuCompilerEnabled) { |
| 58 #if defined(__aarch64__) |
| 59 printf("Arm64 build\n"); |
| 60 #endif |
| 61 #if defined(__aarch64__) || defined(__ARM_NEON__) || defined(LIBYUV_NEON) |
| 62 printf("Neon build enabled\n"); |
| 63 #endif |
| 64 #if defined(__x86_64__) || defined(_M_X64) |
| 65 printf("x64 build\n"); |
| 66 #endif |
58 #ifdef _MSC_VER | 67 #ifdef _MSC_VER |
59 printf("_MSC_VER %d\n", _MSC_VER); | 68 printf("_MSC_VER %d\n", _MSC_VER); |
60 #endif | 69 #endif |
61 #if !defined(LIBYUV_DISABLE_X86) && (defined(GCC_HAS_AVX2) || \ | 70 #if !defined(LIBYUV_DISABLE_X86) && (defined(GCC_HAS_AVX2) || \ |
62 defined(CLANG_HAS_AVX2) || defined(VISUALC_HAS_AVX2)) | 71 defined(CLANG_HAS_AVX2) || defined(VISUALC_HAS_AVX2)) |
63 printf("Has AVX2 1\n"); | 72 printf("Has AVX2 1\n"); |
64 // If compiler supports AVX2, the following function is expected to exist: | 73 // If compiler supports AVX2, the following function is expected to exist: |
65 #if !defined(HAS_ARGBSHUFFLEROW_AVX2) | 74 #if !defined(HAS_ARGBSHUFFLEROW_AVX2) |
66 EXPECT_TRUE(0); // HAS_ARGBSHUFFLEROW_AVX2 was expected. | 75 EXPECT_TRUE(0); // HAS_ARGBSHUFFLEROW_AVX2 was expected. |
67 #endif | 76 #endif |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 EXPECT_EQ(kCpuHasNEON, ArmCpuCaps("../../unit_test/testdata/juno.txt")); | 140 EXPECT_EQ(kCpuHasNEON, ArmCpuCaps("../../unit_test/testdata/juno.txt")); |
132 } else { | 141 } else { |
133 printf("WARNING: unable to load \"../../unit_test/testdata/arm_v7.txt\"\n"); | 142 printf("WARNING: unable to load \"../../unit_test/testdata/arm_v7.txt\"\n"); |
134 } | 143 } |
135 #if defined(__linux__) && defined(__ARM_NEON__) | 144 #if defined(__linux__) && defined(__ARM_NEON__) |
136 EXPECT_EQ(kCpuHasNEON, ArmCpuCaps("/proc/cpuinfo")); | 145 EXPECT_EQ(kCpuHasNEON, ArmCpuCaps("/proc/cpuinfo")); |
137 #endif | 146 #endif |
138 } | 147 } |
139 | 148 |
140 } // namespace libyuv | 149 } // namespace libyuv |
OLD | NEW |