From 0340d03cd19be2c23d2bf9912bf2e6da2a49f627 Mon Sep 17 00:00:00 2001 From: Howard Pritchard Date: Thu, 17 Jun 2021 11:40:01 -0600 Subject: [PATCH 1/4] LANL-CI: test building with cuda support on ibm p9+volta nodes Signed-off-by: Howard Pritchard --- .ci/lanl/gitlab-darwin-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.ci/lanl/gitlab-darwin-ci.yml b/.ci/lanl/gitlab-darwin-ci.yml index 3c850ce2b7c..1e93cedd196 100644 --- a/.ci/lanl/gitlab-darwin-ci.yml +++ b/.ci/lanl/gitlab-darwin-ci.yml @@ -35,9 +35,10 @@ build:ibm: SCHEDULER_PARAMETERS: "-ppower9 -t 1:00:00 -N 1 --ntasks-per-node=16" script: - module load ibm + - module load cuda/11.0 - git submodule update --init - ./autogen.pl - - ./configure CC=xlc FC=xlf CXX=xlc++ --prefix=$PWD/install_test --with-libevent=internal + - ./configure CC=xlc FC=xlf CXX=xlc++ --prefix=$PWD/install_test --with-libevent=internal --with-cuda=/usr/local/cuda-11.0 --with-ucx=$UCX_INSTALL_PATH_P9 - make -j 8 install - make check - export PATH=$PWD/install_test/bin:$PATH @@ -134,6 +135,7 @@ test:ibm: - pwd - ls - module load ibm + - module load cuda/11.0 - export PATH=$PWD/install_test/bin:$PATH - which mpirun - cd examples From 385c63a14099e572a11b218924addb5afe6b4654 Mon Sep 17 00:00:00 2001 From: Howard Pritchard Date: Thu, 24 Jun 2021 11:52:12 -0600 Subject: [PATCH 2/4] fake commit to check LANL gitlab CI Signed-off-by: Howard Pritchard --- NEWS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NEWS b/NEWS index cf25a034832..f01d4c50259 100644 --- a/NEWS +++ b/NEWS @@ -28,6 +28,8 @@ Additional copyrights may follow $HEADER$ +fake news + =========================================================================== This file contains the main features as well as overviews of specific From 6d4cefaba06799320ef52836e83b8f2f2a789473 Mon Sep 17 00:00:00 2001 From: Howard Pritchard Date: Thu, 24 Jun 2021 11:55:00 -0600 Subject: [PATCH 3/4] maybe need to touch another file Signed-off-by: Howard Pritchard --- examples/hello_c.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/hello_c.c b/examples/hello_c.c index ba30e167062..b9ef438a4db 100644 --- a/examples/hello_c.c +++ b/examples/hello_c.c @@ -22,5 +22,6 @@ int main(int argc, char *argv[]) printf("Hello, world, I am %d of %d, (%s, %d)\n", rank, size, version, len); MPI_Finalize(); + return 0; } From 23c33c28142f1950e4c65783b9c6694e0f6ebd38 Mon Sep 17 00:00:00 2001 From: Howard Pritchard Date: Thu, 24 Jun 2021 11:57:13 -0600 Subject: [PATCH 4/4] another hello world change Signed-off-by: Howard Pritchard --- examples/hello_c.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/hello_c.c b/examples/hello_c.c index b9ef438a4db..967c45aa65e 100644 --- a/examples/hello_c.c +++ b/examples/hello_c.c @@ -23,5 +23,6 @@ int main(int argc, char *argv[]) MPI_Finalize(); + return 0; }