(self, op: BufferLoad)
| 103 | self.log.add("SizeVar") |
| 104 | |
| 105 | def visit_buffer_load_(self, op: BufferLoad) -> None: |
| 106 | self.log.add("BufferLoad") |
| 107 | self.log.push_scope() |
| 108 | for idx in op.indices: |
| 109 | self.visit_expr(idx) |
| 110 | self.log.pop_scope() |
| 111 | |
| 112 | def visit_producer_load_(self, op: ProducerLoad) -> None: |
| 113 | self.log.add("ProducerLoad") |
no test coverage detected