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

Method __rmul__

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

Source from the content-addressed store, hash-verified

104 return self.__handle_rbinary__(lambda x, y: x - y, other)
105
106 def __rmul__(self, other):
107 return self.__handle_rbinary__(lambda x, y: x * y, other)
108
109 def __rdiv__(self, other):
110 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