From 3b3e300dade43f9f93ec70758271732d59eab36a Mon Sep 17 00:00:00 2001 From: Florian Sattler Date: Thu, 5 Oct 2023 16:09:52 +0200 Subject: [PATCH] Fixes workload file selection for SynthIP* case studies --- .../perf_tests/feature_perf_cs_collection.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/varats/varats/projects/perf_tests/feature_perf_cs_collection.py b/varats/varats/projects/perf_tests/feature_perf_cs_collection.py index 1d1357d32..23c542e9e 100644 --- a/varats/varats/projects/perf_tests/feature_perf_cs_collection.py +++ b/varats/varats/projects/perf_tests/feature_perf_cs_collection.py @@ -776,9 +776,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"} @@ -850,9 +850,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"} @@ -924,9 +924,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"} @@ -998,9 +998,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"}