Skip to content

Commit

Permalink
public release
Browse files Browse the repository at this point in the history
  • Loading branch information
swanandmhalagi committed Oct 6, 2023
1 parent 2defb5e commit 5691589
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ build-public/postprocess:
--add-data "./events/metric_skx_clx.json:." \
--add-data "./events/metric_bdx.json:." \
--add-data "./events/metric_icx.json:." \
--add-data "./events/metric_spr.json:." \
--add-data "./events/metric_spr_emr.json:." \
--add-data "./events/metric_srf.json:." \
--add-data "./src/base.html:." \
--runtime-tmpdir . \
Expand Down
2 changes: 1 addition & 1 deletion _version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.7
1.3.8
7 changes: 2 additions & 5 deletions perf-collect.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,11 +334,8 @@ def validate_file(fname):
eventfile = "clx_skx.txt"
elif arch == "icelake":
eventfile = "icx.txt"
elif arch == "sapphirerapids":
eventfile = "spr.txt"
elif arch == "emeraldrapids":
eventfile = "spr.txt"
have_uncore = False
elif arch == "sapphirerapids" or arch == "emeraldrapids":
eventfile = "spr_emr.txt"
elif arch == "sierraforest":
eventfile = "srf.txt"

Expand Down
2 changes: 1 addition & 1 deletion perf-collect.spec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ block_cipher = None
a = Analysis(
['perf-collect.py'],
pathex=[],
datas=[('./src/libtsc.so', '.'), ('./events/bdx.txt', '.'), ('./events/clx_skx.txt', '.'), ('./events/icx.txt', '.'), ('./events/spr.txt', '.'), ('./events/srf.txt', '.')],
datas=[('./src/libtsc.so', '.'), ('./events/bdx.txt', '.'), ('./events/clx_skx.txt', '.'), ('./events/icx.txt', '.'), ('./events/spr_emr.txt', '.'), ('./events/srf.txt', '.')],
hiddenimports=[],
hookspath=[],
hooksconfig={},
Expand Down
2 changes: 1 addition & 1 deletion perf-postprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ def get_metric_file_name(microarchitecture):
elif microarchitecture == "icelake":
metric_file = "metric_icx.json"
elif microarchitecture == "sapphirerapids" or microarchitecture == "emeraldrapids":
metric_file = "metric_spr.json"
metric_file = "metric_spr_emr.json"
elif microarchitecture == "sierraforest":
metric_file = "metric_srf.json"
else:
Expand Down

0 comments on commit 5691589

Please sign in to comment.