Skip to content

Commit f9cb2d6

Browse files
author
Sunil Thaha
authored
Merge pull request #461 from sthaha/fix-chore-compose
chore(compose): add missing common dir
2 parents 5e69fe9 + 1963bb7 commit f9cb2d6

File tree

5 files changed

+202
-0
lines changed

5 files changed

+202
-0
lines changed
Lines changed: 198 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,198 @@
1+
##########
2+
# CPUS - used to lookup uarch and channels by family, model, and stepping
3+
# The model and stepping fields will be interpreted as regular expressions
4+
# An empty stepping field means 'any' stepping
5+
6+
##########
7+
# Intel Core CPUs
8+
##########
9+
# Haswell
10+
- core: HSW
11+
uarch: Haswell
12+
family: 6
13+
model: (50|69|70)
14+
stepping:
15+
16+
# Broadwell
17+
- core: BDW
18+
uarch: Broadwell
19+
family: 6
20+
model: (61|71)
21+
stepping:
22+
23+
# Skylake
24+
- core: SKL
25+
uarch: Skylake
26+
family: 6
27+
model: (78|94)
28+
stepping:
29+
30+
# Kabylake
31+
- core: KBL
32+
uarch: Kaby Lake
33+
family: 6
34+
model: (142|158)
35+
stepping: 9
36+
37+
# Coffelake
38+
- core: CFL
39+
uarch: Coffee Lake
40+
family: 6
41+
model: (142|158)
42+
stepping: (10|11|12|13)
43+
44+
# Rocket Lake
45+
- core: RKL
46+
uarch: Cypress Cove
47+
family: 6
48+
model: 167
49+
stepping:
50+
51+
# Tiger Lake
52+
- core: TGL
53+
uarch: Willow Cove
54+
family: 6
55+
model: (140|141)
56+
stepping:
57+
58+
# Alder Lake
59+
- core: ADL
60+
uarch: Golden Cove
61+
family: 6
62+
model: (151|154)
63+
stepping:
64+
65+
# Raptor Lake
66+
- core: RTL
67+
uarch: Raptor Cove
68+
family: 6
69+
model: 183
70+
stepping:
71+
72+
##########
73+
# Intel Xeon CPUs
74+
##########
75+
# Haswell
76+
- core: HSX
77+
uarch: Haswell
78+
family: 6
79+
model: 63
80+
stepping:
81+
82+
# Broadwell
83+
- core: BDX
84+
uarch: Broadwell
85+
family: 6
86+
model: (79|86)
87+
stepping:
88+
89+
# Skylake
90+
- core: SKX
91+
uarch: Skylake
92+
family: 6
93+
model: 85
94+
stepping: (0|1|2|3|4)
95+
96+
# Cascadelake
97+
- core: CLX
98+
uarch: Cascade Lake
99+
family: 6
100+
model: 85
101+
stepping: (5|6|7)
102+
103+
# Cooperlake
104+
- core: CPX
105+
uarch: Cooper Lake
106+
family: 6
107+
model: 85
108+
stepping: 11
109+
110+
# Icelake
111+
- core: ICX
112+
uarch: Sunny Cove
113+
family: 6
114+
model: (106|108)
115+
stepping:
116+
117+
# Sapphire Rapids
118+
- core: SPR
119+
uarch: Sapphire Rapids
120+
family: 6
121+
model: 143
122+
stepping:
123+
124+
# Emerald Rapids
125+
- core: EMR
126+
uarch: Emerald Rapids
127+
family: 6
128+
model: 207
129+
stepping:
130+
131+
# Granite Rapids
132+
- core: GNR
133+
uarch: Granite Rapids
134+
family: 6
135+
model: 173
136+
stepping:
137+
138+
# Sierra Forest
139+
- core: SRF
140+
uarch: Sierra Forest
141+
family: 6
142+
model: 175
143+
stepping:
144+
145+
##########
146+
# AMD CPUs
147+
##########
148+
# Naples
149+
- core: Naples
150+
uarch: Zen
151+
family: 23
152+
model: 1
153+
stepping:
154+
155+
# Rome
156+
- core: Rome
157+
uarch: Zen 2
158+
family: 23
159+
model: 49
160+
stepping:
161+
162+
# Milan
163+
- core: Milan
164+
uarch: Zen 3
165+
family: 25
166+
model: 1
167+
stepping:
168+
169+
# Genoa
170+
- core: Genoa
171+
uarch: Zen 4
172+
family: 25
173+
model: 17
174+
stepping:
175+
176+
# Siena
177+
- core: Siena
178+
uarch: Zen 4c
179+
family: 25
180+
model: 160
181+
stepping:
182+
183+
##########
184+
# ARM CPUs
185+
#########
186+
# AWS Graviton 2
187+
- core: Ares
188+
uarch: neoverse_n1
189+
family:
190+
model: 1
191+
stepping: r3p1
192+
193+
# AWS Graviton 3
194+
- core: Zeus
195+
uarch: neoverse_v1
196+
family:
197+
model: 1
198+
stepping: r1p1
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"platform": {"All_Weights": {"Bias_Weight": 220.9079278650894, "Categorical_Variables": {}, "Numerical_Variables": {"bpf_cpu_time_ms": {"scale": 5911.969193263386, "mean": 0, "variance": 0, "weight": 29.028228361462897}}}}}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"platform": {"All_Weights": {"Bias_Weight": 49.56491877218095, "Categorical_Variables": {}, "Numerical_Variables": {"bpf_cpu_time_ms": {"scale": 5911.969193263386, "mean": 0, "variance": 0, "weight": 28.501356366108837}}}}}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"package": {"All_Weights": {"Bias_Weight": 69.91739430907396, "Categorical_Variables": {}, "Numerical_Variables": {"bpf_cpu_time_ms": {"scale": 5911.969193263386, "mean": 0, "variance": 0, "weight": 22.16772409328642}}}}, "core": {"All_Weights": {"Bias_Weight": 0.0, "Categorical_Variables": {}, "Numerical_Variables": {"bpf_cpu_time_ms": {"scale": 5911.969193263386, "mean": 0, "variance": 0, "weight": 0.0}}}}, "uncore": {"All_Weights": {"Bias_Weight": 0.0, "Categorical_Variables": {}, "Numerical_Variables": {"bpf_cpu_time_ms": {"scale": 5911.969193263386, "mean": 0, "variance": 0, "weight": 0.0}}}}, "dram": {"All_Weights": {"Bias_Weight": 47.142633336743344, "Categorical_Variables": {}, "Numerical_Variables": {"bpf_cpu_time_ms": {"scale": 5911.969193263386, "mean": 0, "variance": 0, "weight": 3.57348245077466}}}}}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"package": {"All_Weights": {"Bias_Weight": 38.856412561925055, "Categorical_Variables": {}, "Numerical_Variables": {"bpf_cpu_time_ms": {"scale": 5911.969193263386, "mean": 0, "variance": 0, "weight": 22.258830113477515}}}}, "core": {"All_Weights": {"Bias_Weight": 0.0, "Categorical_Variables": {}, "Numerical_Variables": {"bpf_cpu_time_ms": {"scale": 5911.969193263386, "mean": 0, "variance": 0, "weight": 0.0}}}}, "uncore": {"All_Weights": {"Bias_Weight": 0.0, "Categorical_Variables": {}, "Numerical_Variables": {"bpf_cpu_time_ms": {"scale": 5911.969193263386, "mean": 0, "variance": 0, "weight": 0.0}}}}, "dram": {"All_Weights": {"Bias_Weight": 9.080889901856153, "Categorical_Variables": {}, "Numerical_Variables": {"bpf_cpu_time_ms": {"scale": 5911.969193263386, "mean": 0, "variance": 0, "weight": 3.0358946796490924}}}}}

0 commit comments

Comments
 (0)