tensor-0.1.0
 All Data Structures Namespaces Functions Variables Typedefs Enumerations Enumerator Groups Pages
gemv.cc
1 // -*- mode: c++; fill-column: 80; c-basic-offset: 2; indent-tabs-mode: nil -*-
2 /*
3  Copyright (c) 2010 Juan Jose Garcia Ripoll
4 
5  Tensor is free software; you can redistribute it and/or modify it
6  under the terms of the GNU Library General Public License as published
7  by the Free Software Foundation; either version 2 of the License, or
8  (at your option) any later version.
9 
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Library General Public License for more details.
14 
15  You should have received a copy of the GNU General Public License along
16  with this program; if not, write to the Free Software Foundation, Inc.,
17  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 
20 #ifndef TENSOR_GEMV_CC
21 #define TENSOR_GEMV_CC
22 
23 #ifdef TENSOR_USE_ESSL
24 #include <essl.h>
25 #endif
26 #include <tensor/tensor_blas.h>
27 
28 namespace blas {
29 
30  inline void gemv(char trans, integer m, integer n, const double alpha,
31  const double a[], integer lda, const double x[], integer incx,
32  const double &beta, double y[], integer incy)
33  {
34 #ifdef TENSOR_USE_ESSL
35  dgemv(&trans, m, n, alpha, a, lda, x, incx, beta, y, incy);
36 #endif
37 #ifdef TENSOR_USE_ACML
38  dgemv(trans, m, n, alpha, a, lda, x, incx, beta, y, incy);
39 #endif
40 #if !defined(TENSOR_USE_ESSL) && !defined(TENSOR_USE_ACML)
41  cblas_dgemv(CblasColMajor, char_to_op(trans), m, n,
42  alpha, a, lda, x, incx, beta, y, incy);
43 #endif
44  }
45 
46  inline void gemv(char trans, integer m, integer n, const tensor::cdouble &alpha,
47  const tensor::cdouble *a, integer lda, const tensor::cdouble *x,
48  integer incx, const tensor::cdouble &beta, tensor::cdouble *y,
49  integer incy)
50  {
51 #ifdef TENSOR_USE_ESSL
52  zgemv(&trans, m, n, alpha, a, lda, x, incx, beta, y, incy);
53 #endif
54 #ifdef TENSOR_USE_ACML
55  zgemv(trans, m, n, alpha, a, lda, x, incx, beta, y, incy);
56 #endif
57 #if !defined(TENSOR_USE_ESSL) && !defined(TENSOR_USE_ACML)
58  cblas_zgemv(CblasColMajor, char_to_op(trans), m, n,
59  &alpha, a, lda, x, incx, &beta, y, incy);
60 #endif
61  }
62 
63 } // namespace blas
64 
65 #endif // TENSOR_GEMV_CC