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

Method __floordiv__

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

Source from the content-addressed store, hash-verified

698 return self.__div__(rhs)
699
700 def __floordiv__(self, rhs):
701 tmp = self.__div__(rhs)
702 return _call_singa_func(singa.Floor, tmp.data)
703
704 def __lt__(self, rhs):
705 if isinstance(rhs, Tensor):

Callers

nothing calls this directly

Calls 2

__div__Method · 0.95
_call_singa_funcFunction · 0.70

Tested by

no test coverage detected