Go to the source code of this file.
Macros | |
| #define | TEST_COL_MJR 0 |
| #define | TEST_ROW_MJR 1 |
| #define | UNDEFINED -1 |
Functions | |
| void | F77_dgemm (int *layout, char *transpa, char *transpb, int *m, int *n, int *k, double *alpha, double *a, int *lda, double *b, int *ldb, double *beta, double *c, int *ldc) |
| void | F77_dsymm (int *layout, char *rtlf, char *uplow, int *m, int *n, double *alpha, double *a, int *lda, double *b, int *ldb, double *beta, double *c, int *ldc) |
| void | F77_dsyrk (int *layout, char *uplow, char *transp, int *n, int *k, double *alpha, double *a, int *lda, double *beta, double *c, int *ldc) |
| void | F77_dsyr2k (int *layout, char *uplow, char *transp, int *n, int *k, double *alpha, double *a, int *lda, double *b, int *ldb, double *beta, double *c, int *ldc) |
| void | F77_dtrmm (int *layout, char *rtlf, char *uplow, char *transp, char *diagn, int *m, int *n, double *alpha, double *a, int *lda, double *b, int *ldb) |
| void | F77_dtrsm (int *layout, char *rtlf, char *uplow, char *transp, char *diagn, int *m, int *n, double *alpha, double *a, int *lda, double *b, int *ldb) |
| #define TEST_COL_MJR 0 |
Definition at line 10 of file c_dblas3.c.
| #define TEST_ROW_MJR 1 |
Definition at line 11 of file c_dblas3.c.
| #define UNDEFINED -1 |
Definition at line 12 of file c_dblas3.c.
| void F77_dgemm | ( | int * | layout, |
| char * | transpa, | ||
| char * | transpb, | ||
| int * | m, | ||
| int * | n, | ||
| int * | k, | ||
| double * | alpha, | ||
| double * | a, | ||
| int * | lda, | ||
| double * | b, | ||
| int * | ldb, | ||
| double * | beta, | ||
| double * | c, | ||
| int * | ldc ) |
Definition at line 14 of file c_dblas3.c.
| void F77_dsymm | ( | int * | layout, |
| char * | rtlf, | ||
| char * | uplow, | ||
| int * | m, | ||
| int * | n, | ||
| double * | alpha, | ||
| double * | a, | ||
| int * | lda, | ||
| double * | b, | ||
| int * | ldb, | ||
| double * | beta, | ||
| double * | c, | ||
| int * | ldc ) |
Definition at line 76 of file c_dblas3.c.
| void F77_dsyr2k | ( | int * | layout, |
| char * | uplow, | ||
| char * | transp, | ||
| int * | n, | ||
| int * | k, | ||
| double * | alpha, | ||
| double * | a, | ||
| int * | lda, | ||
| double * | b, | ||
| int * | ldb, | ||
| double * | beta, | ||
| double * | c, | ||
| int * | ldc ) |
Definition at line 178 of file c_dblas3.c.
| void F77_dsyrk | ( | int * | layout, |
| char * | uplow, | ||
| char * | transp, | ||
| int * | n, | ||
| int * | k, | ||
| double * | alpha, | ||
| double * | a, | ||
| int * | lda, | ||
| double * | beta, | ||
| double * | c, | ||
| int * | ldc ) |
Definition at line 130 of file c_dblas3.c.
| void F77_dtrmm | ( | int * | layout, |
| char * | rtlf, | ||
| char * | uplow, | ||
| char * | transp, | ||
| char * | diagn, | ||
| int * | m, | ||
| int * | n, | ||
| double * | alpha, | ||
| double * | a, | ||
| int * | lda, | ||
| double * | b, | ||
| int * | ldb ) |
Definition at line 233 of file c_dblas3.c.
| void F77_dtrsm | ( | int * | layout, |
| char * | rtlf, | ||
| char * | uplow, | ||
| char * | transp, | ||
| char * | diagn, | ||
| int * | m, | ||
| int * | n, | ||
| double * | alpha, | ||
| double * | a, | ||
| int * | lda, | ||
| double * | b, | ||
| int * | ldb ) |
Definition at line 284 of file c_dblas3.c.