All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
BLAS.h
Go to the documentation of this file.
1 //=================================================================================================
20 //=================================================================================================
21 
22 #ifndef _BLAZE_SYSTEM_BLAS_H_
23 #define _BLAZE_SYSTEM_BLAS_H_
24 
25 
26 //=================================================================================================
27 //
28 // BLAS MODE CONFIGURATION
29 //
30 //=================================================================================================
31 
32 //*************************************************************************************************
52 #define BLAZE_BLAS_MODE 1
53 //*************************************************************************************************
54 
55 
56 
57 
58 //=================================================================================================
59 //
60 // BLAS INCLUDE FILE CONFIGURATION
61 //
62 //=================================================================================================
63 
64 #if BLAZE_BLAS_MODE
65 extern "C" {
66 #include <cblas.h>
67 }
68 #endif
69 
70 #endif