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

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

1) Platforms : add new organization for test
2) Load_Store_Unit : add array to count nb_check in store_queue
3) Issue_queue and Core_Glue : rewrite the issue network
4) Special_Register_Unit : add reset value to register CID
5) Softwares : add multicontext test
6) Softwares : add SPECINT
7) Softwares : add MiBench?
7) Read_queue : inhib access for r0
8) Change Core_Glue (network) - dont yet support priority and load balancing scheme

  • Property svn:keywords set to Id
File size: 406 bytes
Line 
1// $Id: workload.h 117 2009-05-16 14:42:39Z 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        (void *) run_none,
16        (void *) run_none,
17        (void *) run_none,
18        (void *) run_none,
19        (void *) run_none,
20        (void *) run_none,
21        (void *) run_none
22};
23
24#define NB_WORKLOAD   (sizeof(WorkLoad)/sizeof(void *))
25#define NB_THREAD_MAX 8
26
27#endif //workload_h
Note: See TracBrowser for help on using the repository browser.