Performs a matrix-matrix multiplication between mat1 (2D tensor) and mat2 (2D tensor), multiply the resulting
matrix by the scalar value and add the result to self (2D tensor).
In other words,
self = self + value * mat1*mat2
If mat1 is a n x m matrix, mat2 a m x p matrix, self must be a n x p matrix.