Changeset b65230a for src/mathutils.c
- Timestamp:
- Oct 1, 2017, 3:41:41 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:
- 9720945
- Parents:
- 3f90b7a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mathutils.c
r3f90b7a rb65230a 161 161 smpl_t tmp = 0.0; 162 162 #if defined(HAVE_INTEL_IPP) 163 aubio_ippsMean(s->data, (int)s->length, &tmp , ippAlgHintFast);163 aubio_ippsMean(s->data, (int)s->length, &tmp); 164 164 return tmp; 165 165 #elif defined(HAVE_ACCELERATE) … … 180 180 smpl_t tmp = 0.0; 181 181 #if defined(HAVE_INTEL_IPP) 182 aubio_ippsSum(s->data, (int)s->length, &tmp , ippAlgHintFast);182 aubio_ippsSum(s->data, (int)s->length, &tmp); 183 183 #elif defined(HAVE_ACCELERATE) 184 184 aubio_vDSP_sve(s->data, 1, &tmp, s->length);
Note: See TracChangeset
for help on using the changeset viewer.