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