Skip to content

Commit 1041db6

Browse files
committed
fix metadata collection with dry run
1 parent e0f5ca6 commit 1041db6

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

devops/scripts/benchmarks/main.py

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -159,18 +159,14 @@ def main(directory, additional_env_vars, save_name, compare_names, filter):
159159
options.extra_ld_libraries.extend(cr.ld_libraries())
160160
options.extra_env_vars.update(cr.env_vars())
161161

162-
suites = (
163-
[
164-
ComputeBench(directory),
165-
VelocityBench(directory),
166-
SyclBench(directory),
167-
LlamaCppBench(directory),
168-
UMFSuite(directory),
169-
TestSuite(),
170-
]
171-
if not options.dry_run
172-
else []
173-
)
162+
suites = [
163+
ComputeBench(directory),
164+
VelocityBench(directory),
165+
SyclBench(directory),
166+
LlamaCppBench(directory),
167+
UMFSuite(directory),
168+
TestSuite(),
169+
]
174170

175171
# Collect metadata from all benchmarks without setting them up
176172
metadata = collect_metadata(suites)

0 commit comments

Comments
 (0)