Skip to content

Commit ae2dd74

Browse files
authored
[Benchmarks] Fix umf library path (#19270)
Fix wrong path to umf library when passing a path without a trailing slash: `Warning: LD_LIBRARY_PATH component does not exist: /home/patrykka/unified-memory-framework/buildlib` Example of a failing run: https://github.com/oneapi-src/unified-memory-framework/actions/runs/16023907732/job/45207108065
1 parent 0386b1d commit ae2dd74

File tree

1 file changed

+1
-1
lines changed
  • devops/scripts/benchmarks/benches

1 file changed

+1
-1
lines changed

devops/scripts/benchmarks/benches/umf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def setup(self):
9797
return
9898

9999
self.oneapi = get_oneapi()
100-
self.umf_lib = options.umf + "lib"
100+
self.umf_lib = os.path.join(options.umf, "lib")
101101
self.benchmark_bin = os.path.join(options.umf, "benchmark", self.bench_name)
102102

103103
def is_memory_statistics_included(self, data_row):

0 commit comments

Comments
 (0)