Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions tilelang/jit/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,10 +225,9 @@ def _compile_and_create_adapter(self, tilelang_func: PrimFunc, out_idx: list[int
target_host = self.target_host

execution_backend = self.execution_backend
pass_configs = self.pass_configs or {}
pass_configs = dict(self.pass_configs) if self.pass_configs else {}

compile_flags = self.compile_flags

if compile_flags is not None:
compile_flags_cfg = pass_configs.get(PassConfigKey.TL_DEVICE_COMPILE_FLAGS)
pass_configs[PassConfigKey.TL_DEVICE_COMPILE_FLAGS] = (
Expand Down
Loading