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

Method __pow__

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

Source from the content-addressed store, hash-verified

1606 def __rxor__(self, o): return o ^ self._v
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

Callers

nothing calls this directly

Calls 1

powFunction · 0.50

Tested by

no test coverage detected