Changeset a6b5bf1
- Timestamp:
- Oct 1, 2017, 3:28:17 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:
- 95f5c83
- Parents:
- 81b3910
- Location:
- src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/aubio_priv.h
r81b3910 ra6b5bf1 124 124 #endif /* HAVE_ATLAS */ 125 125 126 #if !defined(HAVE_MEMCPY_HACKS) && !defined(HAVE_ACCELERATE) && !defined(HAVE_ATLAS) 126 #if defined HAVE_INTEL_IPP 127 #include <ippcore.h> 128 #include <ippvm.h> 129 #include <ipps.h> 130 #endif 131 132 #if !defined(HAVE_MEMCPY_HACKS) && !defined(HAVE_ACCELERATE) && !defined(HAVE_ATLAS) && !defined(HAVE_INTEL_IPP) 127 133 #define HAVE_NOOPT 1 128 134 #else -
src/cvec.c
r81b3910 ra6b5bf1 21 21 #include "aubio_priv.h" 22 22 #include "cvec.h" 23 24 #if defined HAVE_INTEL_IPP25 #include <ippcore.h>26 #include <ippvm.h>27 #include <ipps.h>28 #endif29 23 30 24 cvec_t * new_cvec(uint_t length) { -
src/fvec.c
r81b3910 ra6b5bf1 21 21 #include "aubio_priv.h" 22 22 #include "fvec.h" 23 24 #if defined HAVE_INTEL_IPP25 #include <ippcore.h>26 #include <ippvm.h>27 #include <ipps.h>28 #endif29 23 30 24 fvec_t * new_fvec(uint_t length) { -
src/mathutils.c
r81b3910 ra6b5bf1 25 25 #include "mathutils.h" 26 26 #include "musicutils.h" 27 28 #if defined HAVE_INTEL_IPP29 #include <ippcore.h>30 #include <ippvm.h>31 #include <ipps.h>32 #endif33 27 34 28 /** Window types */
Note: See TracChangeset
for help on using the changeset viewer.