Lucas Colley
Lucas Colley
[The Python array API standard](https://data-apis.org/array-api/2022.12/) standardises common functionality across Python array/tensor libraries. NumPy, PyTorch and CuPy are planning to have full implementations, and Dask and JAX also have implementations in...
#### Reference issue None #### What does this implement/fix? First steps on JAX support. To-do: - Check device support (GPU/TPU) - Get existing tests to pass / skip where needed...
As per https://github.com/scipy/scipy/issues/19972#issuecomment-1912626337, the deprecations from gh-19067 didn't make their way into the 1.12.0 release notes.
### Is your feature request related to a problem? Please describe. An old PR, gh-12755, proposed adding a package for Automatically Regularized Least Squares to SciPy. See https://github.com/scipy/scipy/pull/12755#issuecomment-708029562 for thoughts...
https://github.com/scipy/scipy/issues/20162#issuecomment-1974801706 @HaoZeke On running SciPy's benchmark suite I see `Unknown environment type 'mamba'. Allowed values based on existing plugins are ['existing', 'conda', 'virtualenv'].`. Versions: - `asv 0.6.3` - `libmamba 1.5.6`...
[PEP8](https://peps.python.org/pep-0008/#public-and-internal-interfaces) says: > Even with `__all__` set appropriately, internal interfaces (packages, modules, classes, functions, attributes or other names) should still be prefixed with a single leading underscore. > > An...
Wall of warnings like ``` scipy/io/matlab/_streams.cpython-310-darwin.so.p/_streams.c:6214:28: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas] #pragma GCC diagnostic pop ^ ... scipy/stats/_unuran/unuran_wrapper.cpython-310-darwin.so.p/unuran_wrapper.c:27497:26: warning: pragma diagnostic pop could not...
As noted by @DietBru in gh-7588, the current C implementation used in `remez` has some bugs (gh-7588 and gh-11968), and it would be nice to have a new implementation which...
As a follow-up to gh-20199, there are some sections of https://scipy.github.io/devdocs/dev/core-dev/index.html#distributing which I don't feel confident updating myself. Some parts are clearly out of date, like a reference to `setup.py`,...
Towards gh-18867 I think this deserves its own issue. It should be quite simple to add support to `scipy.datasets`: just add a few `xp.asarray` wrappers. However, there are performance concerns...