summaryrefslogtreecommitdiff
path: root/XBLAS/src/gbmv2/BLAS_dgbmv2_d_s_x-f2c.c
blob: bca44d58e9fb4b4accb1ebe7f6a4f21aecfcd2fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

#include "f2c-bridge.h"
#include "blas_enum.h"
void BLAS_dgbmv2_d_s_x(enum blas_order_type order, enum blas_trans_type trans,
		       int m, int n, int kl, int ku, double alpha,
		       const double *a, int lda, const float *head_x,
		       const float *tail_x, int incx, double beta,
		       double *y, int incy, enum blas_prec_type prec);


extern void FC_FUNC_(blas_dgbmv2_d_s_x, BLAS_DGBMV2_D_S_X)
 
  (int *trans, int *m, int *n, int *kl, int *ku, double *alpha,
   const double *a, int *lda, const float *head_x, const float *tail_x,
   int *incx, double *beta, double *y, int *incy, int *prec) {
  BLAS_dgbmv2_d_s_x(blas_colmajor, (enum blas_trans_type) *trans, *m, *n, *kl,
		    *ku, *alpha, a, *lda, head_x, tail_x, *incx, *beta, y,
		    *incy, (enum blas_prec_type) *prec);
}