Go to the documentation of this file.
27 # define _GNU_SOURCE // for syscall (performance monitoring API)
45 #if HAVE_SETCONSOLETEXTATTRIBUTE && HAVE_GETSTDHANDLE
47 #define COLOR_RED FOREGROUND_RED
48 #define COLOR_GREEN FOREGROUND_GREEN
49 #define COLOR_YELLOW (FOREGROUND_RED|FOREGROUND_GREEN)
53 #define COLOR_YELLOW 3
64 #if ARCH_ARM && HAVE_ARMV5TE_EXTERNAL
67 void (*checkasm_checked_call)(
void *
func,
int dummy, ...) = checkasm_checked_call_novfp;
76 #if CONFIG_AAC_DECODER
80 #if CONFIG_ALAC_DECODER
92 #if CONFIG_DCA_DECODER
95 #if CONFIG_EXR_DECODER
101 #if CONFIG_FMTCONVERT
116 #if CONFIG_HEVC_DECODER
131 #if CONFIG_HUFFYUV_DECODER
134 #if CONFIG_JPEG2000_DECODER
137 #if CONFIG_HUFFYUVDSP
140 #if CONFIG_LLVIDENCDSP
143 #if CONFIG_OPUS_DECODER
146 #if CONFIG_PIXBLOCKDSP
149 #if CONFIG_UTVIDEO_DECODER
152 #if CONFIG_V210_DECODER
155 #if CONFIG_V210_ENCODER
161 #if CONFIG_VP9_DECODER
169 #if CONFIG_AFIR_FILTER
172 #if CONFIG_BLEND_FILTER
175 #if CONFIG_COLORSPACE_FILTER
181 #if CONFIG_GBLUR_FILTER
184 #if CONFIG_HFLIP_FILTER
187 #if CONFIG_NLMEANS_FILTER
190 #if CONFIG_THRESHOLD_FILTER
206 static const struct {
309 if (llabs((int64_t)x.
i - y.
i) <= max_ulp)
320 for (
i = 0;
i <
len;
i++) {
333 fprintf(stderr,
"test failed comparing %g with %g (abs diff=%g with EPS=%g)\n",
a,
b, abs_diff, eps);
343 for (
i = 0;
i <
len;
i++) {
356 unsigned max_ulp,
unsigned len)
360 for (
i = 0;
i <
len;
i++) {
369 double abs_diff =
fabs(
a -
b);
371 return abs_diff < eps;
379 for (
i = 0;
i <
len;
i++) {
392 #if HAVE_SETCONSOLETEXTATTRIBUTE && HAVE_GETSTDHANDLE
394 static WORD org_attributes;
397 CONSOLE_SCREEN_BUFFER_INFO con_info;
398 con = GetStdHandle(STD_ERROR_HANDLE);
399 if (con && con != INVALID_HANDLE_VALUE && GetConsoleScreenBufferInfo(con, &con_info)) {
400 org_attributes = con_info.wAttributes;
406 SetConsoleTextAttribute(con, (org_attributes & 0xfff0) | (
color & 0x0f));
409 const char *term = getenv(
"TERM");
413 fprintf(stderr,
"\x1b[%d;3%dm", (
color & 0x08) >> 3,
color & 0x07);
417 vfprintf(stderr, fmt,
arg);
421 #if HAVE_SETCONSOLETEXTATTRIBUTE && HAVE_GETSTDHANDLE
422 SetConsoleTextAttribute(con, org_attributes);
424 fprintf(stderr,
"\x1b[0m");
449 void *ptr = calloc(1,
size);
451 fprintf(stderr,
"checkasm: malloc failed\n");
465 return cpus[
i].suffix;
472 return *(
const uint16_t*)
a - *(
const uint16_t*)
b;
478 uint16_t nops[10000];
483 for (
i = 0;
i < 10000;
i++) {
489 qsort(nops, 10000,
sizeof(uint16_t),
cmp_nop);
490 for (
i = 2500;
i < 7500;
i++)
493 return nop_sum / 500;
503 if (
f->versions.cpu ||
f->versions.next) {
511 }
while ((v = v->
next));
521 const char *start =
a;
522 int ascii_diff, digit_diff;
524 for (; !(ascii_diff = *(
const unsigned char*)
a - *(
const unsigned char*)
b) && *
a;
a++,
b++);
537 f->child[dir^1] =
r->child[dir];
544 #define is_red(f) ((f) && !(f)->color)
553 f->child[0]->color =
f->child[1]->color = 1;
574 if (!
f->versions.func)
579 int name_length = strlen(
name);
581 memcpy(
f->name,
name, name_length + 1);
590 int old_cpu_flag =
state.cpu_flag;
592 flag |= old_cpu_flag;
597 if (!
flag ||
state.cpu_flag != old_cpu_flag) {
613 if (
state.cpu_flag_name) {
619 #if CONFIG_LINUX_PERF
620 static int bench_init_linux(
void)
622 struct perf_event_attr attr = {
623 .type = PERF_TYPE_HARDWARE,
624 .size =
sizeof(
struct perf_event_attr),
625 .config = PERF_COUNT_HW_CPU_CYCLES,
631 printf(
"benchmarking with Linux Perf Monitoring API\n");
633 state.sysfd = syscall(__NR_perf_event_open, &attr, 0, -1, -1, 0);
634 if (
state.sysfd == -1) {
642 #if !CONFIG_LINUX_PERF
646 printf(
"benchmarking with native FFmpeg timers\n");
649 fprintf(stderr,
"checkasm: --bench is not supported on your system\n");
657 #if CONFIG_LINUX_PERF
658 int ret = bench_init_linux();
672 #if CONFIG_LINUX_PERF
678 int main(
int argc,
char *argv[])
683 #if ARCH_ARM && HAVE_ARMV5TE_EXTERNAL
685 checkasm_checked_call = checkasm_checked_call_vfp;
689 fprintf(stderr,
"checkasm: no tests to perform\n");
694 if (!strncmp(argv[1],
"--bench", 7)) {
697 if (argv[1][7] ==
'=') {
698 state.bench_pattern = argv[1] + 8;
699 state.bench_pattern_len = strlen(
state.bench_pattern);
701 state.bench_pattern =
"";
702 }
else if (!strncmp(argv[1],
"--test=", 7)) {
703 state.test_name = argv[1] + 7;
704 }
else if (!strcmp(argv[1],
"--verbose") || !strcmp(argv[1],
"-v")) {
714 fprintf(stderr,
"checkasm: using random seed %u\n",
seed);
721 if (
state.num_failed) {
722 fprintf(stderr,
"checkasm: %d of %d tests have failed\n",
state.num_failed,
state.num_checked);
725 fprintf(stderr,
"checkasm: all %d tests passed\n",
state.num_checked);
726 if (
state.bench_pattern) {
751 if (!
func || name_length <= 0 || name_length >=
sizeof(name_buf))
755 state.funcs->color = 1;
756 v = &
state.current_func->versions;
769 }
while ((v = v->
next));
777 state.current_func_ver = v;
788 return !
state.num_failed &&
state.bench_pattern &&
789 !strncmp(
state.current_func->name,
state.bench_pattern,
state.bench_pattern_len);
795 if (
state.current_func_ver->cpu &&
state.current_func_ver->ok) {
801 vfprintf(stderr, msg,
arg);
803 fprintf(stderr,
")\n");
805 state.current_func_ver->ok = 0;
814 memset(perf, 0,
sizeof(*perf));
822 static int prev_checked, prev_failed, max_length;
824 if (
state.num_checked > prev_checked) {
825 int pad_length = max_length + 4;
829 pad_length -= fprintf(stderr,
" - %s.",
state.current_test_name);
831 pad_length -= vfprintf(stderr,
name,
arg);
833 fprintf(stderr,
"%*c",
FFMAX(pad_length, 0) + 2,
'[');
835 if (
state.num_failed == prev_failed)
839 fprintf(stderr,
"]\n");
841 prev_checked =
state.num_checked;
842 prev_failed =
state.num_failed;
843 }
else if (!
state.cpu_flag) {
845 int length = strlen(
state.current_test_name);
852 if (length > max_length)
857 #define DEF_CHECKASM_CHECK_FUNC(type, fmt) \
858 int checkasm_check_##type(const char *const file, const int line, \
859 const type *buf1, ptrdiff_t stride1, \
860 const type *buf2, ptrdiff_t stride2, \
861 const int w, int h, const char *const name) \
864 stride1 /= sizeof(*buf1); \
865 stride2 /= sizeof(*buf2); \
866 for (y = 0; y < h; y++) \
867 if (memcmp(&buf1[y*stride1], &buf2[y*stride2], w*sizeof(*buf1))) \
871 checkasm_fail_func("%s:%d", file, line); \
872 if (!state.verbose) \
874 fprintf(stderr, "%s:\n", name); \
876 for (int x = 0; x < w; x++) \
877 fprintf(stderr, " " fmt, buf1[x]); \
878 fprintf(stderr, " "); \
879 for (int x = 0; x < w; x++) \
880 fprintf(stderr, " " fmt, buf2[x]); \
881 fprintf(stderr, " "); \
882 for (int x = 0; x < w; x++) \
883 fprintf(stderr, "%c", buf1[x] != buf2[x] ? 'x' : '.'); \
886 fprintf(stderr, "\n"); \
void checkasm_check_nlmeans(void)
void av_force_cpu_flags(int arg)
Disables cpu detection and forces the specified flags.
void checkasm_check_vp8dsp(void)
void checkasm_check_hevc_epel(void)
void checkasm_check_blockdsp(void)
#define AV_CPU_FLAG_SSE3
Prescott SSE3 functions.
static void destroy_func_tree(CheckasmFunc *f)
void checkasm_check_videodsp(void)
static int cmp_nop(const void *a, const void *b)
void checkasm_check_vf_eq(void)
av_cold void av_lfg_init(AVLFG *c, unsigned int seed)
#define u(width, name, range_min, range_max)
void checkasm_check_alacdsp(void)
static const struct @320 cpus[]
void checkasm_check_v210dec(void)
int float_near_abs_eps_array(const float *a, const float *b, float eps, unsigned len)
#define AV_CPU_FLAG_SSE3SLOW
SSE3 supported, but usually not faster.
const char * bench_pattern
void checkasm_check_hevc_idct(void)
void checkasm_check_sw_scale(void)
struct CheckasmFunc * child[2]
void checkasm_check_afir(void)
static void print_cpu_name(void)
#define AV_CPU_FLAG_3DNOW
AMD 3DNOW.
int float_near_abs_eps(float a, float b, float eps)
void checkasm_check_aacpsdsp(void)
static void bench_uninit(void)
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
static const char * cpu_suffix(int cpu)
void checkasm_check_llviddspenc(void)
void checkasm_check_h264dsp(void)
static void color_printf(int color, const char *fmt,...)
uint32_t av_get_random_seed(void)
Get a seed to use in conjunction with random functions.
void checkasm_check_hevc_qpel(void)
int main(int argc, char *argv[])
#define AV_CPU_FLAG_SSSE3
Conroe SSSE3 functions.
int double_near_abs_eps(double a, double b, double eps)
const char * current_test_name
static CheckasmFunc * rotate_tree(CheckasmFunc *f, int dir)
#define AV_CPU_FLAG_XOP
Bulldozer XOP functions.
void checkasm_check_vp9dsp(void)
void checkasm_check_vf_threshold(void)
void checkasm_check_vf_gblur(void)
void checkasm_check_hevc_qpel_uni_w(void)
#define AV_CPU_FLAG_3DNOWEXT
AMD 3DNowExt.
int float_near_abs_eps_ulp(float a, float b, float eps, unsigned max_ulp)
#define AV_CPU_FLAG_VSX
ISA 2.06.
static __device__ float fabsf(float a)
void checkasm_check_float_dsp(void)
#define AV_CPU_FLAG_AVX512
AVX-512 functions: requires OS support even if YMM/ZMM registers aren't used.
static int bench_init(void)
void checkasm_check_pixblockdsp(void)
#define FF_ARRAY_ELEMS(a)
void checkasm_report(const char *name,...)
static CheckasmFunc * get_func(CheckasmFunc **root, const char *name)
void checkasm_fail_func(const char *msg,...)
void checkasm_check_sw_rgb(void)
void checkasm_check_hevc_sao(void)
#define AV_CPU_FLAG_ARMV6
#define AV_CPU_FLAG_SSE4
Penryn SSE4.1 functions.
static av_always_inline int cmp(MpegEncContext *s, const int x, const int y, const int subx, const int suby, const int size, const int h, int ref_index, int src_index, me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, const int flags)
compares a block (either a full macroblock or a partition thereof) against a proposed motion-compensa...
static __device__ float fabs(float a)
static int measure_nop_time(void)
int double_near_abs_eps_array(const double *a, const double *b, double eps, unsigned len)
void checkasm_check_fmtconvert(void)
#define AV_CPU_FLAG_CMOV
supports cmov instruction
#define AV_CPU_FLAG_ALTIVEC
standard
static void print_benchs(CheckasmFunc *f)
CheckasmFunc * current_func
#define AV_CPU_FLAG_SSE2
PIV SSE2 functions.
Context structure for the Lagged Fibonacci PRNG.
#define AV_CPU_FLAG_AVX
AVX functions: requires OS support even if YMM registers aren't used.
#define AV_CPU_FLAG_FMA4
Bulldozer FMA4 functions.
#define AV_CPU_FLAG_AVX2
AVX2 functions: requires OS support even if YMM registers aren't used.
void checkasm_check_llviddsp(void)
#define AV_CPU_FLAG_SSE2SLOW
SSE2 supported, but usually not faster.
void checkasm_check_hevc_qpel_uni(void)
#define DEF_CHECKASM_CHECK_FUNC(type, fmt)
static const struct @319 tests[]
printf("static const uint8_t my_array[100] = {\n")
void checkasm_check_h264pred(void)
static av_const int av_isdigit(int c)
Locale-independent conversion of ASCII isdigit.
#define AV_CPU_FLAG_FMA3
Haswell FMA3 functions.
The reader does not expect b to be semantically here and if the code is changed by maybe adding a a division or other the signedness will almost certainly be mistaken To avoid this confusion a new type was SUINT is the C unsigned type but it holds a signed int to use the same example SUINT a
void checkasm_check_huffyuvdsp(void)
int float_near_abs_eps_array_ulp(const float *a, const float *b, float eps, unsigned max_ulp, unsigned len)
CheckasmPerf * checkasm_get_perf_context(void)
void checkasm_check_fixed_dsp(void)
void checkasm_check_colorspace(void)
void checkasm_check_utvideodsp(void)
static int is_negative(union av_intfloat32 u)
void checkasm_check_hevc_epel_bi_w(void)
void checkasm_check_audiodsp(void)
void checkasm_check_hevc_qpel_bi_w(void)
void checkasm_check_hevc_epel_uni_w(void)
void checkasm_check_flacdsp(void)
void * checkasm_check_func(void *func, const char *name,...)
#define AV_CPU_FLAG_SSE42
Nehalem SSE4.2 functions.
struct CheckasmFuncVersion * next
void checkasm_check_synth_filter(void)
static int cmp_func_names(const char *a, const char *b)
#define AV_CPU_FLAG_ARMV8
void checkasm_check_g722dsp(void)
#define AV_CPU_FLAG_ATOM
Atom processor, some SSSE3 instructions are slower.
void checkasm_check_vf_hflip(void)
void checkasm_check_blend(void)
#define AV_CPU_FLAG_VFPV3
void checkasm_check_bswapdsp(void)
#define AV_CPU_FLAG_ARMV5TE
#define AV_CPU_FLAG_MMX
standard MMX
static void * checkasm_malloc(size_t size)
void checkasm_check_h264qpel(void)
#define AV_CPU_FLAG_AESNI
Advanced Encryption Standard functions.
int checkasm_bench_func(void)
#define AV_CPU_FLAG_POWER8
ISA 2.07.
const char * cpu_flag_name
#define AV_CPU_FLAG_SSE
SSE functions.
static int ref[MAX_W *MAX_W]
int float_near_ulp_array(const float *a, const float *b, unsigned max_ulp, unsigned len)
#define AV_CPU_FLAG_MMXEXT
SSE integer functions or AMD MMX ext.
void checkasm_check_v210enc(void)
void checkasm_check_hevc_qpel_bi(void)
void checkasm_check_sbrdsp(void)
void checkasm_check_hevc_epel_uni(void)
#define AV_CPU_FLAG_VFP_VM
VFPv2 vector mode, deprecated in ARMv7-A and unavailable in various CPUs implementations.
void checkasm_check_jpeg2000dsp(void)
void checkasm_check_hevc_add_res(void)
int float_near_ulp(float a, float b, unsigned max_ulp)
CheckasmFuncVersion * current_func_ver
static void check_cpu_flag(const char *name, int flag)
static int bench_init_ffmpeg(void)
CheckasmFuncVersion versions
void checkasm_check_hevc_epel_bi(void)
void checkasm_check_exrdsp(void)
static void balance_tree(CheckasmFunc **root)
#define AV_CPU_FLAG_ARMV6T2
void checkasm_check_opusdsp(void)