Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOC] Fix incorrect doc in conv2d_nhwc_python #1677

Merged
merged 1 commit into from
Aug 30, 2018
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