jakirkham
jakirkham
As part of Python 3.9 cleanup, one of the C++ tests failed in [this CI job]( https://github.com/rapidsai/raft/actions/runs/10509784822/job/29119156426?pr=2417#step:7:705 ) ``` The following tests FAILED: 1 - CLUSTER_TEST (Failed) ``` As this...
Having support for `dask` nightlies has been wonderful from a development standpoint Recently we noticed that we are getting quite a lot of them tracking back over the years (back...
In the docs here (see below) and [the legacy CPython docs]( https://docs.python.org/3.11/distutils/apiref.html#distutils.sysconfig.set_python_build ), `set_python_build` is covered https://github.com/pypa/distutils/blob/2e8c2a25c54ccdff2bc2eccbb25879c58b871219/docs/distutils/apiref.rst?plain=1#L1554-L1559 However am not seeing it defined in the code here. It looks like...
After noticing a few missing dependencies ( https://github.com/rapidsai/wholegraph/issues/210 ) & ( https://github.com/rapidsai/wholegraph/issues/211 ), ran [`depfinder`]( https://github.com/ericdill/depfinder?tab=readme-ov-file#using-depfinder ) on `wholegraph` and got the following output: ```json { "builtin": [ "argparse", "importlib",...
Currently NumPy appears to be a hard dependency https://github.com/rapidsai/wholegraph/blob/44e8a4c852c3dcd83bd2e5252758e45f99866fa9/python/pylibwholegraph/pylibwholegraph/torch/data_loader.py#L14 https://github.com/rapidsai/wholegraph/blob/44e8a4c852c3dcd83bd2e5252758e45f99866fa9/python/pylibwholegraph/pylibwholegraph/binding/wholememory_binding.pyx#L30 However it isn't listed in conda or the wheel https://github.com/rapidsai/wholegraph/blob/44e8a4c852c3dcd83bd2e5252758e45f99866fa9/conda/recipes/pylibwholegraph/meta.yaml#L68-L74 https://github.com/rapidsai/wholegraph/blob/44e8a4c852c3dcd83bd2e5252758e45f99866fa9/python/pylibwholegraph/pyproject.toml#L22-L37 Should this be updated to reflect this dependency?
During a recent review of dependencies here we noticed that [PyTorch is a dependency]( https://github.com/search?q=repo%3Arapidsai%2Fwholegraph%20import%20torch&type=code ), but is not listed as one at runtime https://github.com/rapidsai/wholegraph/blob/9b877a45519d3aba707884fddf9c3a837ac32719/conda/recipes/pylibwholegraph/meta.yaml#L68-L74 However there are a range...
### Describe your issue Tried the naive approach to convert a typed `memoryview` to a `tuple`. However noticed that the C code generated handled the typed `memoryview` like a generic...
This is still WIP Start working on other properties that would be useful to expose from the `memoryview` type Builds off the work already done in PR: https://github.com/cython/cython/pull/5073
### Describe your issue Conditional compilation is scheduled for deprecation as discussed in issue ( https://github.com/cython/cython/issues/4310 ). However it still appears to be used in this GIL example and associated...