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

Method __rpow__

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

Source from the content-addressed store, hash-verified

1607 def __getitem__(self, o): return self._v[o]
1608 def __pow__(self, o, modulo=None): return pow(self._v, o, modulo)
1609 def __rpow__(self, o): return pow(o, self._v)
1610 def __invert__(self): return ~self._v
1611 def __neg__(self): return -self._v
1612 def __abs__(self): return abs(self._v)

Callers

nothing calls this directly

Calls 1

powFunction · 0.50

Tested by

no test coverage detected