- Timestamp:
- Oct 1, 2017, 6:55:35 PM (7 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:
- f3f0d14
- Parents:
- 14e300e
- Location:
- src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/cvec.c
r14e300e rb701179 117 117 #elif defined(HAVE_MEMCPY_HACKS) 118 118 memset(s->norm, 0, s->length * sizeof(smpl_t)); 119 #else 119 #else 120 120 cvec_norm_set_all (s, 0.); 121 121 #endif -
src/fvec.c
r14e300e rb701179 103 103 #if defined(HAVE_INTEL_IPP) 104 104 aubio_ippsMul(s->data, weight->data, s->data, (int)length); 105 #elif defined(HAVE_ACCELERATE) 105 #elif defined(HAVE_ACCELERATE) 106 106 aubio_vDSP_vmul( s->data, 1, weight->data, 1, s->data, 1, length ); 107 107 #else … … 117 117 #if defined(HAVE_INTEL_IPP) 118 118 aubio_ippsMul(in->data, weight->data, out->data, (int)length); 119 #elif defined(HAVE_ACCELERATE) 119 #elif defined(HAVE_ACCELERATE) 120 120 aubio_vDSP_vmul(in->data, 1, weight->data, 1, out->data, 1, length); 121 121 #else -
src/mathutils.c
r14e300e rb701179 589 589 aubio_power_of_two_order (uint_t a) 590 590 { 591 int order = 0; 591 int order = 0; 592 592 int temp = aubio_next_power_of_two(a); 593 593 while (temp >>= 1) { -
src/spectral/fft.c
r14e300e rb701179 157 157 aubio_DSPSplitComplex spec; 158 158 smpl_t *in, *out; 159 159 160 160 #elif defined HAVE_INTEL_IPP // using Intel IPP 161 161 smpl_t *in, *out; … … 223 223 #elif defined HAVE_INTEL_IPP // using Intel IPP 224 224 const IppHintAlgorithm qualityHint = ippAlgHintAccurate; // OR ippAlgHintFast; 225 const int flags = IPP_FFT_NODIV_BY_ANY; // we're scaling manually afterwards 225 const int flags = IPP_FFT_NODIV_BY_ANY; // we're scaling manually afterwards 226 226 int order = aubio_power_of_two_order(winsize); 227 227 int sizeSpec, sizeInit, sizeBuffer;
Note: See TracChangeset
for help on using the changeset viewer.