Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .ci/lanl/gitlab-darwin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ Additional copyrights may follow

$HEADER$

fake news

===========================================================================

This file contains the main features as well as overviews of specific
Expand Down
2 changes: 2 additions & 0 deletions examples/hello_c.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,7 @@ 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;
}