In PD/with Bela: Has anybody here experimented with dynamic
object creation and deletion,
abstraction loading and unloading,
audio file loading
etc.?

Looking over http://puredata.info/docs/tutorials/TipsAndTricks#undocumented-pd-internal-messages for that matter, and wondering, what works on Bela.

Due to libpd's CPU hogging i am seeking to dynamically get rid of especially unused audio components, and use them only, when needed (as opposed to muting, which yet leaves them active and using CPU). Using Heavy instead is not an option (too incomplete).

Anybody?

    If you want to use dynamic patching, expect a dropout when you do that, but apart from that it should work fine (if its regular behaviour can be described as "fine")

    jayrope Due to libpd's CPU hogging i am seeking to dynamically get rid of especially unused audio components, and use them only, when needed (as opposed to muting, which yet leaves them active and using CPU).

    The [switch~] object should do most of what you need already, by turning off DSP programmatically for selected subwindows, without resorting to dynamic patching.