Skip to content

Commit

Permalink
Merge pull request #82 from fredrikekre/patch-1
Browse files Browse the repository at this point in the history
Update MPI compat and set version to 0.2.11.
  • Loading branch information
amartinhuertas authored Oct 5, 2022
2 parents 78f5796 + c2168c0 commit 2646a3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PartitionedArrays"
uuid = "5a9dfac6-5c52-46f7-8278-5e2210713be9"
authors = ["Francesc Verdugo <[email protected]> and contributors"]
version = "0.2.10"
version = "0.2.11"

[deps]
Distances = "b4f34e82-e78d-54a5-968a-f98e89d6e8f7"
Expand All @@ -15,7 +15,7 @@ SparseMatricesCSR = "a0a7dd2c-ebf4-11e9-1f05-cf50bc540ca1"
[compat]
Distances = "0.10"
IterativeSolvers = "0.9"
MPI = "0.16 - 1.0"
MPI = "0.16, 0.17, 0.18, 0.19, 0.20"
SparseMatricesCSR = "0.6"
julia = "1.1"

Expand Down
2 changes: 1 addition & 1 deletion test/mpi/mpiexec.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function run_mpi_driver(;procs,file)
testdir = joinpath(mpidir,"..")
repodir = joinpath(testdir,"..")
mpiexec() do cmd
if MPI.MPI_LIBRARY == MPI.OpenMPI
if MPI.MPI_LIBRARY == "OpenMPI" || (isdefined(MPI, :OpenMPI) && MPI.MPI_LIBRARY == MPI.OpenMPI)
run(`$cmd -n $procs --oversubscribe $(Base.julia_cmd()) --project=$repodir $(joinpath(mpidir,file))`)
else
run(`$cmd -n $procs $(Base.julia_cmd()) --project=$repodir $(joinpath(mpidir,file))`)
Expand Down

2 comments on commit 2646a3a

@amartinhuertas
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/69570

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.11 -m "<description of version>" 2646a3a83b6c2bae04bb2ce65fa3a676ff4c8f33
git push origin v0.2.11

Please sign in to comment.