MCPcopy Index your code
hub / github.com/apache/tvm / visit_AugAssign

Method visit_AugAssign

python/tvm/script/parser/core/parser.py:864–877  ·  view source on GitHub ↗

The general augmented assignment visiting method. Parameters ---------- node : doc.AugAssign The doc AST augmented assignment node. Returns ------- res : Any The visiting result.

(self, node: doc.AugAssign)

Source from the content-addressed store, hash-verified

862 return _dispatch(self, "If")(self, node)
863
864 def visit_AugAssign(self, node: doc.AugAssign) -> Any: # pylint: disable=invalid-name
865 """The general augmented assignment visiting method.
866
867 Parameters
868 ----------
869 node : doc.AugAssign
870 The doc AST augmented assignment node.
871
872 Returns
873 -------
874 res : Any
875 The visiting result.
876 """
877 return _dispatch(self, "AugAssign")(self, node)
878
879 def visit_Assert(self, node: doc.Assert) -> Any: # pylint: disable=invalid-name
880 """The general assert visiting method.

Callers

nothing calls this directly

Calls 1

_dispatchFunction · 0.70

Tested by

no test coverage detected