Jim Pivarski
Jim Pivarski
https://github.com/jpivarski/ragged/blob/1890589635309e2d92998290b0889ec52bcda4ae/src/ragged/_spec_creation_functions.py#L361-L399
The two TODOs in https://github.com/jpivarski/ragged/blob/96bb3132d7562cf7040b26a44dfcb53962ec409d/src/ragged/_spec_array_object.py#L838-L875
https://github.com/jpivarski/ragged/blob/96bb3132d7562cf7040b26a44dfcb53962ec409d/src/ragged/_spec_array_object.py#L637-L644 and https://github.com/jpivarski/ragged/blob/1890589635309e2d92998290b0889ec52bcda4ae/src/ragged/_spec_linear_algebra_functions.py#L14-L78
https://github.com/jpivarski/ragged/blob/96bb3132d7562cf7040b26a44dfcb53962ec409d/src/ragged/_spec_array_object.py#L343-L356
https://github.com/jpivarski/ragged/blob/96bb3132d7562cf7040b26a44dfcb53962ec409d/src/ragged/_spec_array_object.py#L280-L293 and https://github.com/jpivarski/ragged/blob/1890589635309e2d92998290b0889ec52bcda4ae/src/ragged/_spec_linear_algebra_functions.py#L81-L97
We've never before had a C++ class with members in the following pattern: 1. some basic type (int, float, bool...) 2. some not basic type (string, collection, class...) 3. more...
From https://github.com/numba/numba-rvsdg/issues/80#issuecomment-1610043380, I noticed that it's possible to make RVSDG from Python bytecode already. (I hadn't been paying close attention to all the progress that was being made here, but...
### Description Currently, if you do ```python cupy_array[some_iterable] ``` CuPy will interrogate `some_iterable` to see if it implements `__array_struct__`, `__array_interface__`, `__array__` (in that order) before concluding that `some_iterable` is not...
It was introduced in #927 to fix a segfault, and now it's producing segfaults again, but probably for a different reason. pytest hides the ROOT error messages, but they are:...
### Code cell contents ```python import piplite await piplite.install("mplhep") await piplite.install("hist") ``` ```python from hist import Hist ``` ```python h = Hist.new.Reg(10, -5, 5).Double() ``` ```python h ```  _(good)_...