diff --git a/.github/workflows/RunnerFullCI.yml b/.github/workflows/RunnerFullCI.yml index 265a1431..8f368ae0 100644 --- a/.github/workflows/RunnerFullCI.yml +++ b/.github/workflows/RunnerFullCI.yml @@ -83,7 +83,26 @@ jobs: cmake --install build ctest --test-dir build rm -rf build - + + # Configure-Build-Run-Run + - name: Compile NHVHPC GPU cuMPI inplace + run: | + ls -ltr ~/.bashrc + source ~/.bashrc + source ~/.profile_github + module load CMake + module load nvhpc + export FC=mpif90 + cmake -S . -B build -DBUILD_TESTING=ON -DBUILD_TARGET=gpu -DENABLE_NCCL=no -DENABLE_INPLACE=ON + cmake --build build -j 4 + cmake --install build + ctest --test-dir build + cmake -S . -B build -DNX=128 -DNY=128 -DNX=128 + cmake --build build -j 4 + cmake --install build + ctest --test-dir build + rm -rf build + # Configure-Build-Run - name: Compile NHVHPC GPU NCCL run: |