Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion docs/reference/langref/relay_op.rst
Original file line number Diff line number Diff line change
Expand Up @@ -245,4 +245,3 @@ This level supports dialect operators.
tvm.relay.qnn.op.simulated_dequantize
tvm.relay.qnn.op.simulated_quantize
tvm.relay.qnn.op.subtract
tvm.relay.qnn.op.transpose_conv2d
2 changes: 1 addition & 1 deletion python/tvm/relay/op/strategy/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ def conv2d_transpose_strategy(attrs, inputs, out_type, target):
wrap_topi_schedule(topi.generic.schedule_conv2d_transpose_nchw),
name="conv2d_transpose_nchw.generic",
)
else: # group_transpose_conv2d
else: # group_conv2d_transpose
strategy.add_implementation(
wrap_compute_conv2d_transpose(topi.nn.group_conv2d_transpose_nchw, has_groups=True),
wrap_topi_schedule(topi.generic.schedule_group_conv2d_transpose_nchw),
Expand Down
4 changes: 2 additions & 2 deletions python/tvm/relay/qnn/op/qnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,8 +527,8 @@ def conv2d_transpose(
kernel_scale: tvm.relay.Expr
The scale for the weight tensor. The scale for the weight tensor is
stored for access to this during relay. This information is not
needed in the pass pipeline after qnn.transpose_conv2d is lowered to the
sequence of steps as in nn.transpose_conv2d. See also input_scale in Requantize.
needed in the pass pipeline after qnn.conv2d_transpose is lowered to the
sequence of steps as in nn.conv2d_transpose. See also input_scale in Requantize.

strides : Tuple[int], optional
The strides of convolution.
Expand Down