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

Method __gt__

examples/model_selection/Trails/singa_pkg_code/tensor.py:692–696  ·  view source on GitHub ↗
(self, rhs)

Source from the content-addressed store, hash-verified

690 return _call_singa_func(singa.LEFloat, self.data, rhs)
691
692 def __gt__(self, rhs):
693 if isinstance(rhs, Tensor):
694 return from_raw_tensor(singa.__gt__(self.data, rhs.data))
695 else:
696 return _call_singa_func(singa.GTFloat, self.data, rhs)
697
698 def __ge__(self, rhs):
699 if isinstance(rhs, Tensor):

Callers

nothing calls this directly

Calls 2

from_raw_tensorFunction · 0.70
_call_singa_funcFunction · 0.70

Tested by

no test coverage detected