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

Method __pow__

tensorflow/python/distribute/values.py:427–428  ·  view source on GitHub ↗
(self, o, modulo=None)

Source from the content-addressed store, hash-verified

425 def __rxor__(self, o): return o ^ self._get_as_operand()
426 def __getitem__(self, o): return self._get_as_operand()[o]
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()

Callers

nothing calls this directly

Calls 2

_get_as_operandMethod · 0.95
powFunction · 0.50

Tested by

no test coverage detected