Skip to content

Commit 3b8963c

Browse files
authored
Rename ABI from MPIwrapper to MPItrampoline (#549)
1 parent 890ee6e commit 3b8963c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/UnitTests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ jobs:
356356
runs-on: ${{ matrix.os }}
357357
env:
358358
JULIA_MPI_TEST_BINARY: MPItrampoline_jll
359-
JULIA_MPI_TEST_ABI: MPIwrapper
359+
JULIA_MPI_TEST_ABI: MPItrampoline
360360

361361
steps:
362362
- name: Checkout
@@ -407,7 +407,7 @@ jobs:
407407

408408
env:
409409
JULIA_MPI_TEST_BINARY: MPItrampoline_jll
410-
JULIA_MPI_TEST_ABI: MPIwrapper
410+
JULIA_MPI_TEST_ABI: MPItrampoline
411411
MPITRAMPOLINE_LIB: /usr/local/lib/libmpiwrapper.so
412412
MPITRAMPOLINE_MPIEXEC: /usr/bin/mpiexec
413413
OMPI_MCA_btl_base_warn_component_unused: 0

lib/MPIPreferences/src/MPIPreferences.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ elseif binary == "MPICH_jll"
1313
elseif binary == "OpenMPI_jll"
1414
"OpenMPI"
1515
elseif binary == "MPItrampoline_jll"
16-
"MPIwrapper"
16+
"MPItrampoline"
1717
else
1818
error("Unknown binary: $binary")
1919
end
@@ -168,7 +168,7 @@ function identify_abi(libmpi)
168168
elseif impl == "MicrosoftMPI"
169169
abi = "MicrosoftMPI"
170170
elseif impl == "MPIwrapper"
171-
abi = "MPIwrapper"
171+
abi = "MPItrampoline"
172172
else
173173
abi = "unknown"
174174
end

src/consts/consts.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ elseif MPIPreferences.abi == "OpenMPI"
3333
include("openmpi.jl")
3434
elseif MPIPreferences.abi == "MicrosoftMPI"
3535
include("microsoftmpi.jl")
36-
elseif MPIPreferences.abi == "MPIwrapper"
37-
include("mpiwrapper.jl")
36+
elseif MPIPreferences.abi == "MPItrampoline"
37+
include("mpitrampoline.jl")
3838
else
3939
error("Unknown MPI ABI $(MPIPreferences.abi)")
4040
end
File renamed without changes.

0 commit comments

Comments
 (0)