Mosè Giordano
Mosè Giordano
I just run into this issue. I don't see how one can set size of a `subplot` directly, and setting it inside the last subplot is rather inconvenient to say...
Also for me running the tests with Julia v1.7.2 still picks up MPICH_jll instead of the system MPI.
What I'm doing right now to run the tests with system MPI is to activate the test environment and run `MPIPreferences.use_system_binary()`. Then, I replaced https://github.com/JuliaParallel/MPI.jl/blob/49dcc801a3a2cd2c2f6c219c85416e404cf98c48/test/runtests.jl#L2-L9 with ```julia @show Base.load_path() test_project...
My problem is that I 1. don't know much powershell 2. don't have access to a Windows system for testing 🙂
You can use ```julia MPIPreferences.use_system_binary(; library_names=["libmpi_cray"], mpiexec="srun") ``` See the documentation for more details: https://juliaparallel.org/MPI.jl/dev/reference/mpipreferences/#MPIPreferences.use_system_binary
One thing we can probably do is to add `libmpi_cray.so` to the default list of names, we already have some other vendor-specific names. Maybe also improve the error message to...
> I am testing Julia MPI on CSC LUMI using `#master` branch of MPI, and still had to execute `MPIPreferences.use_system_binary(; library_names=["libmpi_cray"], mpiexec="srun")` as https://github.com/JuliaParallel/MPI.jl/pull/614 seems not to work yet. Any...
I just realised what was my problem: #614 isn't in any released version of `MPIPreferences` yet! With `]add MPIPreferences#master` instead I get ``` julia> MPIPreferences.use_system_binary(; mpiexec="srun") ┌ Info: MPI implementation...
I'm going to close this ticket as I believe the original issue was fixed by #614 (but remember you may need to change `mpiexec` value if you want to use...
I agree with Valentin that making these artifacts lazy isn't a good idea. Also because loading time of JLL packages with lazy artifacts is larger than for non-lazy packages. I...