mshr-h commented on PR #18360: URL: https://github.com/apache/tvm/pull/18360#issuecomment-3370642320
@tlopex The root problem is in https://github.com/apache/tvm/blob/f30b29c2c5e35eb975ae8926fb7ebfae4d817a50/python/tvm/relax/frontend/torch/exported_program_translator.py#L964, where `run_decompositions()` isn't an in-place operation. We need to do this so that the decomposed model is used. ```python exported_program = exported_program.run_decompositions() ``` -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
