Skip to content

Commit

Permalink
Cache VOL develop branch now also requires MPI_Init_thread
Browse files Browse the repository at this point in the history
  • Loading branch information
wkliao committed Sep 16, 2023
1 parent e4f28fc commit 3b939b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion examples/parallel_run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ async_vol=no
cache_vol=no
log_vol=no
getenv_vol
if test "x$async_vol" = xyes ; then
if test "x$async_vol" = xyes || test "x$cache_vol" = xyes ; then
# Skip Async I/O VOL as it requires to call MPI_Init_thread()
# Skip Cache VOL as it also requires to call MPI_Init_thread()
exit 0
fi

Expand Down
3 changes: 2 additions & 1 deletion examples/seq_runs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ async_vol=no
cache_vol=no
log_vol=no
getenv_vol
if test "x$async_vol" = xyes ; then
if test "x$async_vol" = xyes || test "x$cache_vol" = xyes ; then
# Skip Async I/O VOL as it requires to call MPI_Init_thread()
# Skip Cache VOL as it also requires to call MPI_Init_thread()
exit 0
fi

Expand Down

0 comments on commit 3b939b9

Please sign in to comment.