(self, op: Add)
| 801 | |
| 802 | class LeafMutator(InternalMutator): |
| 803 | def visit_add_(self, op: Add) -> tir.PrimExpr: |
| 804 | self.log.add("LeafAdd") |
| 805 | return super().visit_add_(op) # call InternalMutator.visit_add_ |
| 806 | |
| 807 | add_node = tir.Add(n, tir.IntImm("int32", 10)) |
| 808 | im = InternalMutator() |
nothing calls this directly
no test coverage detected