FFmpeg
checkasm.c
Go to the documentation of this file.
1 /*
2  * Assembly testing and benchmarking tool
3  * Copyright (c) 2015 Henrik Gramner
4  * Copyright (c) 2008 Loren Merritt
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22 
23 #include "config.h"
24 
25 #if CONFIG_LINUX_PERF
26 # ifndef _GNU_SOURCE
27 # define _GNU_SOURCE // for syscall (performance monitoring API)
28 # endif
29 #endif
30 
31 #include <stdarg.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #include "checkasm.h"
36 #include "libavutil/common.h"
37 #include "libavutil/cpu.h"
38 #include "libavutil/intfloat.h"
39 #include "libavutil/random_seed.h"
40 
41 #if HAVE_IO_H
42 #include <io.h>
43 #endif
44 
45 #if HAVE_SETCONSOLETEXTATTRIBUTE && HAVE_GETSTDHANDLE
46 #include <windows.h>
47 #define COLOR_RED FOREGROUND_RED
48 #define COLOR_GREEN FOREGROUND_GREEN
49 #define COLOR_YELLOW (FOREGROUND_RED|FOREGROUND_GREEN)
50 #else
51 #define COLOR_RED 1
52 #define COLOR_GREEN 2
53 #define COLOR_YELLOW 3
54 #endif
55 
56 #if HAVE_UNISTD_H
57 #include <unistd.h>
58 #endif
59 
60 #if !HAVE_ISATTY
61 #define isatty(fd) 1
62 #endif
63 
64 #if ARCH_ARM && HAVE_ARMV5TE_EXTERNAL
65 #include "libavutil/arm/cpu.h"
66 
67 void (*checkasm_checked_call)(void *func, int dummy, ...) = checkasm_checked_call_novfp;
68 #endif
69 
70 /* List of tests to invoke */
71 static const struct {
72  const char *name;
73  void (*func)(void);
74 } tests[] = {
75 #if CONFIG_AVCODEC
76  #if CONFIG_AAC_DECODER
77  { "aacpsdsp", checkasm_check_aacpsdsp },
78  { "sbrdsp", checkasm_check_sbrdsp },
79  #endif
80  #if CONFIG_ALAC_DECODER
81  { "alacdsp", checkasm_check_alacdsp },
82  #endif
83  #if CONFIG_AUDIODSP
84  { "audiodsp", checkasm_check_audiodsp },
85  #endif
86  #if CONFIG_BLOCKDSP
87  { "blockdsp", checkasm_check_blockdsp },
88  #endif
89  #if CONFIG_BSWAPDSP
90  { "bswapdsp", checkasm_check_bswapdsp },
91  #endif
92  #if CONFIG_DCA_DECODER
93  { "synth_filter", checkasm_check_synth_filter },
94  #endif
95  #if CONFIG_EXR_DECODER
96  { "exrdsp", checkasm_check_exrdsp },
97  #endif
98  #if CONFIG_FLACDSP
99  { "flacdsp", checkasm_check_flacdsp },
100  #endif
101  #if CONFIG_FMTCONVERT
102  { "fmtconvert", checkasm_check_fmtconvert },
103  #endif
104  #if CONFIG_G722DSP
105  { "g722dsp", checkasm_check_g722dsp },
106  #endif
107  #if CONFIG_H264DSP
108  { "h264dsp", checkasm_check_h264dsp },
109  #endif
110  #if CONFIG_H264PRED
111  { "h264pred", checkasm_check_h264pred },
112  #endif
113  #if CONFIG_H264QPEL
114  { "h264qpel", checkasm_check_h264qpel },
115  #endif
116  #if CONFIG_HEVC_DECODER
117  { "hevc_add_res", checkasm_check_hevc_add_res },
118  { "hevc_idct", checkasm_check_hevc_idct },
119  { "hevc_pel", checkasm_check_hevc_pel },
120  { "hevc_sao", checkasm_check_hevc_sao },
121  #endif
122  #if CONFIG_HUFFYUV_DECODER
123  { "huffyuvdsp", checkasm_check_huffyuvdsp },
124  #endif
125  #if CONFIG_JPEG2000_DECODER
126  { "jpeg2000dsp", checkasm_check_jpeg2000dsp },
127  #endif
128  #if CONFIG_HUFFYUVDSP
129  { "llviddsp", checkasm_check_llviddsp },
130  #endif
131  #if CONFIG_LLVIDENCDSP
132  { "llviddspenc", checkasm_check_llviddspenc },
133  #endif
134  #if CONFIG_OPUS_DECODER
135  { "opusdsp", checkasm_check_opusdsp },
136  #endif
137  #if CONFIG_PIXBLOCKDSP
138  { "pixblockdsp", checkasm_check_pixblockdsp },
139  #endif
140  #if CONFIG_UTVIDEO_DECODER
141  { "utvideodsp", checkasm_check_utvideodsp },
142  #endif
143  #if CONFIG_V210_DECODER
144  { "v210dec", checkasm_check_v210dec },
145  #endif
146  #if CONFIG_V210_ENCODER
147  { "v210enc", checkasm_check_v210enc },
148  #endif
149  #if CONFIG_VP8DSP
150  { "vp8dsp", checkasm_check_vp8dsp },
151  #endif
152  #if CONFIG_VP9_DECODER
153  { "vp9dsp", checkasm_check_vp9dsp },
154  #endif
155  #if CONFIG_VIDEODSP
156  { "videodsp", checkasm_check_videodsp },
157  #endif
158 #endif
159 #if CONFIG_AVFILTER
160  #if CONFIG_AFIR_FILTER
161  { "af_afir", checkasm_check_afir },
162  #endif
163  #if CONFIG_BLEND_FILTER
164  { "vf_blend", checkasm_check_blend },
165  #endif
166  #if CONFIG_COLORSPACE_FILTER
167  { "vf_colorspace", checkasm_check_colorspace },
168  #endif
169  #if CONFIG_EQ_FILTER
170  { "vf_eq", checkasm_check_vf_eq },
171  #endif
172  #if CONFIG_GBLUR_FILTER
173  { "vf_gblur", checkasm_check_vf_gblur },
174  #endif
175  #if CONFIG_HFLIP_FILTER
176  { "vf_hflip", checkasm_check_vf_hflip },
177  #endif
178  #if CONFIG_NLMEANS_FILTER
179  { "vf_nlmeans", checkasm_check_nlmeans },
180  #endif
181  #if CONFIG_THRESHOLD_FILTER
182  { "vf_threshold", checkasm_check_vf_threshold },
183  #endif
184 #endif
185 #if CONFIG_SWSCALE
186  { "sw_rgb", checkasm_check_sw_rgb },
187  { "sw_scale", checkasm_check_sw_scale },
188 #endif
189 #if CONFIG_AVUTIL
190  { "fixed_dsp", checkasm_check_fixed_dsp },
191  { "float_dsp", checkasm_check_float_dsp },
192  { "av_tx", checkasm_check_av_tx },
193 #endif
194  { NULL }
195 };
196 
197 /* List of cpu flags to check */
198 static const struct {
199  const char *name;
200  const char *suffix;
201  int flag;
202 } cpus[] = {
203 #if ARCH_AARCH64
204  { "ARMV8", "armv8", AV_CPU_FLAG_ARMV8 },
205  { "NEON", "neon", AV_CPU_FLAG_NEON },
206 #elif ARCH_ARM
207  { "ARMV5TE", "armv5te", AV_CPU_FLAG_ARMV5TE },
208  { "ARMV6", "armv6", AV_CPU_FLAG_ARMV6 },
209  { "ARMV6T2", "armv6t2", AV_CPU_FLAG_ARMV6T2 },
210  { "VFP", "vfp", AV_CPU_FLAG_VFP },
211  { "VFP_VM", "vfp_vm", AV_CPU_FLAG_VFP_VM },
212  { "VFPV3", "vfp3", AV_CPU_FLAG_VFPV3 },
213  { "NEON", "neon", AV_CPU_FLAG_NEON },
214 #elif ARCH_PPC
215  { "ALTIVEC", "altivec", AV_CPU_FLAG_ALTIVEC },
216  { "VSX", "vsx", AV_CPU_FLAG_VSX },
217  { "POWER8", "power8", AV_CPU_FLAG_POWER8 },
218 #elif ARCH_MIPS
219  { "MMI", "mmi", AV_CPU_FLAG_MMI },
220  { "MSA", "msa", AV_CPU_FLAG_MSA },
221 #elif ARCH_X86
222  { "MMX", "mmx", AV_CPU_FLAG_MMX|AV_CPU_FLAG_CMOV },
223  { "MMXEXT", "mmxext", AV_CPU_FLAG_MMXEXT },
224  { "3DNOW", "3dnow", AV_CPU_FLAG_3DNOW },
225  { "3DNOWEXT", "3dnowext", AV_CPU_FLAG_3DNOWEXT },
226  { "SSE", "sse", AV_CPU_FLAG_SSE },
227  { "SSE2", "sse2", AV_CPU_FLAG_SSE2|AV_CPU_FLAG_SSE2SLOW },
228  { "SSE3", "sse3", AV_CPU_FLAG_SSE3|AV_CPU_FLAG_SSE3SLOW },
229  { "SSSE3", "ssse3", AV_CPU_FLAG_SSSE3|AV_CPU_FLAG_ATOM },
230  { "SSE4.1", "sse4", AV_CPU_FLAG_SSE4 },
231  { "SSE4.2", "sse42", AV_CPU_FLAG_SSE42 },
232  { "AES-NI", "aesni", AV_CPU_FLAG_AESNI },
233  { "AVX", "avx", AV_CPU_FLAG_AVX },
234  { "XOP", "xop", AV_CPU_FLAG_XOP },
235  { "FMA3", "fma3", AV_CPU_FLAG_FMA3 },
236  { "FMA4", "fma4", AV_CPU_FLAG_FMA4 },
237  { "AVX2", "avx2", AV_CPU_FLAG_AVX2 },
238  { "AVX-512", "avx512", AV_CPU_FLAG_AVX512 },
239 #elif ARCH_LOONGARCH
240  { "LSX", "lsx", AV_CPU_FLAG_LSX },
241  { "LASX", "lasx", AV_CPU_FLAG_LASX },
242 #endif
243  { NULL }
244 };
245 
246 typedef struct CheckasmFuncVersion {
248  void *func;
249  int ok;
250  int cpu;
253 
254 /* Binary search tree node */
255 typedef struct CheckasmFunc {
256  struct CheckasmFunc *child[2];
258  uint8_t color; /* 0 = red, 1 = black */
259  char name[1];
260 } CheckasmFunc;
261 
262 /* Internal state */
263 static struct {
267  const char *current_test_name;
268  const char *bench_pattern;
272 
273  /* perf */
274  int nop_time;
275  int sysfd;
276 
277  int cpu_flag;
278  const char *cpu_flag_name;
279  const char *test_name;
280  int verbose;
281 } state;
282 
283 /* PRNG state */
285 
286 /* float compare support code */
287 static int is_negative(union av_intfloat32 u)
288 {
289  return u.i >> 31;
290 }
291 
292 int float_near_ulp(float a, float b, unsigned max_ulp)
293 {
294  union av_intfloat32 x, y;
295 
296  x.f = a;
297  y.f = b;
298 
299  if (is_negative(x) != is_negative(y)) {
300  // handle -0.0 == +0.0
301  return a == b;
302  }
303 
304  if (llabs((int64_t)x.i - y.i) <= max_ulp)
305  return 1;
306 
307  return 0;
308 }
309 
310 int float_near_ulp_array(const float *a, const float *b, unsigned max_ulp,
311  unsigned len)
312 {
313  unsigned i;
314 
315  for (i = 0; i < len; i++) {
316  if (!float_near_ulp(a[i], b[i], max_ulp))
317  return 0;
318  }
319  return 1;
320 }
321 
322 int float_near_abs_eps(float a, float b, float eps)
323 {
324  float abs_diff = fabsf(a - b);
325  if (abs_diff < eps)
326  return 1;
327 
328  fprintf(stderr, "test failed comparing %g with %g (abs diff=%g with EPS=%g)\n", a, b, abs_diff, eps);
329 
330  return 0;
331 }
332 
333 int float_near_abs_eps_array(const float *a, const float *b, float eps,
334  unsigned len)
335 {
336  unsigned i;
337 
338  for (i = 0; i < len; i++) {
339  if (!float_near_abs_eps(a[i], b[i], eps))
340  return 0;
341  }
342  return 1;
343 }
344 
345 int float_near_abs_eps_ulp(float a, float b, float eps, unsigned max_ulp)
346 {
347  return float_near_ulp(a, b, max_ulp) || float_near_abs_eps(a, b, eps);
348 }
349 
350 int float_near_abs_eps_array_ulp(const float *a, const float *b, float eps,
351  unsigned max_ulp, unsigned len)
352 {
353  unsigned i;
354 
355  for (i = 0; i < len; i++) {
356  if (!float_near_abs_eps_ulp(a[i], b[i], eps, max_ulp))
357  return 0;
358  }
359  return 1;
360 }
361 
362 int double_near_abs_eps(double a, double b, double eps)
363 {
364  double abs_diff = fabs(a - b);
365 
366  return abs_diff < eps;
367 }
368 
369 int double_near_abs_eps_array(const double *a, const double *b, double eps,
370  unsigned len)
371 {
372  unsigned i;
373 
374  for (i = 0; i < len; i++) {
375  if (!double_near_abs_eps(a[i], b[i], eps))
376  return 0;
377  }
378  return 1;
379 }
380 
381 /* Print colored text to stderr if the terminal supports it */
382 static void color_printf(int color, const char *fmt, ...)
383 {
384  static int use_color = -1;
385  va_list arg;
386 
387 #if HAVE_SETCONSOLETEXTATTRIBUTE && HAVE_GETSTDHANDLE
388  static HANDLE con;
389  static WORD org_attributes;
390 
391  if (use_color < 0) {
392  CONSOLE_SCREEN_BUFFER_INFO con_info;
393  con = GetStdHandle(STD_ERROR_HANDLE);
394  if (con && con != INVALID_HANDLE_VALUE && GetConsoleScreenBufferInfo(con, &con_info)) {
395  org_attributes = con_info.wAttributes;
396  use_color = 1;
397  } else
398  use_color = 0;
399  }
400  if (use_color)
401  SetConsoleTextAttribute(con, (org_attributes & 0xfff0) | (color & 0x0f));
402 #else
403  if (use_color < 0) {
404  const char *term = getenv("TERM");
405  use_color = term && strcmp(term, "dumb") && isatty(2);
406  }
407  if (use_color)
408  fprintf(stderr, "\x1b[%d;3%dm", (color & 0x08) >> 3, color & 0x07);
409 #endif
410 
411  va_start(arg, fmt);
412  vfprintf(stderr, fmt, arg);
413  va_end(arg);
414 
415  if (use_color) {
416 #if HAVE_SETCONSOLETEXTATTRIBUTE && HAVE_GETSTDHANDLE
417  SetConsoleTextAttribute(con, org_attributes);
418 #else
419  fprintf(stderr, "\x1b[0m");
420 #endif
421  }
422 }
423 
424 /* Deallocate a tree */
426 {
427  if (f) {
428  CheckasmFuncVersion *v = f->versions.next;
429  while (v) {
430  CheckasmFuncVersion *next = v->next;
431  free(v);
432  v = next;
433  }
434 
435  destroy_func_tree(f->child[0]);
436  destroy_func_tree(f->child[1]);
437  free(f);
438  }
439 }
440 
441 /* Allocate a zero-initialized block, clean up and exit on failure */
442 static void *checkasm_malloc(size_t size)
443 {
444  void *ptr = calloc(1, size);
445  if (!ptr) {
446  fprintf(stderr, "checkasm: malloc failed\n");
447  destroy_func_tree(state.funcs);
448  exit(1);
449  }
450  return ptr;
451 }
452 
453 /* Get the suffix of the specified cpu flag */
454 static const char *cpu_suffix(int cpu)
455 {
456  int i = FF_ARRAY_ELEMS(cpus);
457 
458  while (--i >= 0)
459  if (cpu & cpus[i].flag)
460  return cpus[i].suffix;
461 
462  return "c";
463 }
464 
465 static int cmp_nop(const void *a, const void *b)
466 {
467  return *(const uint16_t*)a - *(const uint16_t*)b;
468 }
469 
470 /* Measure the overhead of the timing code (in decicycles) */
471 static int measure_nop_time(void)
472 {
473  uint16_t nops[10000];
474  int i, nop_sum = 0;
475  av_unused const int sysfd = state.sysfd;
476 
477  uint64_t t = 0;
478  for (i = 0; i < 10000; i++) {
479  PERF_START(t);
480  PERF_STOP(t);
481  nops[i] = t;
482  }
483 
484  qsort(nops, 10000, sizeof(uint16_t), cmp_nop);
485  for (i = 2500; i < 7500; i++)
486  nop_sum += nops[i];
487 
488  return nop_sum / 500;
489 }
490 
491 /* Print benchmark results */
493 {
494  if (f) {
495  print_benchs(f->child[0]);
496 
497  /* Only print functions with at least one assembly version */
498  if (f->versions.cpu || f->versions.next) {
499  CheckasmFuncVersion *v = &f->versions;
500  do {
501  CheckasmPerf *p = &v->perf;
502  if (p->iterations) {
503  int decicycles = (10*p->cycles/p->iterations - state.nop_time) / 4;
504  printf("%s_%s: %d.%d\n", f->name, cpu_suffix(v->cpu), decicycles/10, decicycles%10);
505  }
506  } while ((v = v->next));
507  }
508 
509  print_benchs(f->child[1]);
510  }
511 }
512 
513 /* ASCIIbetical sort except preserving natural order for numbers */
514 static int cmp_func_names(const char *a, const char *b)
515 {
516  const char *start = a;
517  int ascii_diff, digit_diff;
518 
519  for (; !(ascii_diff = *(const unsigned char*)a - *(const unsigned char*)b) && *a; a++, b++);
520  for (; av_isdigit(*a) && av_isdigit(*b); a++, b++);
521 
522  if (a > start && av_isdigit(a[-1]) && (digit_diff = av_isdigit(*a) - av_isdigit(*b)))
523  return digit_diff;
524 
525  return ascii_diff;
526 }
527 
528 /* Perform a tree rotation in the specified direction and return the new root */
530 {
531  CheckasmFunc *r = f->child[dir^1];
532  f->child[dir^1] = r->child[dir];
533  r->child[dir] = f;
534  r->color = f->color;
535  f->color = 0;
536  return r;
537 }
538 
539 #define is_red(f) ((f) && !(f)->color)
540 
541 /* Balance a left-leaning red-black tree at the specified node */
542 static void balance_tree(CheckasmFunc **root)
543 {
544  CheckasmFunc *f = *root;
545 
546  if (is_red(f->child[0]) && is_red(f->child[1])) {
547  f->color ^= 1;
548  f->child[0]->color = f->child[1]->color = 1;
549  }
550 
551  if (!is_red(f->child[0]) && is_red(f->child[1]))
552  *root = rotate_tree(f, 0); /* Rotate left */
553  else if (is_red(f->child[0]) && is_red(f->child[0]->child[0]))
554  *root = rotate_tree(f, 1); /* Rotate right */
555 }
556 
557 /* Get a node with the specified name, creating it if it doesn't exist */
558 static CheckasmFunc *get_func(CheckasmFunc **root, const char *name)
559 {
560  CheckasmFunc *f = *root;
561 
562  if (f) {
563  /* Search the tree for a matching node */
564  int cmp = cmp_func_names(name, f->name);
565  if (cmp) {
566  f = get_func(&f->child[cmp > 0], name);
567 
568  /* Rebalance the tree on the way up if a new node was inserted */
569  if (!f->versions.func)
570  balance_tree(root);
571  }
572  } else {
573  /* Allocate and insert a new node into the tree */
574  int name_length = strlen(name);
575  f = *root = checkasm_malloc(sizeof(CheckasmFunc) + name_length);
576  memcpy(f->name, name, name_length + 1);
577  }
578 
579  return f;
580 }
581 
582 /* Perform tests and benchmarks for the specified cpu flag if supported by the host */
583 static void check_cpu_flag(const char *name, int flag)
584 {
585  int old_cpu_flag = state.cpu_flag;
586 
587  flag |= old_cpu_flag;
588  av_force_cpu_flags(-1);
589  state.cpu_flag = flag & av_get_cpu_flags();
590  av_force_cpu_flags(state.cpu_flag);
591 
592  if (!flag || state.cpu_flag != old_cpu_flag) {
593  int i;
594 
595  state.cpu_flag_name = name;
596  for (i = 0; tests[i].func; i++) {
597  if (state.test_name && strcmp(tests[i].name, state.test_name))
598  continue;
599  state.current_test_name = tests[i].name;
600  tests[i].func();
601  }
602  }
603 }
604 
605 /* Print the name of the current CPU flag, but only do it once */
606 static void print_cpu_name(void)
607 {
608  if (state.cpu_flag_name) {
609  color_printf(COLOR_YELLOW, "%s:\n", state.cpu_flag_name);
610  state.cpu_flag_name = NULL;
611  }
612 }
613 
614 #if CONFIG_LINUX_PERF
615 static int bench_init_linux(void)
616 {
617  struct perf_event_attr attr = {
618  .type = PERF_TYPE_HARDWARE,
619  .size = sizeof(struct perf_event_attr),
620  .config = PERF_COUNT_HW_CPU_CYCLES,
621  .disabled = 1, // start counting only on demand
622  .exclude_kernel = 1,
623  .exclude_hv = 1,
624  };
625 
626  printf("benchmarking with Linux Perf Monitoring API\n");
627 
628  state.sysfd = syscall(__NR_perf_event_open, &attr, 0, -1, -1, 0);
629  if (state.sysfd == -1) {
630  perror("syscall");
631  return -1;
632  }
633  return 0;
634 }
635 #elif CONFIG_MACOS_KPERF
636 static int bench_init_kperf(void)
637 {
638  ff_kperf_init();
639  return 0;
640 }
641 #else
642 static int bench_init_ffmpeg(void)
643 {
644 #ifdef AV_READ_TIME
645  printf("benchmarking with native FFmpeg timers\n");
646  return 0;
647 #else
648  fprintf(stderr, "checkasm: --bench is not supported on your system\n");
649  return -1;
650 #endif
651 }
652 #endif
653 
654 static int bench_init(void)
655 {
656 #if CONFIG_LINUX_PERF
657  int ret = bench_init_linux();
658 #elif CONFIG_MACOS_KPERF
659  int ret = bench_init_kperf();
660 #else
661  int ret = bench_init_ffmpeg();
662 #endif
663  if (ret < 0)
664  return ret;
665 
666  state.nop_time = measure_nop_time();
667  printf("nop: %d.%d\n", state.nop_time/10, state.nop_time%10);
668  return 0;
669 }
670 
671 static void bench_uninit(void)
672 {
673 #if CONFIG_LINUX_PERF
674  if (state.sysfd > 0)
675  close(state.sysfd);
676 #endif
677 }
678 
679 int main(int argc, char *argv[])
680 {
681  unsigned int seed = av_get_random_seed();
682  int i, ret = 0;
683 
684 #if ARCH_ARM && HAVE_ARMV5TE_EXTERNAL
686  checkasm_checked_call = checkasm_checked_call_vfp;
687 #endif
688 
689  if (!tests[0].func || !cpus[0].flag) {
690  fprintf(stderr, "checkasm: no tests to perform\n");
691  return 0;
692  }
693 
694  while (argc > 1) {
695  if (!strncmp(argv[1], "--bench", 7)) {
696  if (bench_init() < 0)
697  return 1;
698  if (argv[1][7] == '=') {
699  state.bench_pattern = argv[1] + 8;
700  state.bench_pattern_len = strlen(state.bench_pattern);
701  } else
702  state.bench_pattern = "";
703  } else if (!strncmp(argv[1], "--test=", 7)) {
704  state.test_name = argv[1] + 7;
705  } else if (!strcmp(argv[1], "--verbose") || !strcmp(argv[1], "-v")) {
706  state.verbose = 1;
707  } else {
708  seed = strtoul(argv[1], NULL, 10);
709  }
710 
711  argc--;
712  argv++;
713  }
714 
715  fprintf(stderr, "checkasm: using random seed %u\n", seed);
717 
718  check_cpu_flag(NULL, 0);
719  for (i = 0; cpus[i].flag; i++)
721 
722  if (state.num_failed) {
723  fprintf(stderr, "checkasm: %d of %d tests have failed\n", state.num_failed, state.num_checked);
724  ret = 1;
725  } else {
726  fprintf(stderr, "checkasm: all %d tests passed\n", state.num_checked);
727  if (state.bench_pattern) {
728  print_benchs(state.funcs);
729  }
730  }
731 
732  destroy_func_tree(state.funcs);
733  bench_uninit();
734  return ret;
735 }
736 
737 /* Decide whether or not the specified function needs to be tested and
738  * allocate/initialize data structures if needed. Returns a pointer to a
739  * reference function if the function should be tested, otherwise NULL */
740 void *checkasm_check_func(void *func, const char *name, ...)
741 {
742  char name_buf[256];
743  void *ref = func;
745  int name_length;
746  va_list arg;
747 
748  va_start(arg, name);
749  name_length = vsnprintf(name_buf, sizeof(name_buf), name, arg);
750  va_end(arg);
751 
752  if (!func || name_length <= 0 || name_length >= sizeof(name_buf))
753  return NULL;
754 
755  state.current_func = get_func(&state.funcs, name_buf);
756  state.funcs->color = 1;
757  v = &state.current_func->versions;
758 
759  if (v->func) {
760  CheckasmFuncVersion *prev;
761  do {
762  /* Only test functions that haven't already been tested */
763  if (v->func == func)
764  return NULL;
765 
766  if (v->ok)
767  ref = v->func;
768 
769  prev = v;
770  } while ((v = v->next));
771 
772  v = prev->next = checkasm_malloc(sizeof(CheckasmFuncVersion));
773  }
774 
775  v->func = func;
776  v->ok = 1;
777  v->cpu = state.cpu_flag;
778  state.current_func_ver = v;
779 
780  if (state.cpu_flag)
781  state.num_checked++;
782 
783  return ref;
784 }
785 
786 /* Decide whether or not the current function needs to be benchmarked */
788 {
789  return !state.num_failed && state.bench_pattern &&
790  !strncmp(state.current_func->name, state.bench_pattern, state.bench_pattern_len);
791 }
792 
793 /* Indicate that the current test has failed */
794 void checkasm_fail_func(const char *msg, ...)
795 {
796  if (state.current_func_ver->cpu && state.current_func_ver->ok) {
797  va_list arg;
798 
799  print_cpu_name();
800  fprintf(stderr, " %s_%s (", state.current_func->name, cpu_suffix(state.current_func_ver->cpu));
801  va_start(arg, msg);
802  vfprintf(stderr, msg, arg);
803  va_end(arg);
804  fprintf(stderr, ")\n");
805 
806  state.current_func_ver->ok = 0;
807  state.num_failed++;
808  }
809 }
810 
811 /* Get the benchmark context of the current function */
813 {
814  CheckasmPerf *perf = &state.current_func_ver->perf;
815  memset(perf, 0, sizeof(*perf));
816  perf->sysfd = state.sysfd;
817  return perf;
818 }
819 
820 /* Print the outcome of all tests performed since the last time this function was called */
821 void checkasm_report(const char *name, ...)
822 {
823  static int prev_checked, prev_failed, max_length;
824 
825  if (state.num_checked > prev_checked) {
826  int pad_length = max_length + 4;
827  va_list arg;
828 
829  print_cpu_name();
830  pad_length -= fprintf(stderr, " - %s.", state.current_test_name);
831  va_start(arg, name);
832  pad_length -= vfprintf(stderr, name, arg);
833  va_end(arg);
834  fprintf(stderr, "%*c", FFMAX(pad_length, 0) + 2, '[');
835 
836  if (state.num_failed == prev_failed)
837  color_printf(COLOR_GREEN, "OK");
838  else
839  color_printf(COLOR_RED, "FAILED");
840  fprintf(stderr, "]\n");
841 
842  prev_checked = state.num_checked;
843  prev_failed = state.num_failed;
844  } else if (!state.cpu_flag) {
845  /* Calculate the amount of padding required to make the output vertically aligned */
846  int length = strlen(state.current_test_name);
847  va_list arg;
848 
849  va_start(arg, name);
850  length += vsnprintf(NULL, 0, name, arg);
851  va_end(arg);
852 
853  if (length > max_length)
854  max_length = length;
855  }
856 }
857 
858 #define DEF_CHECKASM_CHECK_FUNC(type, fmt) \
859 int checkasm_check_##type(const char *const file, const int line, \
860  const type *buf1, ptrdiff_t stride1, \
861  const type *buf2, ptrdiff_t stride2, \
862  const int w, int h, const char *const name) \
863 { \
864  int y = 0; \
865  stride1 /= sizeof(*buf1); \
866  stride2 /= sizeof(*buf2); \
867  for (y = 0; y < h; y++) \
868  if (memcmp(&buf1[y*stride1], &buf2[y*stride2], w*sizeof(*buf1))) \
869  break; \
870  if (y == h) \
871  return 0; \
872  checkasm_fail_func("%s:%d", file, line); \
873  if (!state.verbose) \
874  return 1; \
875  fprintf(stderr, "%s:\n", name); \
876  while (h--) { \
877  for (int x = 0; x < w; x++) \
878  fprintf(stderr, " " fmt, buf1[x]); \
879  fprintf(stderr, " "); \
880  for (int x = 0; x < w; x++) \
881  fprintf(stderr, " " fmt, buf2[x]); \
882  fprintf(stderr, " "); \
883  for (int x = 0; x < w; x++) \
884  fprintf(stderr, "%c", buf1[x] != buf2[x] ? 'x' : '.'); \
885  buf1 += stride1; \
886  buf2 += stride2; \
887  fprintf(stderr, "\n"); \
888  } \
889  return 1; \
890 }
891 
892 DEF_CHECKASM_CHECK_FUNC(uint8_t, "%02x")
893 DEF_CHECKASM_CHECK_FUNC(uint16_t, "%04x")
894 DEF_CHECKASM_CHECK_FUNC(int16_t, "%6d")
checkasm_check_nlmeans
void checkasm_check_nlmeans(void)
Definition: vf_nlmeans.c:31
AV_CPU_FLAG_VFP
#define AV_CPU_FLAG_VFP
Definition: cpu.h:66
bench_pattern_len
int bench_pattern_len
Definition: checkasm.c:269
av_force_cpu_flags
void av_force_cpu_flags(int arg)
Disables cpu detection and forces the specified flags.
Definition: cpu.c:70
checkasm_check_vp8dsp
void checkasm_check_vp8dsp(void)
Definition: vp8dsp.c:508
checkasm_check_blockdsp
void checkasm_check_blockdsp(void)
Definition: blockdsp.c:55
AV_CPU_FLAG_SSE3
#define AV_CPU_FLAG_SSE3
Prescott SSE3 functions.
Definition: cpu.h:38
destroy_func_tree
static void destroy_func_tree(CheckasmFunc *f)
Definition: checkasm.c:425
r
const char * r
Definition: vf_curves.c:116
checkasm_check_videodsp
void checkasm_check_videodsp(void)
Definition: videodsp.c:81
cmp_nop
static int cmp_nop(const void *a, const void *b)
Definition: checkasm.c:465
checkasm_check_vf_eq
void checkasm_check_vf_eq(void)
Definition: vf_eq.c:76
COLOR_RED
#define COLOR_RED
Definition: checkasm.c:51
checkasm_lfg
AVLFG checkasm_lfg
Definition: checkasm.c:284
color
Definition: vf_paletteuse.c:599
av_lfg_init
av_cold void av_lfg_init(AVLFG *c, unsigned int seed)
Definition: lfg.c:32
u
#define u(width, name, range_min, range_max)
Definition: cbs_h2645.c:264
checkasm_check_alacdsp
void checkasm_check_alacdsp(void)
Definition: alacdsp.c:116
AV_CPU_FLAG_LSX
#define AV_CPU_FLAG_LSX
Definition: cpu.h:77
checkasm_check_v210dec
void checkasm_check_v210dec(void)
Definition: v210dec.c:47
float_near_abs_eps_array
int float_near_abs_eps_array(const float *a, const float *b, float eps, unsigned len)
Definition: checkasm.c:333
AV_CPU_FLAG_SSE3SLOW
#define AV_CPU_FLAG_SSE3SLOW
SSE3 supported, but usually not faster.
Definition: cpu.h:39
CheckasmFunc
Definition: checkasm.c:255
name
const char * name
Definition: checkasm.c:72
bench_pattern
const char * bench_pattern
Definition: checkasm.c:268
av_unused
#define av_unused
Definition: attributes.h:131
checkasm_check_hevc_idct
void checkasm_check_hevc_idct(void)
Definition: hevc_idct.c:87
checkasm_check_sw_scale
void checkasm_check_sw_scale(void)
Definition: sw_scale.c:238
CheckasmFunc::child
struct CheckasmFunc * child[2]
Definition: checkasm.c:256
checkasm_check_afir
void checkasm_check_afir(void)
Definition: af_afir.c:80
print_cpu_name
static void print_cpu_name(void)
Definition: checkasm.c:606
AV_CPU_FLAG_3DNOW
#define AV_CPU_FLAG_3DNOW
AMD 3DNOW.
Definition: cpu.h:32
av_intfloat32::i
uint32_t i
Definition: intfloat.h:28
float_near_abs_eps
int float_near_abs_eps(float a, float b, float eps)
Definition: checkasm.c:322
b
#define b
Definition: input.c:40
checkasm_check_aacpsdsp
void checkasm_check_aacpsdsp(void)
Definition: aacpsdsp.c:234
bench_uninit
static void bench_uninit(void)
Definition: checkasm.c:671
CheckasmFuncVersion::cpu
int cpu
Definition: checkasm.c:250
cpu_flag
int cpu_flag
Definition: checkasm.c:277
FFMAX
#define FFMAX(a, b)
Definition: macros.h:47
av_get_cpu_flags
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
Definition: cpu.c:98
cpu_suffix
static const char * cpu_suffix(int cpu)
Definition: checkasm.c:454
CheckasmPerf::sysfd
int sysfd
Definition: checkasm.h:216
checkasm_check_llviddspenc
void checkasm_check_llviddspenc(void)
Definition: llviddspenc.c:104
intfloat.h
checkasm_check_h264dsp
void checkasm_check_h264dsp(void)
Definition: h264dsp.c:442
tf_sess_config.config
config
Definition: tf_sess_config.py:33
color_printf
static void color_printf(int color, const char *fmt,...)
Definition: checkasm.c:382
av_get_random_seed
uint32_t av_get_random_seed(void)
Get a seed to use in conjunction with random functions.
Definition: random_seed.c:120
main
int main(int argc, char *argv[])
Definition: checkasm.c:679
AV_CPU_FLAG_SSSE3
#define AV_CPU_FLAG_SSSE3
Conroe SSSE3 functions.
Definition: cpu.h:41
double_near_abs_eps
int double_near_abs_eps(double a, double b, double eps)
Definition: checkasm.c:362
CheckasmPerf
Definition: checkasm.h:215
current_test_name
const char * current_test_name
Definition: checkasm.c:267
PERF_START
#define PERF_START(t)
Definition: checkasm.h:269
rotate_tree
static CheckasmFunc * rotate_tree(CheckasmFunc *f, int dir)
Definition: checkasm.c:529
AV_CPU_FLAG_XOP
#define AV_CPU_FLAG_XOP
Bulldozer XOP functions.
Definition: cpu.h:49
checkasm_check_vp9dsp
void checkasm_check_vp9dsp(void)
Definition: vp9dsp.c:626
checkasm.h
checkasm_check_vf_threshold
void checkasm_check_vf_threshold(void)
Definition: vf_threshold.c:79
checkasm_check_vf_gblur
void checkasm_check_vf_gblur(void)
Definition: vf_gblur.c:81
AV_CPU_FLAG_3DNOWEXT
#define AV_CPU_FLAG_3DNOWEXT
AMD 3DNowExt.
Definition: cpu.h:37
float_near_abs_eps_ulp
int float_near_abs_eps_ulp(float a, float b, float eps, unsigned max_ulp)
Definition: checkasm.c:345
AV_CPU_FLAG_VSX
#define AV_CPU_FLAG_VSX
ISA 2.06.
Definition: cpu.h:60
fabsf
static __device__ float fabsf(float a)
Definition: cuda_runtime.h:181
num_failed
int num_failed
Definition: checkasm.c:271
checkasm_check_float_dsp
void checkasm_check_float_dsp(void)
Definition: float_dsp.c:282
AV_CPU_FLAG_AVX512
#define AV_CPU_FLAG_AVX512
AVX-512 functions: requires OS support even if YMM/ZMM registers aren't used.
Definition: cpu.h:56
bench_init
static int bench_init(void)
Definition: checkasm.c:654
checkasm_check_pixblockdsp
void checkasm_check_pixblockdsp(void)
Definition: pixblockdsp.c:82
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen.c:29
CheckasmFuncVersion
Definition: checkasm.c:246
COLOR_YELLOW
#define COLOR_YELLOW
Definition: checkasm.c:53
nop_time
int nop_time
Definition: checkasm.c:274
CheckasmFuncVersion::perf
CheckasmPerf perf
Definition: checkasm.c:251
checkasm_report
void checkasm_report(const char *name,...)
Definition: checkasm.c:821
get_func
static CheckasmFunc * get_func(CheckasmFunc **root, const char *name)
Definition: checkasm.c:558
checkasm_fail_func
void checkasm_fail_func(const char *msg,...)
Definition: checkasm.c:794
checkasm_check_sw_rgb
void checkasm_check_sw_rgb(void)
Definition: sw_rgb.c:182
checkasm_check_hevc_sao
void checkasm_check_hevc_sao(void)
Definition: hevc_sao.c:132
num_checked
int num_checked
Definition: checkasm.c:270
AV_CPU_FLAG_ARMV6
#define AV_CPU_FLAG_ARMV6
Definition: cpu.h:64
AV_CPU_FLAG_SSE4
#define AV_CPU_FLAG_SSE4
Penryn SSE4.1 functions.
Definition: cpu.h:44
checkasm_check_hevc_pel
void checkasm_check_hevc_pel(void)
Definition: hevc_pel.c:534
cmp
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...
Definition: motion_est.c:260
f
#define f(width, name)
Definition: cbs_vp9.c:255
CheckasmPerf::iterations
int iterations
Definition: checkasm.h:218
CheckasmFuncVersion::ok
int ok
Definition: checkasm.c:249
arg
const char * arg
Definition: jacosubdec.c:67
func
void(* func)(void)
Definition: checkasm.c:73
fabs
static __device__ float fabs(float a)
Definition: cuda_runtime.h:182
NULL
#define NULL
Definition: coverity.c:32
measure_nop_time
static int measure_nop_time(void)
Definition: checkasm.c:471
double_near_abs_eps_array
int double_near_abs_eps_array(const double *a, const double *b, double eps, unsigned len)
Definition: checkasm.c:369
AV_CPU_FLAG_LASX
#define AV_CPU_FLAG_LASX
Definition: cpu.h:78
checkasm_check_fmtconvert
void checkasm_check_fmtconvert(void)
Definition: fmtconvert.c:46
AV_CPU_FLAG_MSA
#define AV_CPU_FLAG_MSA
Definition: cpu.h:74
COLOR_GREEN
#define COLOR_GREEN
Definition: checkasm.c:52
cpu.h
av_intfloat32
Definition: intfloat.h:27
cpus
static const struct @319 cpus[]
AV_CPU_FLAG_CMOV
#define AV_CPU_FLAG_CMOV
supports cmov instruction
Definition: cpu.h:51
seed
static unsigned int seed
Definition: videogen.c:78
AV_CPU_FLAG_ALTIVEC
#define AV_CPU_FLAG_ALTIVEC
standard
Definition: cpu.h:59
print_benchs
static void print_benchs(CheckasmFunc *f)
Definition: checkasm.c:492
current_func
CheckasmFunc * current_func
Definition: checkasm.c:265
AV_CPU_FLAG_SSE2
#define AV_CPU_FLAG_SSE2
PIV SSE2 functions.
Definition: cpu.h:34
CheckasmFunc::color
uint8_t color
Definition: checkasm.c:258
AVLFG
Context structure for the Lagged Fibonacci PRNG.
Definition: lfg.h:33
state
static struct @320 state
tests
static const struct @318 tests[]
AV_CPU_FLAG_AVX
#define AV_CPU_FLAG_AVX
AVX functions: requires OS support even if YMM registers aren't used.
Definition: cpu.h:47
AV_CPU_FLAG_FMA4
#define AV_CPU_FLAG_FMA4
Bulldozer FMA4 functions.
Definition: cpu.h:50
cpu.h
AV_CPU_FLAG_AVX2
#define AV_CPU_FLAG_AVX2
AVX2 functions: requires OS support even if YMM registers aren't used.
Definition: cpu.h:52
checkasm_check_llviddsp
void checkasm_check_llviddsp(void)
Definition: llviddsp.c:195
AV_CPU_FLAG_SSE2SLOW
#define AV_CPU_FLAG_SSE2SLOW
SSE2 supported, but usually not faster.
Definition: cpu.h:35
AV_CPU_FLAG_NEON
#define AV_CPU_FLAG_NEON
Definition: cpu.h:68
size
int size
Definition: twinvq_data.h:10344
DEF_CHECKASM_CHECK_FUNC
#define DEF_CHECKASM_CHECK_FUNC(type, fmt)
Definition: checkasm.c:858
printf
printf("static const uint8_t my_array[100] = {\n")
sysfd
int sysfd
Definition: checkasm.c:275
have_neon
#define have_neon(flags)
Definition: cpu.h:26
CheckasmFuncVersion::func
void * func
Definition: checkasm.c:248
checkasm_check_h264pred
void checkasm_check_h264pred(void)
Definition: h264pred.c:233
av_isdigit
static av_const int av_isdigit(int c)
Locale-independent conversion of ASCII isdigit.
Definition: avstring.h:211
AV_CPU_FLAG_FMA3
#define AV_CPU_FLAG_FMA3
Haswell FMA3 functions.
Definition: cpu.h:53
a
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
Definition: undefined.txt:41
ff_kperf_init
void ff_kperf_init(void)
Definition: macos_kperf.c:99
checkasm_check_huffyuvdsp
void checkasm_check_huffyuvdsp(void)
Definition: huffyuvdsp.c:67
float_near_abs_eps_array_ulp
int float_near_abs_eps_array_ulp(const float *a, const float *b, float eps, unsigned max_ulp, unsigned len)
Definition: checkasm.c:350
test_name
const char * test_name
Definition: checkasm.c:279
CheckasmPerf::cycles
uint64_t cycles
Definition: checkasm.h:217
checkasm_get_perf_context
CheckasmPerf * checkasm_get_perf_context(void)
Definition: checkasm.c:812
checkasm_check_fixed_dsp
void checkasm_check_fixed_dsp(void)
Definition: fixed_dsp.c:133
checkasm_check_colorspace
void checkasm_check_colorspace(void)
Definition: vf_colorspace.c:309
checkasm_check_utvideodsp
void checkasm_check_utvideodsp(void)
Definition: utvideodsp.c:91
is_negative
static int is_negative(union av_intfloat32 u)
Definition: checkasm.c:287
checkasm_check_audiodsp
void checkasm_check_audiodsp(void)
Definition: audiodsp.c:52
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:271
checkasm_check_flacdsp
void checkasm_check_flacdsp(void)
Definition: flacdsp.c:57
checkasm_check_func
void * checkasm_check_func(void *func, const char *name,...)
Definition: checkasm.c:740
AV_CPU_FLAG_SSE42
#define AV_CPU_FLAG_SSE42
Nehalem SSE4.2 functions.
Definition: cpu.h:45
CheckasmFuncVersion::next
struct CheckasmFuncVersion * next
Definition: checkasm.c:247
vsnprintf
#define vsnprintf
Definition: snprintf.h:36
common.h
use_color
static int use_color
Definition: log.c:121
checkasm_check_synth_filter
void checkasm_check_synth_filter(void)
Definition: synth_filter.c:46
cmp_func_names
static int cmp_func_names(const char *a, const char *b)
Definition: checkasm.c:514
AV_CPU_FLAG_ARMV8
#define AV_CPU_FLAG_ARMV8
Definition: cpu.h:69
len
int len
Definition: vorbis_enc_data.h:426
checkasm_check_g722dsp
void checkasm_check_g722dsp(void)
Definition: g722dsp.c:53
PERF_STOP
#define PERF_STOP(t)
Definition: checkasm.h:270
is_red
#define is_red(f)
Definition: checkasm.c:539
AV_CPU_FLAG_ATOM
#define AV_CPU_FLAG_ATOM
Atom processor, some SSSE3 instructions are slower.
Definition: cpu.h:43
have_vfp
#define have_vfp(flags)
Definition: cpu.h:27
checkasm_check_vf_hflip
void checkasm_check_vf_hflip(void)
Definition: vf_hflip.c:71
ret
ret
Definition: filter_design.txt:187
checkasm_check_blend
void checkasm_check_blend(void)
Definition: vf_blend.c:88
verbose
int verbose
Definition: checkasm.c:280
AV_CPU_FLAG_VFPV3
#define AV_CPU_FLAG_VFPV3
Definition: cpu.h:67
checkasm_check_bswapdsp
void checkasm_check_bswapdsp(void)
Definition: bswapdsp.c:60
AV_CPU_FLAG_ARMV5TE
#define AV_CPU_FLAG_ARMV5TE
Definition: cpu.h:63
AV_CPU_FLAG_MMX
#define AV_CPU_FLAG_MMX
standard MMX
Definition: cpu.h:29
suffix
const char * suffix
Definition: checkasm.c:200
checkasm_malloc
static void * checkasm_malloc(size_t size)
Definition: checkasm.c:442
checkasm_check_h264qpel
void checkasm_check_h264qpel(void)
Definition: h264qpel.c:51
random_seed.h
AV_CPU_FLAG_AESNI
#define AV_CPU_FLAG_AESNI
Advanced Encryption Standard functions.
Definition: cpu.h:46
checkasm_bench_func
int checkasm_bench_func(void)
Definition: checkasm.c:787
dummy
int dummy
Definition: motion.c:65
AV_CPU_FLAG_POWER8
#define AV_CPU_FLAG_POWER8
ISA 2.07.
Definition: cpu.h:61
cpu_flag_name
const char * cpu_flag_name
Definition: checkasm.c:278
AV_CPU_FLAG_SSE
#define AV_CPU_FLAG_SSE
SSE functions.
Definition: cpu.h:33
ref
static int ref[MAX_W *MAX_W]
Definition: jpeg2000dwt.c:107
float_near_ulp_array
int float_near_ulp_array(const float *a, const float *b, unsigned max_ulp, unsigned len)
Definition: checkasm.c:310
AV_CPU_FLAG_MMXEXT
#define AV_CPU_FLAG_MMXEXT
SSE integer functions or AMD MMX ext.
Definition: cpu.h:30
checkasm_check_av_tx
void checkasm_check_av_tx(void)
Definition: av_tx.c:100
av_intfloat32::f
float f
Definition: intfloat.h:29
flag
int flag
Definition: checkasm.c:201
checkasm_check_v210enc
void checkasm_check_v210enc(void)
Definition: v210enc.c:82
checkasm_check_sbrdsp
void checkasm_check_sbrdsp(void)
Definition: sbrdsp.c:254
AV_CPU_FLAG_VFP_VM
#define AV_CPU_FLAG_VFP_VM
VFPv2 vector mode, deprecated in ARMv7-A and unavailable in various CPUs implementations.
Definition: cpu.h:70
AV_CPU_FLAG_MMI
#define AV_CPU_FLAG_MMI
Definition: cpu.h:73
checkasm_check_jpeg2000dsp
void checkasm_check_jpeg2000dsp(void)
Definition: jpeg2000dsp.c:92
d
d
Definition: ffmpeg_filter.c:153
checkasm_check_hevc_add_res
void checkasm_check_hevc_add_res(void)
Definition: hevc_add_res.c:86
int32_t
int32_t
Definition: audioconvert.c:56
float_near_ulp
int float_near_ulp(float a, float b, unsigned max_ulp)
Definition: checkasm.c:292
current_func_ver
CheckasmFuncVersion * current_func_ver
Definition: checkasm.c:266
check_cpu_flag
static void check_cpu_flag(const char *name, int flag)
Definition: checkasm.c:583
bench_init_ffmpeg
static int bench_init_ffmpeg(void)
Definition: checkasm.c:642
CheckasmFunc::versions
CheckasmFuncVersion versions
Definition: checkasm.c:257
isatty
#define isatty(fd)
Definition: checkasm.c:61
CheckasmFunc::name
char name[1]
Definition: checkasm.c:259
checkasm_check_exrdsp
void checkasm_check_exrdsp(void)
Definition: exrdsp.c:77
balance_tree
static void balance_tree(CheckasmFunc **root)
Definition: checkasm.c:542
AV_CPU_FLAG_ARMV6T2
#define AV_CPU_FLAG_ARMV6T2
Definition: cpu.h:65
funcs
CheckasmFunc * funcs
Definition: checkasm.c:264
checkasm_check_opusdsp
void checkasm_check_opusdsp(void)
Definition: opusdsp.c:85