Blaze  3.6
BLAS.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_BLAS_H_
36 #define _BLAZE_MATH_BLAS_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
43 #include <blaze/math/blas/axpy.h>
44 #include <blaze/math/blas/dotc.h>
45 #include <blaze/math/blas/dotu.h>
46 #include <blaze/math/blas/gemm.h>
47 #include <blaze/math/blas/gemv.h>
48 #include <blaze/math/blas/trmm.h>
49 #include <blaze/math/blas/trmv.h>
50 #include <blaze/math/blas/trsm.h>
51 
52 #endif
Header file for BLAS axpy product functions (axpy)
Header file for BLAS dot product (dotu)
Header file for BLAS triangular system solver functions (trsm)
Header file for BLAS conjugate dot product (dotc)
Header file for BLAS triangular matrix/vector multiplication functions (trmv)
Header file for BLAS triangular matrix/matrix multiplication functions (trmm)
Header file for BLAS general matrix/vector multiplication functions (gemv)
Header file for BLAS general matrix/matrix multiplication functions (gemm)