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

Method visit_tuple_getitem_

tests/python/relax/test_expr_functor.py:138–142  ·  view source on GitHub ↗
(self, op: TupleGetItem)

Source from the content-addressed store, hash-verified

136 self.log.add("Op")
137
138 def visit_tuple_getitem_(self, op: TupleGetItem) -> None:
139 self.log.add("TupleGetItem")
140 self.log.push_scope()
141 self.visit_expr(op.tuple_value)
142 self.log.pop_scope()
143
144 def visit_prim_value_(self, op: PrimValue) -> None:
145 self.log.add("PrimValue")

Callers

nothing calls this directly

Calls 4

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

Tested by

no test coverage detected