Skip to content

Commit e2cbf27

Browse files
committed
lint fix
1 parent 8178381 commit e2cbf27

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

maint/host_checks/run_all.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def main():
5555
# Summary
5656
print("\n=== Summary ===")
5757
counts = {"PASS": 0, "FAIL": 0, "SKIP": 0, "MISSING": 0}
58-
for name, status, rc in results:
58+
for name, status, _ in results:
5959
counts[status] = counts.get(status, 0) + 1
6060
print(f"{status:7} {name}")
6161

tilelang/jit/adapter/tvm_ffi.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,6 @@ def _convert_torch_func(self) -> Callable[..., Any]:
166166
else:
167167
expected_dtype_strs.append(None)
168168
is_buffer_param.append(False)
169-
# Global function name used in error messages
170-
global_symbol = str(prim_func.attrs.get("global_symbol", "main"))
171169

172170
# Map torch dtype to TVM-style dtype string
173171
def torch_dtype_to_tvm_str(dtype: torch.dtype) -> str:

0 commit comments

Comments
 (0)