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

Method visit_add_

tests/python/tirx-base/test_tir_expr_functor.py:138–143  ·  view source on GitHub ↗
(self, op: Add)

Source from the content-addressed store, hash-verified

136 self.log.pop_scope()
137
138 def visit_add_(self, op: Add) -> None:
139 self.log.add("Add")
140 self.log.push_scope()
141 self.visit_expr(op.a)
142 self.visit_expr(op.b)
143 self.log.pop_scope()
144
145 def visit_sub_(self, op: Sub) -> None:
146 self.log.add("Sub")

Callers 5

visit_add_Method · 0.45
visit_add_Method · 0.45
visit_add_Method · 0.45
visit_add_Method · 0.45
visit_add_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