Skip to content

Commit

Permalink
add a note on dilation in x86
Browse files Browse the repository at this point in the history
  • Loading branch information
masahi committed Feb 29, 2020
1 parent 8336237 commit e410221
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/python/frontend/pytorch/test_forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -797,8 +797,10 @@ def forward(self, inp):
inp = [torch.rand((1, 3, 300, 300), dtype=torch.float)]

for model in [fcn, deeplab]:
# depthwise + dilated covolution not supported on x86
# see https://github.com/apache/incubator-tvm/issues/4962
verify_model(SegmentationModelWrapper(model.eval()), inp,
ctx_list=[("cuda", tvm.gpu(0))]) # dilated covolution not supported on x86
ctx_list=[("cuda", tvm.gpu(0))])


if __name__ == "__main__":
Expand Down

0 comments on commit e410221

Please sign in to comment.