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

Method __mul__

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

Source from the content-addressed store, hash-verified

89 return self.__handle_binary__(lambda x, y: x - y, other)
90
91 def __mul__(self, other):
92 return self.__handle_binary__(lambda x, y: x * y, other)
93
94 def __div__(self, other):
95 return self.__handle_binary__(lambda x, y: x / y, other)

Callers

nothing calls this directly

Calls 1

__handle_binary__Method · 0.95

Tested by

no test coverage detected