From 16d2bc03ceed49f92f15a10ba17c0d2d226e81ad 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 6ff8db619..0674170ee 100644 --- a/varats/varats/projects/perf_tests/feature_perf_cs_collection.py +++ b/varats/varats/projects/perf_tests/feature_perf_cs_collection.py @@ -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"} @@ -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"} @@ -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"} @@ -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"}