Open
Description
Currently matrix multiplications are a lot slower for integer matrices than for float matrices, because for floats either BLAS or matrixmultiply is used.
E.g. here for a 1000x1000 matrix the integer version takes more than 5 times as long as the float version and this get worse when the matrix size increases.
Is there anything planned for fast integer matrix multiplications? Or any way I can help to improve this situation?