Changeset 088760e for src/aubio_priv.h
- Timestamp:
- Oct 31, 2018, 10:26:52 PM (6 years ago)
- Branches:
- feature/constantq
- Children:
- c03d191
- Parents:
- 45c2c5c (diff), 7a54b37 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/aubio_priv.h
r45c2c5c r088760e 71 71 #endif 72 72 73 #if def HAVE_ACCELERATE73 #if defined(HAVE_ACCELERATE) 74 74 #define HAVE_ATLAS 1 75 #define HAVE_BLAS 1 75 76 #include <Accelerate/Accelerate.h> 76 77 #elif defined(HAVE_ATLAS_CBLAS_H) 78 #elif defined(HAVE_BLAS) 79 #if defined(HAVE_ATLAS_CBLAS_H) 77 80 #define HAVE_ATLAS 1 78 81 #include <atlas/cblas.h> 79 #else 80 #undef HAVE_ATLAS 82 #elif defined(HAVE_OPENBLAS_CBLAS_H) 83 #include <openblas/cblas.h> 84 #elif defined(HAVE_CBLAS_H) 85 #include <cblas.h> 86 #endif 81 87 #endif 82 88 … … 114 120 #endif /* HAVE_ACCELERATE */ 115 121 122 #if defined(HAVE_BLAS) 123 #ifndef HAVE_AUBIO_DOUBLE 116 124 #ifdef HAVE_ATLAS 117 #ifndef HAVE_AUBIO_DOUBLE118 125 #define aubio_catlas_set catlas_sset 126 #endif /* HAVE_ATLAS */ 119 127 #define aubio_cblas_copy cblas_scopy 120 128 #define aubio_cblas_swap cblas_sswap 121 129 #define aubio_cblas_dot cblas_sdot 122 130 #else /* HAVE_AUBIO_DOUBLE */ 131 #ifdef HAVE_ATLAS 123 132 #define aubio_catlas_set catlas_dset 133 #endif /* HAVE_ATLAS */ 124 134 #define aubio_cblas_copy cblas_dcopy 125 135 #define aubio_cblas_swap cblas_dswap 126 136 #define aubio_cblas_dot cblas_ddot 127 137 #endif /* HAVE_AUBIO_DOUBLE */ 128 #endif /* HAVE_ ATLAS */138 #endif /* HAVE_BLAS */ 129 139 130 140 #if defined HAVE_INTEL_IPP … … 161 171 #if !defined(HAVE_MEMCPY_HACKS) && !defined(HAVE_ACCELERATE) && !defined(HAVE_ATLAS) && !defined(HAVE_INTEL_IPP) 162 172 #define HAVE_NOOPT 1 163 #else164 #undef HAVE_NOOPT165 173 #endif 166 174
Note: See TracChangeset
for help on using the changeset viewer.