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

   Here is the example from the test case:
   ```python
   @T.prim_func
   def func(out: T.Buffer[16, "int32"]):
       for i, j in T.grid(16, 16):
           buf = T.allocate([1024 * j], "int32", "global")
           for k in T.grid(16):
               buf[i] = 0
           for k in T.grid(16):
               out[k] = buf[k]
   ```


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