Skip to content

Commit

Permalink
Revert "CI: Modify open mode"
Browse files Browse the repository at this point in the history
This reverts commit 51fcaff.
  • Loading branch information
tim-griesbach committed May 31, 2024
1 parent 51fcaff commit 5b20c41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
linux-gcc14:
runs-on: ubuntu-24.04
name: Linux mpi=${{ matrix.mpi }} CC=${{ matrix.cc }} shared=${{ matrix.shared }}
timeout-minutes: 61
timeout-minutes: 60

strategy:
matrix:
Expand Down
3 changes: 2 additions & 1 deletion src/p4est.c
Original file line number Diff line number Diff line change
Expand Up @@ -3602,7 +3602,8 @@ p4est_save_ext (const char *filename, p4est_t * p4est,
SC_CHECK_MPI (mpiret);
printf ("rank %d before MPI_file_open\n", p4est->mpirank);
mpiret = MPI_File_open (p4est->mpicomm, (char *) filename,
MPI_MODE_WRONLY | MPI_MODE_APPEND, MPI_INFO_NULL, &mpifile);
MPI_MODE_WRONLY | MPI_MODE_APPEND |
MPI_MODE_UNIQUE_OPEN, MPI_INFO_NULL, &mpifile);
SC_CHECK_MPI (mpiret);
printf ("rank %d after MPI_file_open\n", p4est->mpirank);
mpiret = MPI_File_get_position (mpifile, &mpipos);
Expand Down

0 comments on commit 5b20c41

Please sign in to comment.