Go to the documentation of this file.
27 # define _GNU_SOURCE // for syscall (performance monitoring API)
45 #if HAVE_SETCONSOLETEXTATTRIBUTE
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
121 #if CONFIG_HUFFYUV_DECODER
124 #if CONFIG_JPEG2000_DECODER
127 #if CONFIG_HUFFYUVDSP
130 #if CONFIG_LLVIDENCDSP
133 #if CONFIG_PIXBLOCKDSP
136 #if CONFIG_UTVIDEO_DECODER
139 #if CONFIG_V210_DECODER
142 #if CONFIG_V210_ENCODER
148 #if CONFIG_VP9_DECODER
156 #if CONFIG_AFIR_FILTER
159 #if CONFIG_BLEND_FILTER
162 #if CONFIG_COLORSPACE_FILTER
165 #if CONFIG_GBLUR_FILTER
168 #if CONFIG_HFLIP_FILTER
171 #if CONFIG_NLMEANS_FILTER
174 #if CONFIG_THRESHOLD_FILTER
189 static const struct {
288 if (llabs((int64_t)x.
i - y.
i) <= max_ulp)
299 for (
i = 0;
i <
len;
i++) {
308 float abs_diff = fabsf(
a -
b);
312 fprintf(stderr,
"test failed comparing %g with %g (abs diff=%g with EPS=%g)\n",
a,
b, abs_diff, eps);
322 for (
i = 0;
i <
len;
i++) {
335 unsigned max_ulp,
unsigned len)
339 for (
i = 0;
i <
len;
i++) {
348 double abs_diff = fabs(
a -
b);
350 return abs_diff < eps;
358 for (
i = 0;
i <
len;
i++) {
371 #if HAVE_SETCONSOLETEXTATTRIBUTE
373 static WORD org_attributes;
376 CONSOLE_SCREEN_BUFFER_INFO con_info;
377 con = GetStdHandle(STD_ERROR_HANDLE);
379 org_attributes = con_info.wAttributes;
385 SetConsoleTextAttribute(con, (org_attributes & 0xfff0) | (
color & 0x0f));
388 const char *term = getenv(
"TERM");
392 fprintf(stderr,
"\x1b[%d;3%dm", (
color & 0x08) >> 3,
color & 0x07);
396 vfprintf(stderr,
fmt,
arg);
400 #if HAVE_SETCONSOLETEXTATTRIBUTE
401 SetConsoleTextAttribute(con, org_attributes);
403 fprintf(stderr,
"\x1b[0m");
428 void *ptr = calloc(1,
size);
430 fprintf(stderr,
"checkasm: malloc failed\n");
444 return cpus[
i].suffix;
451 return *(
const uint16_t*)
a - *(
const uint16_t*)
b;
457 uint16_t nops[10000];
462 for (
i = 0;
i < 10000;
i++) {
468 qsort(nops, 10000,
sizeof(uint16_t),
cmp_nop);
469 for (
i = 2500;
i < 7500;
i++)
472 return nop_sum / 500;
482 if (
f->versions.cpu ||
f->versions.next) {
490 }
while ((v = v->
next));
501 int ascii_diff, digit_diff;
503 for (; !(ascii_diff = *(
const unsigned char*)
a - *(
const unsigned char*)
b) && *
a;
a++,
b++);
516 f->child[dir^1] =
r->child[dir];
523 #define is_red(f) ((f) && !(f)->color)
532 f->child[0]->color =
f->child[1]->color = 1;
553 if (!
f->versions.func)
558 int name_length = strlen(
name);
560 memcpy(
f->name,
name, name_length + 1);
569 int old_cpu_flag =
state.cpu_flag;
571 flag |= old_cpu_flag;
576 if (!
flag ||
state.cpu_flag != old_cpu_flag) {
592 if (
state.cpu_flag_name) {
598 #if CONFIG_LINUX_PERF
599 static int bench_init_linux(
void)
601 struct perf_event_attr attr = {
602 .type = PERF_TYPE_HARDWARE,
603 .size =
sizeof(
struct perf_event_attr),
604 .config = PERF_COUNT_HW_CPU_CYCLES,
610 printf(
"benchmarking with Linux Perf Monitoring API\n");
612 state.sysfd = syscall(__NR_perf_event_open, &attr, 0, -1, -1, 0);
613 if (
state.sysfd == -1) {
621 #if !CONFIG_LINUX_PERF
625 printf(
"benchmarking with native FFmpeg timers\n");
628 fprintf(stderr,
"checkasm: --bench is not supported on your system\n");
636 #if CONFIG_LINUX_PERF
637 int ret = bench_init_linux();
651 #if CONFIG_LINUX_PERF
657 int main(
int argc,
char *argv[])
662 #if ARCH_ARM && HAVE_ARMV5TE_EXTERNAL
664 checkasm_checked_call = checkasm_checked_call_vfp;
668 fprintf(stderr,
"checkasm: no tests to perform\n");
673 if (!strncmp(argv[1],
"--bench", 7)) {
676 if (argv[1][7] ==
'=') {
677 state.bench_pattern = argv[1] + 8;
678 state.bench_pattern_len = strlen(
state.bench_pattern);
680 state.bench_pattern =
"";
681 }
else if (!strncmp(argv[1],
"--test=", 7)) {
682 state.test_name = argv[1] + 7;
691 fprintf(stderr,
"checkasm: using random seed %u\n",
seed);
698 if (
state.num_failed) {
699 fprintf(stderr,
"checkasm: %d of %d tests have failed\n",
state.num_failed,
state.num_checked);
702 fprintf(stderr,
"checkasm: all %d tests passed\n",
state.num_checked);
703 if (
state.bench_pattern) {
728 if (!
func || name_length <= 0 || name_length >=
sizeof(name_buf))
732 state.funcs->color = 1;
733 v = &
state.current_func->versions;
746 }
while ((v = v->
next));
754 state.current_func_ver = v;
765 return !
state.num_failed &&
state.bench_pattern &&
766 !strncmp(
state.current_func->name,
state.bench_pattern,
state.bench_pattern_len);
772 if (
state.current_func_ver->cpu &&
state.current_func_ver->ok) {
778 vfprintf(stderr, msg,
arg);
780 fprintf(stderr,
")\n");
782 state.current_func_ver->ok = 0;
791 memset(perf, 0,
sizeof(*perf));
799 static int prev_checked, prev_failed, max_length;
801 if (
state.num_checked > prev_checked) {
802 int pad_length = max_length + 4;
806 pad_length -= fprintf(stderr,
" - %s.",
state.current_test_name);
808 pad_length -= vfprintf(stderr,
name,
arg);
810 fprintf(stderr,
"%*c",
FFMAX(pad_length, 0) + 2,
'[');
812 if (
state.num_failed == prev_failed)
816 fprintf(stderr,
"]\n");
818 prev_checked =
state.num_checked;
819 prev_failed =
state.num_failed;
820 }
else if (!
state.cpu_flag) {
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_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)
static const struct @311 tests[]
av_cold void av_lfg_init(AVLFG *c, unsigned int seed)
#define u(width, name, range_min, range_max)
void checkasm_check_alacdsp(void)
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)
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.
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)
#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.
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)
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 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)
static const struct @312 cpus[]
#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.
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_audiodsp(void)
#define i(width, name, range_min, range_max)
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 FF_ARRAY_ELEMS(a)
#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_sbrdsp(void)
#define AV_CPU_FLAG_VFP_VM
VFPv2 vector mode, deprecated in ARMv7-A and unavailable in various CPUs implementations.
#define INVALID_HANDLE_VALUE
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_exrdsp(void)
static void balance_tree(CheckasmFunc **root)
#define AV_CPU_FLAG_ARMV6T2