The GitHub Actions job "Lint" on tvm.git/tvm-delete-integer-bool-classes has 
failed.
Run started by GitHub user tqchen (triggered by tqchen).

Head commit for run:
7186af5f6593921decc4139f79e03ef766f38f90 / tqchen <[email protected]>
[REFACTOR][IR] Delete class Bool and class Integer from include/tvm/ir/expr.h

Remove the Bool and Integer thin-wrapper classes (which were both
subclasses of IntImm sharing IntImmNode) along with their
TypeTraits<Integer> and TypeTraits<Bool> specializations.

All call sites were migrated to IntImm in the preceding three commits.
The canonical replacements are:
- Integer(N)    → IntImm(DataType::Int(32), N)
- Bool(b)       → IntImm(DataType::Bool(), b)
- x.IntValue()  → x->value
- x operator bool → x->value != 0

Report URL: https://github.com/apache/tvm/actions/runs/26576680984

With regards,
GitHub Actions via GitBox


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to