summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorScott LaVarnway <slavarnway@google.com>2022-07-27 07:37:44 -0700
committerScott LaVarnway <slavarnway@google.com>2022-08-01 11:12:38 -0700
commit29db7fe9757549efa8df5cc6f3cff0ece7b4b0d1 (patch)
treec4c7490d3d846e50fda56129abf00a0ccb54b450 /test
parentce484db2110fc0a81f9d4e6c1a09d132e1e2b2b7 (diff)
downloadlibvpx-29db7fe9757549efa8df5cc6f3cff0ece7b4b0d1.tar
libvpx-29db7fe9757549efa8df5cc6f3cff0ece7b4b0d1.tar.gz
libvpx-29db7fe9757549efa8df5cc6f3cff0ece7b4b0d1.tar.bz2
libvpx-29db7fe9757549efa8df5cc6f3cff0ece7b4b0d1.zip
VPX: Add vp9_quantize_fp_32x32_avx2().
Up to 1.80x faster than vp9_quantize_fp_32x32_ssse3() for full calculations. Bug: b/237714063 Change-Id: Ic4ae4724fce7ac85c7a089535b16a999e02f0a10
Diffstat (limited to 'test')
-rw-r--r--test/vp9_quantize_test.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/vp9_quantize_test.cc b/test/vp9_quantize_test.cc
index 97998eb08..4bd573b4f 100644
--- a/test/vp9_quantize_test.cc
+++ b/test/vp9_quantize_test.cc
@@ -598,6 +598,9 @@ INSTANTIATE_TEST_SUITE_P(
::testing::Values(make_tuple(&QuantFPWrapper<vp9_quantize_fp_avx2>,
&QuantFPWrapper<quantize_fp_nz_c>, VPX_BITS_8,
16, true),
+ make_tuple(&QuantFPWrapper<vp9_quantize_fp_32x32_avx2>,
+ &QuantFPWrapper<quantize_fp_32x32_nz_c>,
+ VPX_BITS_8, 32, true),
make_tuple(&vpx_quantize_b_avx2, &vpx_quantize_b_c,
VPX_BITS_8, 16, false),
make_tuple(&vpx_quantize_b_32x32_avx2,