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

Method visit_while_

tests/python/tirx-base/test_tir_stmt_functor.py:94–99  ·  view source on GitHub ↗
(self, op)

Source from the content-addressed store, hash-verified

92 self.log.pop_scope()
93
94 def visit_while_(self, op):
95 self.log.add("While")
96 self.log.push_scope()
97 self.visit_expr(op.condition)
98 self.visit_stmt(op.body)
99 self.log.pop_scope()
100
101 def visit_buffer_store_(self, op):
102 self.log.add("BufferStore")

Callers 3

visit_while_Method · 0.45
visit_while_Method · 0.45
visit_while_Method · 0.45

Calls 5

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

Tested by

no test coverage detected