Johannes Demel
Johannes Demel
I see multiple options: - We could add a `GENTOO` build type. - We could turn this error into a warning. - We could add another CMake switch to allow...
Could you rewrite your example in Python? Do you suggest a kernel that looks smth like this ``` void volk_32fc_fold_32fc(result, src, integer_fold, num_points) ``` Essentially a combination of `volk_32f_x2_add_32f` and...
So the function signature should look like this? ``` void volk_32fc_fold_32fc(float complex* out, const float complex *in, const float scale, const int fold, const unsigned int num_points) ``` 1. Should...
I'm aware that this is not perfect. Unfortunately, it is the only tool I found that does CMake formatting. Of course, I'd be happy to use a better tool. Do...
Thanks for the hint. Do you have a reference to read? And would you be willing to create a PR with this change?
It'd be a huge effort to update all the copyright years in every file. Obviously, we'd need to have a script to automate that. As far as I know, GR...
I can confirm this issue on my machine. ``` warning: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Wimplicit-int-float-conversion] ``` I'm curious why this value is...
This issue reveals a few interesting points. According to the "reproducible build bot", we may filter the `«-fdebug-prefix-map=${BUILDPATH}=`, `-ffile-prefix-map=${BUILDPATH}=`, and `-fmacro-prefix-map=${BUILDPATH}=` flags before we fill the template. The other two...
This is the [CMake string replace](https://cmake.org/cmake/help/latest/command/string.html#replace) command. The `COMPILER_INFO` variable may contain a build path. With this change, it shouldn't anymore. Instead every occurence is replace with `$BUILD_DIR`. Seems like...
Well. We need some special treatment to build VOLK on ARMv7. I'm not entirely sure how to accomplish that though.