Skip to content

Commit

Permalink
Added dilation to arm_cpu/conv2d_int8.py workload
Browse files Browse the repository at this point in the history
  • Loading branch information
Wheest committed Dec 23, 2020
1 parent 81ec6c6 commit 15afec0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/tvm/topi/arm_cpu/conv2d_int8.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from .arm_utils import get_tiling_B_interleaved_t


def _get_default_config(cfg, data, kernel, strides, padding, out_dtype):
def _get_default_config(cfg, data, kernel, strides, padding, dilation, out_dtype):
"""
Get default int8 schedule config for the workload
"""
Expand Down Expand Up @@ -65,6 +65,7 @@ def conv2d_NCHWc_int8(cfg, data, kernel, strides, padding, dilation, layout, out
te.placeholder((num_filter, in_channel, kh, kw), dtype=kernel.dtype),
strides,
padding,
dilation,
out_dtype,
)
return nn.conv2d_NCHWc_int8_compute(
Expand Down

0 comments on commit 15afec0

Please sign in to comment.