tkonolige commented on pull request #7084:
URL: https://github.com/apache/tvm/pull/7084#issuecomment-747598083


   I'm a little confused on how we use return in tir? How is the example you 
give different if we just remove the return?
   ```python
   a = tir.Var("a", "float32") 
   b = tir.Var("b", "float32") 
   c = a + b
   # c = tir.call_intrin("float32", "tir.myreturn", c)
   c = tir.Evaluate(c) /# doesn't this return a + b?
   ```


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


Reply via email to