#include <qpOASES/PrivateUtils.hpp>
Go to the source code of this file.
Functions | |
| USING_NAMESPACE_QPOASES void | dgemm_ (const char *TRANSA, const char *TRANSB, const unsigned long *M, const unsigned long *N, const unsigned long *K, const double *ALPHA, const double *A, const unsigned long *LDA, const double *B, const unsigned long *LDB, const double *BETA, double *C, const unsigned long *LDC) |
| void | sgemm_ (const char *TRANSA, const char *TRANSB, const unsigned long *M, const unsigned long *N, const unsigned long *K, const float *ALPHA, const float *A, const unsigned long *LDA, const float *B, const unsigned long *LDB, const float *BETA, float *C, const unsigned long *LDC) |
BLAS Level 3 replacement routines.
Definition in file BLASReplacement.cpp.
| USING_NAMESPACE_QPOASES void dgemm_ | ( | const char * | , |
| const char * | , | ||
| const unsigned long * | , | ||
| const unsigned long * | , | ||
| const unsigned long * | , | ||
| const double * | , | ||
| const double * | , | ||
| const unsigned long * | , | ||
| const double * | , | ||
| const unsigned long * | , | ||
| const double * | , | ||
| double * | , | ||
| const unsigned long * | |||
| ) |
Performs one of the matrix-matrix operation in double precision.
Definition at line 38 of file BLASReplacement.cpp.
| void sgemm_ | ( | const char * | , |
| const char * | , | ||
| const unsigned long * | , | ||
| const unsigned long * | , | ||
| const unsigned long * | , | ||
| const float * | , | ||
| const float * | , | ||
| const unsigned long * | , | ||
| const float * | , | ||
| const unsigned long * | , | ||
| const float * | , | ||
| float * | , | ||
| const unsigned long * | |||
| ) |
Performs one of the matrix-matrix operation in single precision.
Definition at line 92 of file BLASReplacement.cpp.