module testing.einsum.direct_blas_lapack#

Short summary#

module mlprodict.testing.einsum.direct_blas_lapack

Direct calls to libraries BLAS and LAPACK. The wrapper for GEMM still does not work for matrices which are not square.

source on GitHub

Functions#

function

truncated documentation

dgemm_dot

dgemm_dot(double[:,

sgemm_dot

sgemm_dot(float[:,

Documentation#

@file @brief Direct calls to libraries BLAS and LAPACK. The wrapper for GEMM still does not work for matrices which are not square.

mlprodict.testing.einsum.direct_blas_lapack.dgemm_dot(double[:, ::1] A, double[:, ::1] B, transA, transB, double[:, ::1] C)#

Wrapper for gemm.

mlprodict.testing.einsum.direct_blas_lapack.sgemm_dot(float[:, ::1] A, float[:, ::1] B, transA, transB, float[:, ::1] C)#

Wrapper for gemm.