summaryrefslogtreecommitdiff
path: root/gsl-1.9/cblas/strsm.c
blob: 5c620efe182bb427c9a8dab01e150753ba25af81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <gsl/gsl_math.h>
#include <gsl/gsl_cblas.h>
#include "cblas.h"

void
cblas_strsm (const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side,
             const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA,
             const enum CBLAS_DIAG Diag, const int M, const int N,
             const float alpha, const float *A, const int lda, float *B,
             const int ldb)
{
#define BASE float
#include "source_trsm_r.h"
#undef BASE
}