Skip to content

Commit

Permalink
checkasm: don't bench duplicate simd functions.
Browse files Browse the repository at this point in the history
  • Loading branch information
rbultje committed Sep 15, 2015
1 parent 2bd0382 commit c689368
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/checkasm/vp9.c
Expand Up @@ -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);
Expand Down

0 comments on commit c689368

Please sign in to comment.