Skip to content

Commit

Permalink
Fix an issue caused by uninitialized c in triton_conv2d
Browse files Browse the repository at this point in the history
  • Loading branch information
voltjia committed Jan 10, 2025
1 parent d421777 commit 17a7b47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conv2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def triton_conv2d_kernel(


def triton_conv2d(input, filter):
n, _, h, w = input.shape
n, c, h, w = input.shape
k, _, r, s = filter.shape
p = h - r + 1
q = w - s + 1
Expand Down

0 comments on commit 17a7b47

Please sign in to comment.