Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
More improvements to distribution messaging. Number of test particles…
Browse files Browse the repository at this point in the history
… on each image are reported in order.
  • Loading branch information
daminton committed Apr 24, 2023
1 parent d72a65b commit e689a29
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/swiftest/swiftest_coarray.f90
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,9 @@ module subroutine swiftest_coarray_distribute_system(nbody_system, param)

write(image_num_char,*) this_image()
write(ntp_num_char,*) nbody_system%tp%nbody
if (this_image() /= 1) sync images(this_image() - 1)
write(param%display_unit,*) "Image " // trim(adjustl(image_num_char)) // " ntp: " // trim(adjustl(ntp_num_char))
if (this_image() < num_images()) sync images(this_image() + 1)

deallocate(tmp, cotp)

Expand Down

0 comments on commit e689a29

Please sign in to comment.