zhiics commented on issue #7563: URL: https://github.com/apache/tvm/issues/7563#issuecomment-791266563
all the used passes are listed here: https://github.com/apache/tvm/blob/main/src/relay/backend/build_module.cc#L255 can you try to disable each of the passes that run at opt_level 3 to see which one causes the accuracy problem? one example could be: ``` with tvm.transform.PassContext(opt_level=3, disabled_pass={"AlterOpLayout"}): lib = relay.build(...) ``` ---------------------------------------------------------------- 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: [email protected]
