Loading...
Searching...
No Matches
Go to the source code of this file.
|
| module | mxm_wrapper |
| | Wrapper for all matrix-matrix product implementations.
|
| |
|
| subroutine, public | mxm_wrapper::mxm (a, n1, b, n2, c, n3) |
| | Compute matrix-matrix product \( C = A \cdot B \) for contiguously packed matrices A,B, and C.
|
| |
| subroutine, private | mxm_wrapper::mxm_blas_sp (a, n1, b, n2, c, n3) |
| |
| subroutine, private | mxm_wrapper::mxm_blas_dp (a, n1, b, n2, c, n3) |
| |
| subroutine, private | mxm_wrapper::mxm_blas_qp (a, n1, b, n2, c, n3) |
| |
| subroutine, private | mxm_wrapper::mxm_libxsmm_sp (a, n1, b, n2, c, n3) |
| |
| subroutine, private | mxm_wrapper::mxm_libxsmm_dp (a, n1, b, n2, c, n3) |
| |
| subroutine, private | mxm_wrapper::mxm_libxsmm_qp (a, n1, b, n2, c, n3) |
| |