Changeset 630191c for src/mathutils.c
- Timestamp:
- Sep 21, 2018, 5:50:03 PM (6 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
- Children:
- fe05d1f
- Parents:
- 5447a26
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mathutils.c
r5447a26 r630191c 272 272 // if length is odd, middle element is moved to the end 273 273 if (2 * half < s->length) start ++; 274 #ifndef HAVE_ ATLAS274 #ifndef HAVE_BLAS 275 275 for (j = 0; j < half; j++) { 276 276 ELEM_SWAP (s->data[j], s->data[j + start]); … … 292 292 // if length is odd, middle element is moved to the beginning 293 293 if (2 * half < s->length) start ++; 294 #ifndef HAVE_ ATLAS294 #ifndef HAVE_BLAS 295 295 for (j = 0; j < half; j++) { 296 296 ELEM_SWAP (s->data[j], s->data[j + start]); … … 329 329 { 330 330 smpl_t energy = 0.; 331 #ifndef HAVE_ ATLAS331 #ifndef HAVE_BLAS 332 332 uint_t j; 333 333 for (j = 0; j < f->length; j++) {
Note: See TracChangeset
for help on using the changeset viewer.