tkonolige commented on PR #13470:
URL: https://github.com/apache/tvm/pull/13470#issuecomment-1370081579

   @junrushao @masahi any thoughts on this? The change is from
   
   ```
   ms.compile_relay(mod, opt_level=3)
   ```
   
   to
   
   ```
   with transform.PassContext(opt_level=3):
     ms.compile_relay(mod)
   ```
   
   Although more verbose this mirrors the compilation process for 
non-metascheduled relay:
   
   ```
   with transform.PassContext(opt_level=3):
     vm.compile(mod)
   ```


-- 
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]

Reply via email to