mhostetter

Results 192 comments of mhostetter

Ah, good catch!! I tested with a different theme and saw similar phenomena. I'll search the Sphinx issue list and open a new issue if this wasn't previously reported. If...

@jbms I did some digging and made this change https://github.com/mhostetter/sphinx/commit/6008405161957a6eafed4a9c53ed9fd3a15403a8. The `sig` entering `stringify_signature()` is ```python (arg_1: int, arg_2: Type[foo._bar.Base] = , arg_3: str = 'something') ``` and the return...

Python 3.11 is now released, however we still need to wait for Numba 0.57 for support.

I'm having a similar issue. I installed GNU Radio 3.7 into prefix `~/gnuradio-3.7` and now am trying to install GNU Radio 3.8 into prefix `~/gnurdaio-3.8`. I'm running into the following...

Sorry it's been so long since I responded here. I think I'm not going to merge this for now. While I agree `order` may be a little confusing, hopefully the...

Most of the dev code wasn't pushed up. A new PR will be issued in the future.

These directives don't render the best in Sphinx Immaterial. Additionally, a per-object changelog may become overwhelming. I'm going to pass on this idea for now. ![image](https://user-images.githubusercontent.com/12112573/200831333-03fd7873-eb3d-409f-9ec8-27fca17ec610.png)

Treating the inputs to multiply as arrays (not scalars) works, but is ugly. ```python class fibonacci_lfsr_step_forward_jit(Function): @staticmethod def implementation(taps, state, steps): n = taps.size y = np.zeros(steps, dtype=state.dtype) # The...

I have restructured the code a lot since this issue was opened. I'm hoping it is more clear. I will continue to update module docstrings to help developers navigate the...

Are you using real captured signals or synthetically-generated signals? This error occurs if the bit 0 positions have exactly 0.0000 amplitude, which is unlikely in real captured signals. An easy...