Andrew Nelson

Results 137 comments of Andrew Nelson
trafficstars

Is the token saved in the GitHub settings somewhere?

@cclauss @hrnciar and others, there are nightly wheels for 3.11 now available at https://pypi.anaconda.org/scipy-wheels-nightly/simple/scipy/. It would be great if you could test them out.

You'll have issues building with Windows at the moment with meson at the moment if you don't compile with `mingw-w64/gfortran`. We're currently looking into building SciPy with meson on windows...

The document seems like a really good description. However, there's a few biggish things that aren't covered. 1. The document is focused on parallelism in BLAS. There are several places...

See https://github.com/thomasjpfan/parallelism-python-libraries-design/issues/1

The compiler toolchain in this [github actions](https://github.com/scipy/scipy/blob/main/.github/workflows/windows.yml) is `mingw-w64`, as provided by the `rtools` package installed with `choco`. ``` choco install rtools --no-progress # makes sure these compilers are picked...

@rgommers, I've been experimenting with cibuildwheel, specifically the macos-arm64 cross compilation target. I find that when gfortran is installed in a non-standard location, e.g: `/opt/gfortran-darwin-arm64/bin/arm64-apple-darwin20.0.0-gfortran` AND the `FC` environment is...

@eli-schwartz, I'm unsure of what "using the cross file" means. I've been experiencing issues trying to cross compile macos-arm64 using cibuildwheel. When it gets to the `delocate-listdeps` stage it's finding...

I've got to the stage where the `FC` variable is set to the correct cross compiler for arm64 (https://github.com/andyfaff/scipy/runs/7624660619?check_suite_focus=true, L463). From reading this [link](https://mesonbuild.com/Cross-compilation.html) it seems that a cross build...

IMO the default options should be used for all the benchmark problems, as that's what the majority of use will be. Tuning solvers to ace the suite reduces the usefulness...