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

Method visit_mod_

tests/python/tirx-base/test_tir_expr_functor.py:166–171  ·  view source on GitHub ↗
(self, op: Mod)

Source from the content-addressed store, hash-verified

164 self.log.pop_scope()
165
166 def visit_mod_(self, op: Mod) -> None:
167 self.log.add("Mod")
168 self.log.push_scope()
169 self.visit_expr(op.a)
170 self.visit_expr(op.b)
171 self.log.pop_scope()
172
173 def visit_floordiv_(self, op: FloorDiv) -> None:
174 self.log.add("FloorDiv")

Callers 1

visit_mod_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