MCPcopy Create free account
hub / github.com/ByteDance-Seed/Triton-distributed / __mul__

Method __mul__

python/little_kernel/core/expr.py:83–85  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

81 return BinOp(BinOpKind.SUB, self, other, self.type)
82
83 def __mul__(self, other):
84 other = self._to_expr(other)
85 return BinOp(BinOpKind.MUL, self, other, self.type)
86
87 def __truediv__(self, other):
88 other = self._to_expr(other)

Callers

nothing calls this directly

Calls 2

_to_exprMethod · 0.95
BinOpClass · 0.85

Tested by

no test coverage detected