MCPcopy Create free account
hub / github.com/apache/tvm / visit_buffer_load_

Method visit_buffer_load_

tests/python/tirx-base/test_tir_expr_functor.py:105–110  ·  view source on GitHub ↗
(self, op: BufferLoad)

Source from the content-addressed store, hash-verified

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")

Callers 1

visit_buffer_load_Method · 0.45

Calls 4

visit_exprMethod · 0.95
addMethod · 0.45
push_scopeMethod · 0.45
pop_scopeMethod · 0.45

Tested by

no test coverage detected