summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNathan Moinvaziri <nathan@nathanm.com>2025-12-26 08:56:41 -0800
committerHans Kristian Rosbach <hk-github@circlestorm.org>2025-12-28 14:07:36 +0100
commit1a32c9977f6d220e178d9bf0856d713ceb0837dc (patch)
treeae4a4fc919592df0a86772f0214b16daf2cca781 /test
parenta8a12f465758accea6a9dd37d6979c014a42a7c6 (diff)
downloadProject-Tick-1a32c9977f6d220e178d9bf0856d713ceb0837dc.tar.gz
Project-Tick-1a32c9977f6d220e178d9bf0856d713ceb0837dc.zip
Add missing adler32_copy_vmx implementation
Diffstat (limited to 'test')
-rw-r--r--test/benchmarks/benchmark_adler32_copy.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/benchmarks/benchmark_adler32_copy.cc b/test/benchmarks/benchmark_adler32_copy.cc
index 58c3b4a01e..05b1f0fac4 100644
--- a/test/benchmarks/benchmark_adler32_copy.cc
+++ b/test/benchmarks/benchmark_adler32_copy.cc
@@ -97,8 +97,7 @@ BENCHMARK_ADLER32_BASELINE_COPY(neon_copy_baseline, adler32_neon, test_cpu_featu
#endif
#ifdef PPC_VMX
-//BENCHMARK_ADLER32_COPY(vmx_inline_copy, adler32_copy_vmx, test_cpu_features.power.has_altivec);
-BENCHMARK_ADLER32_BASELINE_COPY(vmx_copy_baseline, adler32_vmx, test_cpu_features.power.has_altivec);
+BENCHMARK_ADLER32_COPY(vmx, adler32_copy_vmx, test_cpu_features.power.has_altivec);
#endif
#ifdef POWER8_VSX
//BENCHMARK_ADLER32_COPY(power8_inline_copy, adler32_copy_power8, test_cpu_features.power.has_arch_2_07);