You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The above model first does a conv, then a transpose that swap H and W dimension, and finally conv again. It fails with error
One or more operators have not been tuned. Please tune your model for better performance. Use DEBUG logging level to see more details.
The Relay type checker is unable to show the following types match:
Tensor[(1, 1, 24, 48), float32]
Tensor[(1, 1, 48, 24), float32]
The above model first does a conv, then a transpose that swap H and W dimension, and finally conv again. It fails with error
The root cause is similar to https://discuss.tvm.apache.org/t/pytorch-layout-cannot-convert-f-linear-x-f-linear-y-z/10866. In short, during alteroplayout pass, each dimension is assumed to be associated with a specific semantic (e.g.,
H
,W
,O
,I
, ...), and when this assumption is broken, the pass will be fragile.Environment
OS: ubuntu 1804
TVM: 6a274af
The text was updated successfully, but these errors were encountered: