Commit 2c7d2d78 by Wuwei Lin Committed by Yizhi Liu

Fix relative import in x86 conv2d (#2149)

parent 11f897ac
...@@ -21,7 +21,7 @@ def _get_default_config(cfg, data, kernel, strides, padding, out_dtype, is_depth ...@@ -21,7 +21,7 @@ def _get_default_config(cfg, data, kernel, strides, padding, out_dtype, is_depth
""" """
if is_depthwise: if is_depthwise:
wkl = _get_depthwise_conv2d_workload(data, kernel, strides, padding, out_dtype) wkl = _get_depthwise_conv2d_workload(data, kernel, strides, padding, out_dtype)
from depthwise_conv2d import _fallback_schedule from .depthwise_conv2d import _fallback_schedule
_fallback_schedule(cfg, wkl) _fallback_schedule(cfg, wkl)
else: else:
wkl = _get_conv2d_workload(data, kernel, strides, padding, out_dtype) wkl = _get_conv2d_workload(data, kernel, strides, padding, out_dtype)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment