Skip to content
Permalink
Browse files

checkasm: don't bench duplicate simd functions.

  • Loading branch information
rbultje committed Sep 15, 2015
1 parent 2bd0382 commit c689368187d3bc40d9d50d77e5d82333f0d840c1
Showing with 7 additions and 0 deletions.
  1. +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);

0 comments on commit c689368

Please sign in to comment.