Skip to content

Commit 3af85e6

Browse files
committed
Merge branch 'mr-5-13-0-fixes' into 'master'
Fixes for 5.13.0-0rc1 Closes #116 See merge request parastation/psmpi!268
2 parents f0aba95 + 9e9524e commit 3af85e6

File tree

58 files changed

+54
-98165
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+54
-98165
lines changed

configure.ac

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -76,18 +76,6 @@ AC_ARG_WITH([hcoll], [
7676
])
7777
AC_SUBST([DISABLE_HCOLL])
7878

79-
DISABLE_UCC="true" # For the time being, disable UCC by default!
80-
AC_ARG_WITH([ucc], [
81-
--with-ucc[[=path]] Use UCC support (and specify path to UCC directory).
82-
],[
83-
if test "x$with_ucc" = "xno" ; then
84-
DISABLE_UCC="true"
85-
else
86-
DISABLE_UCC="false"
87-
fi
88-
])
89-
AC_SUBST([DISABLE_UCC])
90-
9179
AC_ARG_WITH([confset], [
9280
--with-confset[=set] Use predefined configuration set ["default"]
9381
default : Like 'gcc'
@@ -652,6 +640,17 @@ else
652640
CONF_OPS="$CONF_OPS --without-pmix --with-pmi=pmi1"
653641
fi
654642

643+
DISABLE_UCC="true" # For the time being, disable UCC by default!
644+
AC_ARG_WITH([ucc], [
645+
--with-ucc[[=path]] Use UCC support (and specify path to UCC directory). Default: no.
646+
],[
647+
if test "x$with_ucc" != "xno" ; then
648+
DISABLE_UCC="false"
649+
fi
650+
],[
651+
CONF_OPS="$CONF_OPS --without-ucc"
652+
])
653+
655654
AC_ARG_WITH([cuda], [
656655
--with-cuda[[=path]]
657656
Use CUDA awareness within ParaStation MPI (and specify path to CUDA directory)

dist/Makefile.sources

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ dist/Makefile \
2020
dist/Makefile.sources \
2121
dist/psmpi.spec.templ \
2222
dist/rpm_depgen \
23-
doc/Makefile.in \
2423
doc/antora/antora.yml \
2524
doc/antora/modules/ROOT/images/psmpi-overview.svg \
2625
doc/antora/modules/ROOT/nav.adoc \
@@ -30,18 +29,6 @@ doc/antora/modules/ROOT/pages/installation.adoc \
3029
doc/antora/modules/ROOT/pages/requirements.adoc \
3130
doc/antora/modules/ROOT/pages/runtime-parameters.adoc \
3231
doc/antora/modules/ROOT/pages/test-suite.adoc \
33-
doc/imb-perf-booster.txt \
34-
doc/imb-perf-jureca.txt \
35-
doc/mpich-patches/0001-Fix-According-to-MPICH-its-recursive_doubling-algori.patch \
36-
doc/mpich-patches/0002-coll-Fix-bug-in-MPICH-s-scatter_ring-algorithm-of-MP.patch \
37-
doc/mpich-patches/0003-coll-Tune-fix-internal-algorithm-selection-for.patch \
38-
doc/mpich-patches/0004-mpich-romio-Fix-some-error-code-handling-in-MPICH-s-.patch \
39-
doc/mpich-patches/0005-hcoll-Avoid-some-compiler-warnings-in-MPICH-s-hcoll-.patch \
40-
doc/mpich-patches/0006-msa-Add-MPID_Get_-max_-badge-to-ADI3-interface.patch \
41-
doc/mpich-patches/0007-mpich-Fix-for-Bcast-with-messages-2-GiB.patch \
42-
doc/mpich-patches/0008-mpich-Fix-for-Ibcast-with-messages-2-GiB.patch \
43-
doc/mpich-patches/list-of-patches.sh \
44-
doc/mpich-patches/list-of-patches.txt \
4532
mpich2/.gitignore \
4633
mpich2/.mailmap \
4734
mpich2/.travis.yml \
@@ -6284,10 +6271,10 @@ mpich2/src/mpid/psp/src/mpid_psp_request.h \
62846271
mpich2/src/mpid/psp/src/mpid_recv.c \
62856272
mpich2/src/mpid/psp/src/mpid_rma.c \
62866273
mpich2/src/mpid/psp/src/mpid_rma_accumulate.c \
6274+
mpich2/src/mpid/psp/src/mpid_rma_callbacks.c \
62876275
mpich2/src/mpid/psp/src/mpid_rma_get.c \
62886276
mpich2/src/mpid/psp/src/mpid_rma_put.c \
62896277
mpich2/src/mpid/psp/src/mpid_rma_sync.c \
6290-
mpich2/src/mpid/psp/src/mpid_rma_callbacks.c \
62916278
mpich2/src/mpid/psp/src/mpid_send.c \
62926279
mpich2/src/mpid/psp/src/mpid_spawn.c \
62936280
mpich2/src/mpid/psp/src/mpid_start.c \

doc/Makefile.in

Lines changed: 0 additions & 62 deletions
This file was deleted.

0 commit comments

Comments
 (0)