add empty benchmark
[riscv-tests.git] / benchmarks / empty / empty_main.c
1 // See LICENSE for license details.
2
3 //**************************************************************************
4 // Median filter bencmark
5 //--------------------------------------------------------------------------
6 //
7 // This benchmark performs a 1D three element median filter. The
8 // input data (and reference data) should be generated using the
9 // median_gendata.pl perl script and dumped to a file named
10 // dataset1.h You should not change anything except the
11 // HOST_DEBUG and PREALLOCATE macros for your timing run.
12
13 #include "util.h"
14
15 //--------------------------------------------------------------------------
16 // Input/Reference Data
17
18 //--------------------------------------------------------------------------
19 // Main
20
21 int main( int argc, char* argv[] )
22 {
23 return 0;
24 }