hi all ...
i'm currently thinking of a way to export simd-optimized functions ...
at the moment they are implemented in the pd way of passing a pointer to the arguments ... some functions (plus/zero/copy_perform) are already exported this way, so i'd suggest to export the functions this way to make them available for external programmers ... anyway, it would be possible to write wrapper functions like:
plus_perf(t_int*); plus_perf_wrap(t_float* in1, t_float* in2, t_float* out, int n);
i'm curious, what other developers consider as being more elegant or efficient to use ...
cheers... tim