Merge pull request #2785 from albertziegenhagel/always-generate-pkg-config
[platform/upstream/openblas.git] / openblas_config_template.h
1 /*This is only for "make install" target.*/
2
3 #if defined(OPENBLAS_OS_WINNT) || defined(OPENBLAS_OS_CYGWIN_NT) || defined(OPENBLAS_OS_INTERIX)
4 #define OPENBLAS_WINDOWS_ABI
5 #define OPENBLAS_OS_WINDOWS
6
7 #ifdef DOUBLE
8 #define DOUBLE_DEFINED DOUBLE
9 #undef  DOUBLE
10 #endif
11 #endif
12
13 #ifdef OPENBLAS_NEEDBUNDERSCORE
14 #define BLASFUNC(FUNC) FUNC##_
15 #else
16 #define BLASFUNC(FUNC) FUNC
17 #endif
18
19 #ifdef OPENBLAS_QUAD_PRECISION
20 typedef struct {
21   unsigned long x[2];
22 }  xdouble;
23 #elif defined OPENBLAS_EXPRECISION
24 #define xdouble long double
25 #else
26 #define xdouble double
27 #endif
28
29 #if defined(OPENBLAS_OS_WINDOWS) && defined(OPENBLAS___64BIT__)
30 typedef long long BLASLONG;
31 typedef unsigned long long BLASULONG;
32 #else
33 typedef long BLASLONG;
34 typedef unsigned long BLASULONG;
35 #endif
36
37 #ifndef BFLOAT16
38 typedef unsigned short bfloat16;
39 #endif
40
41 #ifdef OPENBLAS_USE64BITINT
42 typedef BLASLONG blasint;
43 #else
44 typedef int blasint;
45 #endif
46
47 #if defined(XDOUBLE) || defined(DOUBLE)
48 #define FLOATRET        FLOAT
49 #else
50 #ifdef NEED_F2CCONV
51 #define FLOATRET        double
52 #else
53 #define FLOATRET        float
54 #endif
55 #endif
56
57 /* Inclusion of a standard header file is needed for definition of __STDC_*
58    predefined macros with some compilers (e.g. GCC 4.7 on Linux).  This occurs
59    as a side effect of including either <features.h> or <stdc-predef.h>. */
60 #include <stdio.h>
61
62 /* C99 supports complex floating numbers natively, which GCC also offers as an
63    extension since version 3.0.  If neither are available, use a compatible
64    structure as fallback (see Clause 6.2.5.13 of the C99 standard). */
65 #if ((defined(__STDC_IEC_559_COMPLEX__) || __STDC_VERSION__ >= 199901L || \
66       (__GNUC__ >= 3 && !defined(__cplusplus))) && !(defined(FORCE_OPENBLAS_COMPLEX_STRUCT))) && !defined(_MSC_VER)
67   #define OPENBLAS_COMPLEX_C99
68 #ifndef __cplusplus
69   #include <complex.h>
70 #endif
71   typedef float _Complex openblas_complex_float;
72   typedef double _Complex openblas_complex_double;
73   typedef xdouble _Complex openblas_complex_xdouble;
74   #define openblas_make_complex_float(real, imag)    ((real) + ((imag) * _Complex_I))
75   #define openblas_make_complex_double(real, imag)   ((real) + ((imag) * _Complex_I))
76   #define openblas_make_complex_xdouble(real, imag)  ((real) + ((imag) * _Complex_I))
77   #define openblas_complex_float_real(z)             (creal(z))
78   #define openblas_complex_float_imag(z)             (cimag(z))
79   #define openblas_complex_double_real(z)            (creal(z))
80   #define openblas_complex_double_imag(z)            (cimag(z))
81   #define openblas_complex_xdouble_real(z)           (creal(z))
82   #define openblas_complex_xdouble_imag(z)           (cimag(z))
83 #else
84   #define OPENBLAS_COMPLEX_STRUCT
85   typedef struct { float real, imag; } openblas_complex_float;
86   typedef struct { double real, imag; } openblas_complex_double;
87   typedef struct { xdouble real, imag; } openblas_complex_xdouble;
88   #define openblas_make_complex_float(real, imag)    {(real), (imag)}
89   #define openblas_make_complex_double(real, imag)   {(real), (imag)}
90   #define openblas_make_complex_xdouble(real, imag)  {(real), (imag)}
91   #define openblas_complex_float_real(z)             ((z).real)
92   #define openblas_complex_float_imag(z)             ((z).imag)
93   #define openblas_complex_double_real(z)            ((z).real)
94   #define openblas_complex_double_imag(z)            ((z).imag)
95   #define openblas_complex_xdouble_real(z)           ((z).real)
96   #define openblas_complex_xdouble_imag(z)           ((z).imag)
97 #endif
98
99 /* Inclusion of Linux-specific header is needed for definition of cpu_set_t. */
100 #ifdef OPENBLAS_OS_LINUX
101 #include <sched.h>
102 #endif