syang-ng commented on issue #9407:
URL: https://github.com/apache/tvm/issues/9407#issuecomment-956041722
Similarly, the following example can also trigger a crash.
```python
import tvm
from tvm import tir
var = tir.Var('var', 'int32')
false_value = tir.Cast('int32', tir.acosh(tir.Cast('float32', var)))
value = tir.Select(var > 0, tir.const(0), false_value)
let_stmt = tir.LetStmt(var, value, tir.Evaluate(var))
f = tir.PrimFunc({}, let_stmt)
tvm.build(f)
```
Different from the last example, this bug crashes in `PrimExpr
RewriteSimplifier::Impl::VisitExpr_(const LTNode* op)`

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