summaryrefslogtreecommitdiff
path: root/XBLAS/src/gbmv2/BLAS_cgbmv2_c_s-f2c.c
diff options
context:
space:
mode:
Diffstat (limited to 'XBLAS/src/gbmv2/BLAS_cgbmv2_c_s-f2c.c')
-rw-r--r--XBLAS/src/gbmv2/BLAS_cgbmv2_c_s-f2c.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/XBLAS/src/gbmv2/BLAS_cgbmv2_c_s-f2c.c b/XBLAS/src/gbmv2/BLAS_cgbmv2_c_s-f2c.c
new file mode 100644
index 00000000..5f4f728a
--- /dev/null
+++ b/XBLAS/src/gbmv2/BLAS_cgbmv2_c_s-f2c.c
@@ -0,0 +1,18 @@
+
+#include "f2c-bridge.h"
+#include "blas_enum.h"
+void BLAS_cgbmv2_c_s(enum blas_order_type order, enum blas_trans_type trans,
+ int m, int n, int kl, int ku, const void *alpha,
+ const void *a, int lda, const float *head_x,
+ const float *tail_x, int incx, const void *beta,
+ void *y, int incy);
+
+
+extern void FC_FUNC_(blas_cgbmv2_c_s, BLAS_CGBMV2_C_S)
+
+ (int *trans, int *m, int *n, int *kl, int *ku, const void *alpha,
+ const void *a, int *lda, const float *head_x, const float *tail_x,
+ int *incx, const void *beta, void *y, int *incy) {
+ BLAS_cgbmv2_c_s(blas_colmajor, (enum blas_trans_type) *trans, *m, *n, *kl,
+ *ku, alpha, a, *lda, head_x, tail_x, *incx, beta, y, *incy);
+}