Marcus Müller
Marcus Müller
PyBOMBS is becoming a bit stabler, and it'd be very helpful if we could have people do `dnf install pybombs`, `yum install pybombs` … instead of the pip dance. I...
since https://github.com/gnuradio/gr-recipes/commit/35053cfa the UHD-3.14 branch is used. That defaults to `cmake -DENABLE_PYTHON3=OFF`. And that's no good, because it breaks `pybombs install -R gnuradio-default`. (at least on a clean Ubuntu 18.04,...
> In the past, mailto: URL schemas to link to email addresses were also supported for this URL type. It is recommended to not use them in new metadata, as...
In reaction to #167, the XSD file was removed – understandably, I might add, since maintaining that separately from a manual validator is a hassle. However, that was a bad...
The docs prominently discourage the use of the xmlns specifier. Which, as someone who's had to maintain a file format over multiple versions *of my own software, under my own...
clang complains, afaict correctly about implicitly rounding up `INT_MAX` to the next integer (logical, since a 32 bit float can't have more significant digits than a 32 bit int at...
`arch/x86/` contains several pieces of GPL (or compatible, haven't checked) code that does very DSPy stuff. Of prime interest are the `crc32` implementations, both for smaller chunks of data, which...
While debugging gnuradio/gnuradio#5013, I stumbled across `volk_get_index` calling itself indefinitely when using `volk_8u_x2_encodeframepolar_8u` (at least on Deb11). No matter the reason for finding the right implementation of that kernel failing,...
## Description This required quite a bit of experimentation. When using clang on a Linux (i.e., GCC-dominated) system, it uses the libgcc_s C++ runtime. Which doesn't contain atomics, and that...
## Description I add locks around window setting/usage. As a drive-by improvement, let's not use floor, ceil to implement (inherent) integer division semantics. ## Related Issue Fixes #7144 ## Which...