Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes workload file selection for SynthIP* case studies #842

Merged
merged 1 commit into from
Oct 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions varats/varats/projects/perf_tests/feature_perf_cs_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,9 +445,9 @@ class SynthIPRuntime(VProject):
SourceRoot("SynthIPRuntime") / RSBinary("Runtime"),
"-c",
"<",
"geo-maps/countries-land-1km.geo.json",
"geo-maps/countries-land-1m.geo.json",
">",
"geo-maps/countries-land-1km.geo.json.compressed",
"geo-maps/countries-land-1m.geo.json.compressed",
label="countries-land-1m",
creates=["geo-maps/countries-land-1m.geo.json.compressed"],
requires_all_args={"-c"}
Expand Down Expand Up @@ -519,9 +519,9 @@ class SynthIPTemplate(VProject):
SourceRoot("SynthIPTemplate") / RSBinary("Template"),
"-c",
"<",
"geo-maps/countries-land-1km.geo.json",
"geo-maps/countries-land-1m.geo.json",
">",
"geo-maps/countries-land-1km.geo.json.compressed",
"geo-maps/countries-land-1m.geo.json.compressed",
label="countries-land-1m",
creates=["geo-maps/countries-land-1m.geo.json.compressed"],
requires_all_patch={"Compress"}
Expand Down Expand Up @@ -593,9 +593,9 @@ class SynthIPTemplate2(VProject):
SourceRoot("SynthIPTemplate2") / RSBinary("Template2"),
"-c",
"<",
"geo-maps/countries-land-1km.geo.json",
"geo-maps/countries-land-1m.geo.json",
">",
"geo-maps/countries-land-1km.geo.json.compressed",
"geo-maps/countries-land-1m.geo.json.compressed",
label="countries-land-1m",
creates=["geo-maps/countries-land-1m.geo.json.compressed"],
requires_all_patch={"Compress"}
Expand Down Expand Up @@ -667,9 +667,9 @@ class SynthIPCombined(VProject):
SourceRoot("SynthIPCombined") / RSBinary("Combined"),
"-c",
"<",
"geo-maps/countries-land-1km.geo.json",
"geo-maps/countries-land-1m.geo.json",
">",
"geo-maps/countries-land-1km.geo.json.compressed",
"geo-maps/countries-land-1m.geo.json.compressed",
label="countries-land-1m",
creates=["geo-maps/countries-land-1m.geo.json.compressed"],
requires_all_args={"-c"}
Expand Down