File: netlib.h

package info (click to toggle)
xtensor-blas 0.23.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 13,860 kB
  • sloc: cpp: 98,000; makefile: 201; perl: 178; python: 153
file content (30 lines) | stat: -rw-r--r-- 594 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef CXXLAPACK_NETLIB_NETLIB_H
#define CXXLAPACK_NETLIB_NETLIB_H 1

#ifdef LAPACK_IMPL
#   undef   LAPACK_IMPL
#endif

#ifndef CXXLAPACK_NO_UNDERSCORE
#   define     LAPACK_IMPL(x)           x##_
#else
#   define     LAPACK_IMPL(x)           x
#endif

#ifdef  DEBUG_CXXLAPACK
#define CXXLAPACK_DEBUG_OUT(msg) std::cerr << "CXXLAPACK: " << msg << std::endl;
#endif

#ifndef CXXLAPACK_DEBUG_OUT
#   define  CXXLAPACK_DEBUG_OUT(msg)
#endif

namespace cxxlapack {

extern "C" {
#   include "xflens/cxxlapack/netlib/interface/lapack.in.h"
} // extern "C"

}

#endif //  CXXLAPACK_NETLIB_NETLIB_H