Skip to content

Commit 55ce566

Browse files
committed
wip
1 parent f9b83f4 commit 55ce566

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_cute_dsl_blockscaled_gemm_allreduce_two_shot.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def test_blockscaled_gemm_all_reduce_python_interface(
171171
init_type=cutlass_torch.TensorInitType.SCALAR,
172172
init_config=cutlass_torch.ScalarInitConfig(value=0.0),
173173
)
174-
174+
print(f"Rank {rank}: c_ref INITIAL shape={c_ref.shape}, stride={c_ref.stride()}")
175175
a_tensor, a_torch = cutlass_torch.cute_tensor_like(
176176
a_ref,
177177
get_cutlass_dtype(ab_dtype),
@@ -196,6 +196,7 @@ def test_blockscaled_gemm_all_reduce_python_interface(
196196
#(1 if c_major == "n" else 0),
197197
is_dynamic_layout=True,
198198
)
199+
print(f"Rank {rank}: c_torch INITIAL shape={c_torch.shape}, stride={c_torch.stride()}")
199200
alpha_tensor = (
200201
torch.randn(l, dtype=torch.float32, device=device) if fuse_alpha else None
201202
)

0 commit comments

Comments
 (0)