/* * Copyright (c) 2001 Matteo Frigo * Copyright (c) 2001 Massachusetts Institute of Technology * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ /* $Id: bench.h,v 1.15 2006-02-25 02:25:48 athena Exp $ */ /* benchmark program definitions */ #include "bench-user.h" extern double time_min; extern int time_repeat; extern void timer_init(double tmin, int repeat); extern void bench_fft8(const float *ri, const float *ii, float *ro, float *io, int is, int os); /* report functions */ extern void (*report)(const bench_problem *p, double *t, int st); void report_mflops(const bench_problem *p, double *t, int st); void report_time(const bench_problem *p, double *t, int st); void report_benchmark(const bench_problem *p, double *t, int st); void report_verbose(const bench_problem *p, double *t, int st); void report_can_do(const char *param); void report_info(const char *param); void report_info_all(void); extern int aligned_main(int argc, char *argv[]); extern int bench_main(int argc, char *argv[]); extern void speed(const char *param, int setup_only); extern void accuracy(const char *param, int rounds, int impulse_rounds); extern double mflops(const bench_problem *p, double t); extern double bench_drand(void); extern void bench_srand(int seed); extern bench_problem *problem_parse(const char *desc); extern void ovtpvt(const char *format, ...); extern void fftaccuracy(int n, bench_complex *a, bench_complex *ffta, int sign, double err[6]); extern void fftaccuracy_done(void); extern void caset(bench_complex *A, int n, bench_complex x); extern void aset(bench_real *A, int n, bench_real x);