Added script front-end for primer-design code
[htsworkflow.git] / htswanalysis / MACS / lib / gsl / gsl-1.11 / cblas / cgemm.c
1 #include <gsl/gsl_math.h>
2 #include <gsl/gsl_cblas.h>
3 #include "cblas.h"
4
5 void
6 cblas_cgemm (const enum CBLAS_ORDER Order, const enum CBLAS_TRANSPOSE TransA,
7              const enum CBLAS_TRANSPOSE TransB, const int M, const int N,
8              const int K, const void *alpha, const void *A, const int lda,
9              const void *B, const int ldb, const void *beta, void *C,
10              const int ldc)
11 {
12 #define BASE float
13 #include "source_gemm_c.h"
14 #undef BASE
15 }