source: trunk/platforms/caba-ring-ccxcachev4_memcachev4-mips32el/soft/define.h @ 165

Last change on this file since 165 was 165, checked in by kane, 13 years ago

In vci_cc_xcache_wrapper : (1) fix compilation directive, (2) replace std::queue by generic_fifo, (3) delete vci_cc_xcache_wrapper_v4_cmp

File size: 1.3 KB
RevLine 
[134]1#ifndef define_h
2#define define_h
3
4// List of benchmark
[165]5#define BENCHMARK_NB_THREAD                   8
[140]6
[134]7#define BENCHMARK_DHRYSTONE                   0
[140]8#define BENCHMARK_SORT_ALL                    0
9#define BENCHMARK_SORT_BUBBLE                 0
10#define BENCHMARK_SORT_INSERTION              0
11#define BENCHMARK_SORT_SELECTION              0
[144]12#define BENCHMARK_SORT_SHELL                  0
[134]13#define BENCHMARK_MATRIX_MULTIPLICATION_ST    0
[144]14#define BENCHMARK_MATRIX_MULTIPLICATION_MT    1
[140]15#define BENCHMARK_SELF_CODE_MODIFYING         0
[134]16
17#define VERBOSE_SORT                          0
18
[140]19#define VERIFICATION_SORT                     0
20#define VERIFICATION_MATRIX_MULTIPLICATION    0
21
[134]22// Benchmark size
23#define DHRYSTONE_NB_RUNS                     5000
[140]24#define SORT_ALL_SIZE                         1000
25#define SORT_BUBBLE_SIZE                      1500
26#define SORT_INSERTION_SIZE                   2300
27#define SORT_SELECTION_SIZE                   1600
[143]28#define SORT_SHELL_SIZE                       5000
[134]29#define MATRIX_MULTIPLICATION_ST_SIZE         50
[140]30#define MATRIX_MULTIPLICATION_MT_SIZE         96
[134]31#define MATRIX_MULTIPLICATION_MT_LOCK_BY_LINE 1
[140]32#define SELF_CODE_MODIFYING_NB_RUNS           10
[134]33
34// Timer configuration
35#define TIMER_INTERRUPT                       0
36#define TIMER_INTERRUPT_PERIOD                100000
37
38#endif // define_h
Note: See TracBrowser for help on using the repository browser.