IFEM 90A354
BLAS.h
Go to the documentation of this file.
1// $Id$
2//==============================================================================
12//==============================================================================
13
14#ifndef UTL_BLAS_H
15#define UTL_BLAS_H
16
17#if defined(USE_MKL)
18#define HAS_BLAS 2
19#include <mkl_cblas.h>
20#elif defined(USE_ACCELERATE)
21#define HAS_BLAS 3
22#include <Accelerate/Accelerate.h>
23#elif defined(USE_CBLAS)
24#define HAS_BLAS 1
25extern "C"
26{
27#include <cblas.h>
28}
29#endif
30
31#endif