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.
| 748 | |
| 749 | @tvm_ffi.register_object("tirx.Mul") |
| 750 | class 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") |
no outgoing calls