You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by GitBox <gi...@apache.org> on 2021/05/17 16:44:47 UTC

[GitHub] [tvm] comaniac commented on issue #8057: deformable_conv2 error when converting torch traced model to relay

comaniac commented on issue #8057:
URL: https://github.com/apache/tvm/issues/8057#issuecomment-842474289


   Looks like your model is dynamic? The argument 3 in deformable conv2d is stride, which is expected to be a static constant expression. However, according to the error message, the strides of deformable conv2d in your model is a call node, which usually means the strides was calculated by another operator on the fly. It would be better if you could try to locate and post a subgraph in the model with such issue to see how the stride was determined.
   
   Also cc @masahi @codeislife99 
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org