You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

openblas_config_template.h 3.8 kB

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