blas2.hpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef BOOST_BINDINGS_BLAS_BLAS2_HPP
00010 #define BOOST_BINDINGS_BLAS_BLAS2_HPP
00011
00012 #include <boost/numeric/bindings/blas/blas2_overloads.hpp>
00013 #include <boost/numeric/bindings/traits/traits.hpp>
00014 #include <boost/numeric/bindings/traits/transpose.hpp>
00015 #include <boost/static_assert.hpp>
00016 #include <boost/type_traits.hpp>
00017 #include <cassert>
00018
00019 namespace boost { namespace numeric { namespace bindings { namespace blas {
00020
00021
00022
00023
00024 template < typename matrix_type, typename vector_type_x, typename vector_type_y, typename value_type >
00025 inline
00026 void gemv(const char TRANS,
00027 const value_type& alpha,
00028 const matrix_type &a,
00029 const vector_type_x &x,
00030 const value_type& beta,
00031 vector_type_y &y
00032 )
00033 {
00034
00035
00036
00037
00038
00039
00040
00041 const int m = traits::matrix_size1( a ) ;
00042 const int n = traits::matrix_size2( a ) ;
00043 assert ( traits::vector_size( x ) >= (TRANS == traits::NO_TRANSPOSE ? n : m) ) ;
00044 assert ( traits::vector_size( y ) >= (TRANS == traits::NO_TRANSPOSE ? m : n) ) ;
00045 const int lda = traits::leading_dimension( a ) ;
00046 const int stride_x = traits::vector_stride( x ) ;
00047 const int stride_y = traits::vector_stride( y ) ;
00048
00049 const value_type *a_ptr = traits::matrix_storage( a ) ;
00050 const value_type *x_ptr = traits::vector_storage( x ) ;
00051 value_type *y_ptr = traits::vector_storage( y ) ;
00052
00053 detail::gemv( TRANS, m, n, alpha, a_ptr, lda, x_ptr, stride_x, beta, y_ptr, stride_y );
00054 }
00055
00056
00057
00058 template < typename vector_type_x, typename vector_type_y, typename value_type, typename matrix_type >
00059 inline
00060 void ger( const value_type& alpha,
00061 const vector_type_x &x,
00062 const vector_type_y &y,
00063 matrix_type &a
00064 )
00065 {
00066
00067
00068
00069
00070
00071
00072
00073 const int m = traits::matrix_size1( a ) ;
00074 const int n = traits::matrix_size2( a ) ;
00075 assert ( traits::vector_size( x ) <= m ) ;
00076 assert ( traits::vector_size( y ) <= n ) ;
00077 const int lda = traits::leading_dimension( a ) ;
00078 const int stride_x = traits::vector_stride( x ) ;
00079 const int stride_y = traits::vector_stride( y ) ;
00080
00081 const value_type *x_ptr = traits::vector_storage( x ) ;
00082 const value_type *y_ptr = traits::vector_storage( y ) ;
00083 value_type *a_ptr = traits::matrix_storage( a ) ;
00084
00085 detail::ger( m, n, alpha, x_ptr, stride_x, y_ptr, stride_y, a_ptr, lda );
00086 }
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145 }}}}
00146
00147 #endif // BOOST_BINDINGS_BLAS_BLAS2_HPP