Skip to content

Commit b84c83b

Browse files
Added missing "#"s for the comments in triton.md (#9571)
Hello! As the title suggests, I have added some missing "#"s to make sure the Triton demo code runs without errors.
1 parent 0f56dec commit b84c83b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/source/features/triton.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ block_size = 8
4949
grid = (triton.cdiv(size, block_size),)
5050

5151
# triton_call takes the same arguments as the triton.jit function, in addition
52-
to the kernel itself and the grid that is used to execute the kernel.
53-
All the tl.constexpr terms are passed as kwargs at the end.
52+
# to the kernel itself and the grid that is used to execute the kernel.
53+
# All the tl.constexpr terms are passed as kwargs at the end.
5454
payload = xla_triton.triton_call(
5555
x, y, output, size, kernel=add_kernel, grid=grid, BLOCK_SIZE=block_size)
5656

0 commit comments

Comments
 (0)