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

Method visit_seq_expr_

tests/python/relax/test_expr_functor.py:159–165  ·  view source on GitHub ↗
(self, op: SeqExpr)

Source from the content-addressed store, hash-verified

157 self.log.add("ExternFunc")
158
159 def visit_seq_expr_(self, op: SeqExpr) -> None:
160 self.log.add("SeqExpr")
161 self.log.push_scope()
162 for block in op.blocks:
163 self.visit_binding_block(block)
164 self.visit_expr(op.body)
165 self.log.pop_scope()
166
167 def visit_var_binding_(self, binding: VarBinding) -> None:
168 self.log.add("VarBinding")

Callers

nothing calls this directly

Calls 5

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

Tested by

no test coverage detected