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

Method __ge__

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

Source from the content-addressed store, hash-verified

696 return _call_singa_func(singa.GTFloat, self.data, rhs)
697
698 def __ge__(self, rhs):
699 if isinstance(rhs, Tensor):
700 return from_raw_tensor(singa.__ge__(self.data, rhs.data))
701 else:
702 return _call_singa_func(singa.GEFloat, self.data, rhs)
703
704 def __eq__(self, rhs):
705 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