Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

matrix multiplication for integral types using BLAS

Is there an equivalent of dgemm (from BLAS) for integral types? I only know of dgemm, sgemm for double precision / single precision matrices, but would like to have it for matrices that are of integral type such as int (or short int...).

Note: I'm not looking for a solution that involves converting to float/double, and am looking for a fast library implementation.

Also, same question for dgemms (using strassen algorithm).

like image 858
spirov Avatar asked Dec 02 '09 01:12

spirov


1 Answers

BLAS algorithms don't natively support integer types.

like image 74
Paul Avatar answered Sep 25 '22 23:09

Paul