MCPcopy Create free account
hub / github.com/apache/singa / __truediv__

Method __truediv__

python/singa/tensor.py:697–698  ·  view source on GitHub ↗
(self, rhs)

Source from the content-addressed store, hash-verified

695 return _call_singa_func(singa.DivFloat, self.data, float(rhs))
696
697 def __truediv__(self, rhs):
698 return self.__div__(rhs)
699
700 def __floordiv__(self, rhs):
701 tmp = self.__div__(rhs)

Callers

nothing calls this directly

Calls 1

__div__Method · 0.95

Tested by

no test coverage detected