Skip to content

Commit 7c0b8cd

Browse files
authored
Update comments for clarity in quickstart.py
1 parent 8d748ba commit 7c0b8cd

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

examples/quickstart.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,9 @@ def matmul_relu_kernel(
5555
block_N = 128
5656
block_K = 32
5757

58-
# 1. Define the kernel (matmul) and compile/lower it into an executable module
58+
# Define the kernel (matmul) and compile/lower it into an executable module
5959
matmul_relu_kernel = matmul(M, N, K, block_M, block_N, block_K)
60-
print(matmul_relu_kernel.get_kernel_source())
61-
# 3. Test the kernel in Python with PyTorch data
60+
# Test the kernel in Python with PyTorch data
6261
import torch
6362

6463
# Create random input tensors on the GPU

0 commit comments

Comments
 (0)