- Timestamp:
- Sep 6, 2015, 10:26:05 AM (9 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 0a0d9b0
- Parents:
- 50961b9
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/aubio_priv.h
r50961b9 rb046c8c 104 104 #define aubio_catlas_set catlas_sset 105 105 #define aubio_cblas_copy cblas_scopy 106 #define aubio_cblas_swap cblas_sswap 107 #define aubio_cblas_dot cblas_sdot 106 108 #else /* HAVE_AUBIO_DOUBLE */ 107 109 #define aubio_catlas_set catlas_dset 108 110 #define aubio_cblas_copy cblas_dcopy 111 #define aubio_cblas_swap cblas_dswap 112 #define aubio_cblas_dot cblas_ddot 109 113 #endif /* HAVE_AUBIO_DOUBLE */ 110 114 #endif /* HAVE_ATLAS */ -
src/mathutils.c
r50961b9 rb046c8c 261 261 #else 262 262 uint_t half = s->length / 2; 263 aubio_cblas_ xswap(half, s->data, 1, s->data + half, 1);263 aubio_cblas_swap(half, s->data, 1, s->data + half, 1); 264 264 #endif 265 265 }
Note: See TracChangeset
for help on using the changeset viewer.