blufissure commented on issue #14729:
URL: https://github.com/apache/tvm/issues/14729#issuecomment-1649284825
Here is another example
```
import tvm
from tvm import tir
a=tir.IntImm('uint32',73829502)
zero1=tir.IntImm('uint32',0)
div1=tir.Div(a,zero1)
v1=tir.Var('v1','int32')
itevars=tir.IterVar([-16, 0], v1, 4, 'vthread.z')
body1 = tir.AttrStmt(itevars,'rolling_buffer_scope',div1,tir.Evaluate(1.6))
body2 = tir.IfThenElse(tir.LT(3,1),body1,tir.Evaluate(0))
func=tir.PrimFunc([],body=body2)
tvm.build(func)
```
--
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]