Skip to content

Commit b510742

Browse files
committed
fix lint
Signed-off-by: gdeng <gdeng@nvidia.com>
1 parent 735ca34 commit b510742

File tree

1 file changed

+0
-2
lines changed
  • emerging_optimizers/triton_kernels

1 file changed

+0
-2
lines changed

emerging_optimizers/triton_kernels/syrk.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,6 @@ def prune_invalid_configs(configs: list[triton.Config], named_args: dict, **kwar
170170
TILE_M = c.kwargs.get("TILE_M", 0)
171171
TILE_N = c.kwargs.get("TILE_N", 0)
172172
TILE_K = c.kwargs.get("TILE_K", 0)
173-
num_warps = c.num_warps
174173

175174
# 5000 is an empirically determined threshold from size shmoo to select the best config
176175
if N >= 5000:
@@ -192,7 +191,6 @@ def matmul_tma_set_block_size_hook(nargs: dict) -> None:
192191
TILE_N = nargs["TILE_N"]
193192
TILE_K = nargs["TILE_K"]
194193
TRANS = nargs["TRANS"]
195-
GROUP_SIZE_M = nargs["GROUP_SIZE_M"]
196194
nargs["a_desc"].block_shape = [TILE_K, TILE_M] if TRANS else [TILE_M, TILE_K]
197195
nargs["a_t_desc"].block_shape = [TILE_K, TILE_N] if TRANS else [TILE_N, TILE_K]
198196
if nargs["c_desc"] is not None:

0 commit comments

Comments
 (0)