Skip to content

Commit f61f0fe

Browse files
committed
Use bundled level zero for compute benchmarks
1 parent 21f68b8 commit f61f0fe

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

devops/scripts/benchmarks/benches/compute.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,14 @@ def setup(self) -> None:
102102
]
103103

104104
self.project.configure(extra_args, add_sycl=True)
105-
self.project.build(add_sycl=True)
105+
self.project.build(
106+
add_sycl=True,
107+
ld_library=[str(self.project.src_dir
108+
/ "third_party"
109+
/ "level-zero-sdk"
110+
/ "lib"
111+
/ "x64"),]
112+
)
106113

107114
def additional_metadata(self) -> dict[str, BenchmarkMetadata]:
108115
"""

0 commit comments

Comments
 (0)