Main Page   Modules   Compound List   File List   Compound Members   File Members  

matvecf_blas.h

Go to the documentation of this file.
00001 
00014 /* This library is free software; you can redistribute it and/or
00015    modify it under the terms of the GNU Lesser General Public
00016    License as published by the Free Software Foundation; either
00017    version 2.1 of the License, or (at your option) any later version.
00018 
00019    This library is distributed in the hope that it will be useful,
00020    but WITHOUT ANY WARRANTY; without even the implied warranty of
00021    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00022    Lesser General Public License for more details.
00023 
00024    You should have received a copy of the GNU Lesser General Public
00025    License along with this library; if not, write to the Free Software
00026    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00027 */
00028 
00029 #ifndef _GAN_MATVECF_BLAS_H
00030 #define _GAN_MATVECF_BLAS_H
00031 
00032 #include <gandalf/common/misc_defs.h>
00033 #include <gandalf/linalg/matf_gen.h>
00034 #include <gandalf/linalg/matf_square.h>
00035 #include <gandalf/linalg/vecf_gen.h>
00036 
00037 #ifdef __cplusplus
00038 extern "C" {
00039 #endif
00040 
00056 Gan_Vector_f *gan_blasf_axpy ( Gan_Vector_f *y,
00057                                float a, Gan_Vector_f *x );
00058 Gan_Vector_f *gan_blasf_gemv ( Gan_Vector_f *y, float alpha,
00059                                Gan_Matrix_f *A, Gan_TposeFlag A_tr,
00060                                Gan_Vector_f *x, float beta );
00061 Gan_Vector_f *gan_blasf_scal ( Gan_Vector_f *x, float a );
00062 Gan_Matrix_f *gan_blasf_ger ( Gan_Matrix_f *A,
00063                               Gan_Vector_f *x,
00064                               Gan_Vector_f *y, float a );
00065 Gan_SquMatrix_f *gan_blasf_spr ( Gan_SquMatrix_f *A,
00066                                  Gan_Vector_f *x, float a );
00067 Gan_Matrix_f *gan_blasf_gemm ( Gan_Matrix_f *C, float alpha,
00068                                Gan_Matrix_f *A, Gan_TposeFlag A_tr,
00069                                Gan_Matrix_f *B, Gan_TposeFlag B_tr,
00070                                float beta );
00071 
00084 #ifdef __cplusplus
00085 }
00086 #endif
00087 
00088 #endif /* #ifndef _GAN_MATVECF_BLAS_H */

Generated on Mon Oct 13 16:14:33 2003 by doxygen1.3-rc1