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

Method visit_call_

tests/python/relax/test_expr_functor.py:586–593  ·  view source on GitHub ↗
(self, op: Call)

Source from the content-addressed store, hash-verified

584 self.log = ASTLog()
585
586 def visit_call_(self, op: Call) -> None:
587 self.log.add("InternalCall")
588 self.log.push_scope()
589 self.visit_expr(op.op)
590
591 for arg in op.args:
592 self.visit_expr(arg)
593 self.log.pop_scope()
594
595 def visit_var_(self, op: Var) -> None:
596 self.log.add("Var")

Callers

nothing calls this directly

Calls 5

addMethod · 0.45
push_scopeMethod · 0.45
visit_exprMethod · 0.45
pop_scopeMethod · 0.45
visit_call_Method · 0.45

Tested by

no test coverage detected