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.4 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. #ifdef OPENBLAS_USE64BITINT
  32. typedef BLASLONG blasint;
  33. #else
  34. typedef int blasint;
  35. #endif
  36. #if defined(XDOUBLE) || defined(DOUBLE)
  37. #define FLOATRET FLOAT
  38. #else
  39. #ifdef NEED_F2CCONV
  40. #define FLOATRET double
  41. #else
  42. #define FLOATRET float
  43. #endif
  44. #endif
  45. /* Inclusion of a standard header file is needed for definition of __STDC_*
  46. predefined macros with some compilers (e.g. GCC 4.7 on Linux). This occurs
  47. as a side effect of including either <features.h> or <stdc-predef.h>. */
  48. #include <stdio.h>
  49. /* C99 supports complex floating numbers natively, which GCC also offers as an
  50. extension since version 3.0. If neither are available, use a compatible
  51. structure as fallback (see Clause 6.2.5.13 of the C99 standard). */
  52. #if ((defined(__STDC_IEC_559_COMPLEX__) || __STDC_VERSION__ >= 199901L || \
  53. (__GNUC__ >= 3 && !defined(__cplusplus))) && !(defined(FORCE_OPENBLAS_COMPLEX_STRUCT)))
  54. #define OPENBLAS_COMPLEX_C99
  55. #ifndef __cplusplus
  56. #include <complex.h>
  57. #endif
  58. typedef float _Complex openblas_complex_float;
  59. typedef double _Complex openblas_complex_double;
  60. typedef xdouble _Complex openblas_complex_xdouble;
  61. #define openblas_make_complex_float(real, imag) ((real) + ((imag) * _Complex_I))
  62. #define openblas_make_complex_double(real, imag) ((real) + ((imag) * _Complex_I))
  63. #define openblas_make_complex_xdouble(real, imag) ((real) + ((imag) * _Complex_I))
  64. #define openblas_complex_float_real(z) (creal(z))
  65. #define openblas_complex_float_imag(z) (cimag(z))
  66. #define openblas_complex_double_real(z) (creal(z))
  67. #define openblas_complex_double_imag(z) (cimag(z))
  68. #define openblas_complex_xdouble_real(z) (creal(z))
  69. #define openblas_complex_xdouble_imag(z) (cimag(z))
  70. #else
  71. #define OPENBLAS_COMPLEX_STRUCT
  72. typedef struct { float real, imag; } openblas_complex_float;
  73. typedef struct { double real, imag; } openblas_complex_double;
  74. typedef struct { xdouble real, imag; } openblas_complex_xdouble;
  75. #define openblas_make_complex_float(real, imag) {(real), (imag)}
  76. #define openblas_make_complex_double(real, imag) {(real), (imag)}
  77. #define openblas_make_complex_xdouble(real, imag) {(real), (imag)}
  78. #define openblas_complex_float_real(z) ((z).real)
  79. #define openblas_complex_float_imag(z) ((z).imag)
  80. #define openblas_complex_double_real(z) ((z).real)
  81. #define openblas_complex_double_imag(z) ((z).imag)
  82. #define openblas_complex_xdouble_real(z) ((z).real)
  83. #define openblas_complex_xdouble_imag(z) ((z).imag)
  84. #endif