IFEM
90A354
src
LinAlg
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
25
extern
"C"
26
{
27
#include <cblas.h>
28
}
29
#endif
30
31
#endif
Generated by
1.9.1