Skip to content

Commit 08a3f81

Browse files
authored
Merge pull request #2643 from pbalcer/update-umd
[benchmarks] update UMD and fix no-igc builds
2 parents 6df05ef + 1644237 commit 08a3f81

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

scripts/benchmarks/options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Options:
3030
build_compute_runtime: bool = False
3131
extra_ld_libraries: list[str] = field(default_factory=list)
3232
extra_env_vars: dict = field(default_factory=dict)
33-
compute_runtime_tag: str = '24.52.32224.8'
33+
compute_runtime_tag: str = '24.52.32224.10'
3434
build_igc: bool = False
3535

3636
options = Options()

scripts/benchmarks/utils/compute_runtime.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,17 @@ def __init__(self):
2727
return
2828

2929
def ld_libraries(self) -> list[str]:
30-
return [
30+
paths = [
3131
os.path.join(self.gmmlib, "lib64"),
3232
os.path.join(self.level_zero, "lib64"),
3333
os.path.join(self.compute_runtime, "bin"),
34-
os.path.join(self.igc, "lib"),
3534
]
3635

36+
if options.build_igc:
37+
paths.append(os.path.join(self.igc, "lib"))
38+
39+
return paths
40+
3741
def env_vars(self) -> dict:
3842
return {"ZE_ENABLE_ALT_DRIVERS" : os.path.join(self.compute_runtime, "bin", "libze_intel_gpu.so"),
3943
"OCL_ICD_FILENAMES" : os.path.join(self.compute_runtime, "bin", "libigdrcl.so")}

0 commit comments

Comments
 (0)