Skip to content

Commit 988d36c

Browse files
Fix failures from 663e04e
Signed-off-by: Whitney Tsang <[email protected]>
1 parent 92fc8da commit 988d36c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/triton/knobs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ def scope(self) -> Generator[None, None, None]:
361361
class BuildImpl(Protocol):
362362

363363
def __call__(self, name: str, src: str, srcdir: str, library_dirs: list[str], include_dirs: list[str],
364-
libraries: list[str], extra_compile_args: list[str], /) -> str:
364+
libraries: list[str], ccflags: list[str], /) -> str:
365365
...
366366

367367

third_party/intel/backend/driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def compile_module_from_src(src: str, name: str):
274274
extra_compiler_args += ["-Wl,-rpath," + dir for dir in COMPILATION_HELPER.libsycl_dir]
275275

276276
so = _build(name, src_path, tmpdir, COMPILATION_HELPER.library_dir, COMPILATION_HELPER.include_dir,
277-
COMPILATION_HELPER.libraries, extra_compile_args=extra_compiler_args)
277+
COMPILATION_HELPER.libraries, ccflags=extra_compiler_args)
278278
with open(so, "rb") as f:
279279
cache_path = cache.put(f.read(), f"{name}{suffix}", binary=True)
280280

0 commit comments

Comments
 (0)