Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion topi/python/topi/testing/conv2d_nhwc_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def conv2d_nhwc_python(a_np, w_np, stride, padding):
4-D with shape [batch, in_height, in_width, in_channel]

w_np : numpy.ndarray
4-D with shape [num_filter, filter_height, filter_width, in_channel]
4-D with shape [filter_height, filter_width, in_channel, num_filter]

stride : int or a list/tuple of two ints
Stride size, or [stride_height, stride_width]
Expand Down