Johannes Demel
Johannes Demel
I'd really like to do this too. However, there are some pitfalls. The library itself is written in C. Thus, we require support for complex values. And MSVC does not...
I neither have the hardware nor the set up available to test any of this. Could you add all the steps to reproduce your issue please? This might help to...
I'm still trying to understand the issue. There's an `arm9` switch that seems to be missing in a CMake toolchain file. Which one exactly? Could you add a permalink to...
Your last error message sounds like something is missing on your host. `posix_memalign` should probably only ever be used on MacOS at this point. Unless you use an older VOLK...
VOLK is intended to run on specialized hardware and abstract that away for users. But VMs are not exactly the most reliable in passing on CPU features. We had a...
I assume C++ and C naming conventions are aligned on this one. According to the naming convention page you linked, we should drop the leading `__`. We need to discuss...
Currently, you can just add you volk kernel calls to your code and the first time such a function is called, `init_volk` is run. With explicit calls to `init_volk` and...
So yeah. It would be great to modify VOLK such that we can optionally call init and deinit. This should be optional though. Do you have a suggestion how we...
> What’s the point if it’s optional and doesn’t provide any benefit? The reported “leak” is not a problem. Even though I suggested how it could be fixed, I don’t...
> > The file is loaded only once. [...] Or don’t use unpredictable systems (GNU Radio wink) in the first place. > > Are you sure? What about multi-threaded applications....