Software craftsmanship, agile and well-being as a developer.
Experimenting with Cmajor in Jupyter
Working with DSP (Digital Signal Processors) is a bit of a lab experiment. When it comes to audio, it’s also important to be creative. In this article, I’m going to walk you through my approach to experimenting with DSP processors written in CMajor using Python and Jupyter notebooks. With a few tweaks, this method can be used to experiment with processors written in other languages and frameworks. Inspirations DSP testing is a topic on which I’ve had a lot of brooding. Coming from the backend development world, I used to use test-driven development technique and write test before writing logic. But what I found is that this approach is not suitable for DSP. Audio programming is similar to computer graphics, shaders, rendering etc. It’s hard to judge whether the processor is good without seeing or hearing the output. Also, the output is not fully deterministic and doesn’t have to be exactly the same every time. Depending on the CPU/GPU, it can vary a bit, which is totally fine. ...