Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #if defined(ARMA_USE_ATLAS)
00015 #if !defined(ARMA_ATLAS_INCLUDE_DIR)
00016 extern "C"
00017 {
00018 #include <cblas.h>
00019 #include <clapack.h>
00020 }
00021 #else
00022 #define ARMA_STR1(x) x
00023 #define ARMA_STR2(x) ARMA_STR1(x)
00024
00025 #define ARMA_CBLAS ARMA_STR2(ARMA_ATLAS_INCLUDE_DIR)ARMA_STR2(cblas.h)
00026 #define ARMA_CLAPACK ARMA_STR2(ARMA_ATLAS_INCLUDE_DIR)ARMA_STR2(clapack.h)
00027
00028 extern "C"
00029 {
00030 #include ARMA_INCFILE_WRAP(ARMA_CBLAS)
00031 #include ARMA_INCFILE_WRAP(ARMA_CLAPACK)
00032 }
00033
00034 #undef ARMA_STR1
00035 #undef ARMA_STR2
00036 #undef ARMA_CBLAS
00037 #undef ARMA_CLAPACK
00038 #endif
00039 #endif