diff options
Diffstat (limited to 'src/fastblas.h')
-rw-r--r-- | src/fastblas.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/fastblas.h b/src/fastblas.h index 3c28729..d0f5c14 100644 --- a/src/fastblas.h +++ b/src/fastblas.h @@ -7,21 +7,6 @@ gsl_matrix *fast_copy(gsl_matrix *m, const double *mem); -void fast_cblas_dgemm(OPENBLAS_CONST enum CBLAS_ORDER Order, - OPENBLAS_CONST enum CBLAS_TRANSPOSE TransA, - OPENBLAS_CONST enum CBLAS_TRANSPOSE TransB, - OPENBLAS_CONST blasint M, - OPENBLAS_CONST blasint N, - OPENBLAS_CONST blasint K, - OPENBLAS_CONST double alpha, - OPENBLAS_CONST double *A, - OPENBLAS_CONST blasint lda, - OPENBLAS_CONST double *B, - OPENBLAS_CONST blasint ldb, - OPENBLAS_CONST double beta, - double *C, - OPENBLAS_CONST blasint ldc); - void fast_dgemm(const char *TransA, const char *TransB, const double alpha, const gsl_matrix *A, const gsl_matrix *B, const double beta, gsl_matrix *C); |