Skip to content

Commit 36a5b89

Browse files
committed
precommit
Signed-off-by: czhu-cohere <conway.zhu@cohere.com>
1 parent b882b0f commit 36a5b89

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

benchmarks/kernels/weight_shapes.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@
9696
([1408, 2048], 0),
9797
],
9898
"CohereLabs/c4ai-command-a-03-2025": [
99-
([12288, 73728], 1), # gate_up_proj
100-
([36864, 12288], 0), # down_proj
101-
([12288, 14336], 1), # qkv_proj
102-
([12288, 12288], 0), # o_proj
99+
([12288, 73728], 1), # gate_up_proj
100+
([36864, 12288], 0), # down_proj
101+
([12288, 14336], 1), # qkv_proj
102+
([12288, 12288], 0), # o_proj
103103
],
104104
}

csrc/quantization/machete/generate.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@
191191
{{DataTypeTag[t.b_group_zeropoint]}}, // GroupZeroT
192192
{{DataTypeTag[t.b_channel_scale]}}, // ChannelScaleT
193193
{{DataTypeTag[t.a_token_scale]}}, // TokenScaleT
194-
// cutlass::gemm::KernelTmaWarpSpecializedCooperative, // moved to schedule config
195194
Sch>;
196195
197196
{% for sch in schs %}
@@ -520,11 +519,12 @@ def generate():
520519
# Heuristic is currently tuned for H100s
521520
default_heuristic = [
522521
(
523-
cond, ScheduleConfig(
522+
cond,
523+
ScheduleConfig(
524524
*tile_config,
525525
**sch_config_overrides.get(cond,
526526
sch_common_params) # type: ignore
527-
)) for cond, tile_config in default_tile_heuristic_config.items()
527+
)) for cond, tile_config in default_tile_heuristic_config.items()
528528
]
529529

530530
def get_unique_schedules(heuristic: dict[str, ScheduleConfig]):

0 commit comments

Comments
 (0)