Sanchayan Maity
2fcc51c2c1
While at it also add the libpthread static library amd m5op_x86 for matrix multiplication test code as well. Note that the splash2 benchmark code does not comply with gem5 coding guidelines. Academic guys never seem to follow 80 columns and no whitespace guideline :(.
14 lines
344 B
C
14 lines
344 B
C
#ifndef _GETPARAM_H_
|
|
#define _GETPARAM_H_
|
|
|
|
void initparam(string *defv);
|
|
string getparam(string name);
|
|
long getiparam(string name);
|
|
long getlparam(string name);
|
|
bool getbparam(string name);
|
|
double getdparam(string name);
|
|
long scanbind(string bvec[], string name);
|
|
bool matchname(string bind, string name);
|
|
string extrvalue(string arg);
|
|
|
|
#endif
|