Hi,

I am writing a pure data external and was wondering if I could run the DSP section at a higher priority like a real-time task. Right now only my sensor inputs and the audio itself is running in real-time, but the DSP algorithm seems to be left behind. Thanks in advance!

Cheers, Klemenz

I am not sure I understand your question. The code you put in the DSP callback (typically EXTERNALNAME_perform(), or whatever you pass to dsp_add() will run in the Bela audio thread (real-time, the thread with the highest priority on the board). While it is possible, I don't see why you would want to run something above the priority of this. Do you want to have access to other threads?

Ah ok, EXTERNALNAME_perform already runs in the Bela audio thread. I thought it wouldn't. Good to know, then my algorithm is too slow. Is my pure data patch already compiled with the Heavy Audio Tools like you describe in your paper? The only way to increase performance would be to increase block size then. Is that right? Thanks!

    klemenz Is my pure data patch already compiled with the Heavy Audio Tools like you describe in your paper?

    No, that has to be done manually, and given how it doesn't support externals, you'd have to integrate your code with it in a different way (see here).

    klemenz The only way to increase performance would be to increase block size then.

    that could help. As an indication, moving from 16 to 128 blocksize should remove some overhead and give you maybe 5 to 7% extra CPU time. I don't think this would make your code intrinsically faster (the _perform() function will still be called every 16 samples, 8 times per block), but maybe it helps you evening out any CPU spikes you may have in there. If you want to write faster code, you may want to try and use some NEON intrinsics.