uvg266/tests/tests_main.c
Ari Lemmetti 2169f9ab8c Added AVX asm comments and fixes
-Added vzeroupper to satd macro to prevent AVX-SSE transition penalties int picture_x86.asm
-Fixed the order of registers in zero extend macro in picture_x86.asm
-Fixed SATD checkers test pattern in satd_tests.c
2014-07-14 14:43:36 +03:00

17 lines
301 B
C

#include "greatest/greatest.h"
GREATEST_MAIN_DEFS();
extern SUITE(sad_tests);
extern SUITE(intra_sad_tests);
extern SUITE(satd_tests);
int main(int argc, char **argv)
{
GREATEST_MAIN_BEGIN();
RUN_SUITE(sad_tests);
RUN_SUITE(intra_sad_tests);
RUN_SUITE(satd_tests);
GREATEST_MAIN_END();
}