MCPcopy Create free account
hub / github.com/KnowingNothing/MatmulTutorial / __radd__

Method __radd__

util/simulator/kernel.py:100–101  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

98 return self.__handle_binary__(lambda x, y: x % y, other)
99
100 def __radd__(self, other):
101 return self.__handle_rbinary__(lambda x, y: x + y, other)
102
103 def __rsub__(self, other):
104 return self.__handle_rbinary__(lambda x, y: x - y, other)

Callers

nothing calls this directly

Calls 1

__handle_rbinary__Method · 0.95

Tested by

no test coverage detected