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

Method __pow__

python/tvm/relax/expr.py:196–197  ·  view source on GitHub ↗
(self, other: Expr)

Source from the content-addressed store, hash-verified

194 return _binary_rhs_helper(other)
195
196 def __pow__(self, other: Expr) -> "ExprWithOp":
197 return _binary_op_helper(self, other, _op_ffi_api.power) # type: ignore
198
199 def __rpow__(self, other: Expr) -> "ExprWithOp":
200 return _binary_rhs_helper(other)

Callers

nothing calls this directly

Calls 1

_binary_op_helperFunction · 0.85

Tested by

no test coverage detected