You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This external performs DSP convolution by basically doing a lot of matrix math on a 368x2x128 data set and can get a bit CPU heavy when using multiple objects.
Some optimizations could be:
basic: change the main for loops to use pointer incrementation as opposed to indexing
advanced: platform/arch-specfic optimized matrix & vector math libs (for Apple platforms, the Accelerate framework)
This external performs DSP convolution by basically doing a lot of matrix math on a 368x2x128 data set and can get a bit CPU heavy when using multiple objects.
Some optimizations could be:
ping @SylvainPDR