MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / __rpow__

Method __rpow__

tensorflow/python/distribute/values.py:429–429  ·  view source on GitHub ↗
(self, o)

Source from the content-addressed store, hash-verified

427 def __pow__(self, o, modulo=None):
428 return pow(self._get_as_operand(), o, modulo)
429 def __rpow__(self, o): return pow(o, self._get_as_operand())
430 def __invert__(self): return ~self._get_as_operand()
431 def __neg__(self): return -self._get_as_operand()
432 def __abs__(self): return abs(self._get_as_operand())

Callers

nothing calls this directly

Calls 2

_get_as_operandMethod · 0.95
powFunction · 0.50

Tested by

no test coverage detected