1 /*
2 
3     Copyright (C) 2014, The University of Texas at Austin
4 
5     This file is part of libflame and is available under the 3-Clause
6     BSD license, which can be found in the LICENSE file at the top-level
7     directory, or at http://opensource.org/licenses/BSD-3-Clause
8 
9 */
10 
11 // Level-1 BLAS
12 #include "FLA_Axpy.h"
13 #include "FLA_Axpyt.h"
14 #include "FLA_Copy.h"
15 #include "FLA_Copyt.h"
16 #include "FLA_Copyr.h"
17 #include "FLA_Scal.h"
18 #include "FLA_Scalr.h"
19 
20 // Level-2 BLAS
21 #include "FLA_Gemv.h"
22 #include "FLA_Trsv.h"
23 
24 // Level-3 BLAS
25 #include "FLA_Gemm.h"
26 #include "FLA_Hemm.h"
27 #include "FLA_Herk.h"
28 #include "FLA_Her2k.h"
29 #include "FLA_Symm.h"
30 #include "FLA_Syrk.h"
31 #include "FLA_Syr2k.h"
32 #include "FLA_Trmm.h"
33 #include "FLA_Trsm.h"
34 
35