Skip to content

Commit

Permalink
Merge pull request #135 from cwpearson/fix/134
Browse files Browse the repository at this point in the history
  • Loading branch information
cwpearson authored Jan 27, 2025
2 parents d7a00d0 + 86dc404 commit 7cafbbf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
mpirun --version
which mpicxx
mpicxx --version
which mpiexec
mpiexec --version
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "The ${{ github.repository }} repository has been cloned to the runner."
Expand Down Expand Up @@ -61,7 +63,7 @@ jobs:
KOKKOS_INSTALL: ${{ github.workspace }}/_deps/kokkos-install
COMM_SRC: ${{ github.workspace }}
COMM_BUILD: ${{ github.workspace }}/build
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- name: Install MPI
Expand All @@ -71,6 +73,8 @@ jobs:
mpirun --version
which mpicxx
mpicxx --version
which mpiexec
mpiexec --version
- name: Check out repository code
uses: actions/checkout@v4
- name: Build Kokkos
Expand Down
2 changes: 1 addition & 1 deletion unit_tests/test_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ int main(int argc, char *argv[]) {
MPI_Comm_size(MPI_COMM_WORLD, &size);
if (0 == rank) {
std::cerr << argv[0] << " (KokkosComm " << KOKKOSCOMM_VERSION_MAJOR << "." << KOKKOSCOMM_VERSION_MINOR << "."
<< KOKKOSCOMM_VERSION_PATCH << ")\n";
<< KOKKOSCOMM_VERSION_PATCH << ") with " << size << " ranks\n";
}

Kokkos::initialize();
Expand Down

0 comments on commit 7cafbbf

Please sign in to comment.