def __mul__()

in svinfer/processor/matrix.py [0:0]


    def __mul__(self, other):
        if isinstance(other, int) or isinstance(other, float):
            return NumpyMatrix(self.value * other)
        if isinstance(other, NumpyMatrix):
            return NumpyMatrix(self.value * other.value)
        return NotImplemented