Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
checkasm: don't bench duplicate simd functions.
- Loading branch information
Showing
with
7 additions
and
0 deletions.
-
+7
−0
tests/checkasm/vp9.c
|
|
@@ -157,6 +157,13 @@ static void check_vp9mc(void) |
|
|
size, mx, my); |
|
|
if (memcmp(dst0, dst1, DST_BUF_SIZE)) |
|
|
fail(); |
|
|
// fullpel functions are identical for all filters |
|
|
if (!dx && !dy && filter) continue; |
|
|
// simd implementations for each filter of subpel |
|
|
// functions are identical |
|
|
if (filter >= 1 && filter <= 2) continue; |
|
|
// 10/12 bpp for bilin are identical |
|
|
if (bit_depth == 12 && filter == 3) continue; |
|
|
bench_new(dst1, size * SIZEOF_PIXEL, |
|
|
src, SRC_BUF_STRIDE * SIZEOF_PIXEL, |
|
|
size, mx, my); |
|
|
|