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

Method visit_binding_block_

tests/python/relax/test_expr_functor.py:181–186  ·  view source on GitHub ↗
(self, block: BindingBlock)

Source from the content-addressed store, hash-verified

179 self.log.pop_scope()
180
181 def visit_binding_block_(self, block: BindingBlock) -> None:
182 self.log.add("BindingBlock")
183 self.log.push_scope()
184 for binding in block.bindings:
185 self.visit_binding(binding)
186 self.log.pop_scope()
187
188 def visit_dataflow_block_(self, block: DataflowBlock) -> None:
189 self.log.add("DataflowBlock")

Callers 2

visit_binding_block_Method · 0.45
visit_binding_block_Method · 0.45

Calls 4

addMethod · 0.45
push_scopeMethod · 0.45
visit_bindingMethod · 0.45
pop_scopeMethod · 0.45

Tested by

no test coverage detected