Skip to content

Commit dc24a14

Browse files
[TEST] Fix triton_kernels failures after 318fa9c
Signed-off-by: Whitney Tsang <whitney.tsang@intel.com>
1 parent 64cc693 commit dc24a14

File tree

1 file changed

+1
-3
lines changed
  • python/triton_kernels/triton_kernels/matmul_ogs_details

1 file changed

+1
-3
lines changed

python/triton_kernels/triton_kernels/matmul_ogs_details/opt_flags.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,13 @@ def make_default_opt_flags_intel(
5555
k,
5656
routing_data,
5757
can_use_persistent_tma,
58-
can_use_fused_scatter,
5958
enforce_bitwise_invariance,
6059
epilogue_effective_itemsize,
6160
x_transpose,
6261
has_y_acc_in,
6362
constraints,
6463
):
65-
constraints_supported = ["block_m", "block_k", "split_k", "is_persistent", "fused_scatter", "epilogue_subtile", "num_stages", "max_allowable_mn"]
64+
constraints_supported = ["block_m", "block_k", "split_k", "is_persistent", "epilogue_subtile", "num_stages", "max_allowable_mn"]
6665
assert not any([c not in constraints_supported for c in constraints]), constraints.keys()
6766
# tokens per expert
6867
if routing_data is None:
@@ -111,7 +110,6 @@ def make_default_opt_flags_intel(
111110
block_k=block_k,
112111
num_warps=opt_flags_intel.compute_num_warps(block_m, block_n),
113112
num_stages=constraints.get("num_stages", 2),
114-
fused_scatter=constraints.get('fused_scatter', False),
115113
group_m=group_m,
116114
xcd_swizzle=xcd_swizzle,
117115
w_cache_modifier=None,

0 commit comments

Comments
 (0)