source: trunk/Softwares/SPECINT2000/src/include/workload.h @ 123

Last change on this file since 123 was 123, checked in by rosiere, 15 years ago

1) Fix performance
2) add auto generation to SPECINT2000
3) add reset in genMoore and genMealy

  • Property svn:keywords set to Id
File size: 313 bytes
Line 
1// $Id: workload.h 123 2009-06-08 20:43:30Z rosiere $
2
3#ifndef workload_h
4#define workload_h
5
6#include "benchmark.h"
7
8/*
9 * Array of function's pointer
10 */
11
12void (*WorkLoad[])() = 
13{ 
14        (void *) run_164_gzip
15};
16
17#define NB_WORKLOAD   (sizeof(WorkLoad)/sizeof(void *))
18
19#ifndef NB_THREAD_MAX
20        #error "NB_THREAD_MAX is undefined"
21#endif
22
23#endif workload_h
Note: See TracBrowser for help on using the repository browser.