Skip to content

Commit

Permalink
Fix up ordering of parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramana Radhakrishnan committed Nov 13, 2019
1 parent e2954db commit 80084dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/tvm/relay/qnn/op/qnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,9 @@ def conv2d(data,
input_zero_point: int
The zero point of the data distribution.
kernel_zero_point: int
The zero point of the quantized_kernel distribution.
input_scale: float
The scale for the input tensor. The scale for the input tensor is
stored purely for convenience here. See more commentary below.
Expand All @@ -231,9 +234,6 @@ def conv2d(data,
needed in the pass pipeline after qnn.conv2d is lowered to the
sequence of steps as in nn.conv2d. See also input_scale in Requantize.
kernel_zero_point: int
The zero point of the quantized_kernel distribution.
strides : tuple of int, optional
The strides of convolution.
Expand Down

0 comments on commit 80084dd

Please sign in to comment.