-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSpecDataElemInt1992.py
33 lines (24 loc) · 954 Bytes
/
SpecDataElemInt1992.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from SpecDataElem1992 import *
class SpecDataElemInt1992(SpecDataElem1992):
"A class that holds spec int data for a given processor"
def __init__(self):
tests = ["008.espresso",
"022.li",
"023.eqntott",
"026.compress",
"072.sc",
"085.gcc"]
self.__tests = tests
attrMap = {"SPECint92" : "peakmean",
"SPECbase_int92" : "basemean"}
#attrMap = {"099 Base": "099_go",
# "124 Base": "124_m88ksim",
# "126 Base": "126_gcc",
# "129 Base": "129_compress",
# "130 Base": "130_li",
# "132 Base": "132_ijpeg",
# "134 Base": "134_perl",
# "147 Base": "147_vortex"}
SpecDataElem1992.__init__(self, tests=tests, attrMap=attrMap)
def tests(self):
return self.__tests