We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21fa7fb commit 394029aCopy full SHA for 394029a
devops/scripts/benchmarks/utils/utils.py
@@ -61,9 +61,9 @@ def run(
61
# order is important, we want provided sycl rt libraries to be first
62
if add_sycl:
63
sycl_bin_path = os.path.join(options.sycl, "bin")
64
- env["PATH"] = sycl_bin_path + os.pathsep + env.get("PATH", "")
+ env_vars["PATH"] = sycl_bin_path + os.pathsep + env.get("PATH", "")
65
sycl_lib_path = os.path.join(options.sycl, "lib")
66
- env["LD_LIBRARY_PATH"] = (
+ env_vars["LD_LIBRARY_PATH"] = (
67
sycl_lib_path + os.pathsep + env.get("LD_LIBRARY_PATH", "")
68
)
69
0 commit comments