Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Mayank Mishra <[email protected]>
  • Loading branch information
mayank31398 committed Jan 24, 2025
1 parent bde5258 commit be5cfae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cute_kernels/kernels/gemm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@ def gemm_cute(
BLOCK_SIZE=BLOCK_SIZE_M,
)
elif cuda_kernel_algorithm == CUDAKernelAlgorithm.naive:
assert cuda_kernel_algorithm is None

naive_gemm_cuda(
a=a,
b=b,
Expand All @@ -93,6 +91,8 @@ def gemm_cute(
BLOCK_SIZE_N=BLOCK_SIZE_N,
)
elif kernel_backend == KernelBackend.triton:
assert cuda_kernel_algorithm is None

gemm_triton(
a=a,
b=b,
Expand Down

0 comments on commit be5cfae

Please sign in to comment.