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

Class Mul

python/tvm/tirx/expr.py:750–766  ·  view source on GitHub ↗

Mul node. Parameters ---------- a : PrimExpr The left hand operand. b : PrimExpr The right hand operand. span : Optional[Span] The location of this expression in the source code.

Source from the content-addressed store, hash-verified

748
749@tvm_ffi.register_object("tirx.Mul")
750class Mul(BinaryOpExpr):
751 """Mul node.
752
753 Parameters
754 ----------
755 a : PrimExpr
756 The left hand operand.
757
758 b : PrimExpr
759 The right hand operand.
760
761 span : Optional[Span]
762 The location of this expression in the source code.
763 """
764
765 def __init__(self, a: PrimExpr, b: PrimExpr, span: Span | None = None) -> None:
766 self.__init_handle_by_constructor__(_ffi_api.Mul, a, b, span) # type: ignore
767
768
769@tvm_ffi.register_object("tirx.Div")

Callers 3

visit_add_Method · 0.90
test_variable_replacerFunction · 0.90
test_nested_expressionsFunction · 0.90

Calls

no outgoing calls

Tested by 3

visit_add_Method · 0.72
test_variable_replacerFunction · 0.72
test_nested_expressionsFunction · 0.72