blob: be60552a7d1b5ecac5c07fd3aca8c1b54c7348a6 (
plain)
1
2
3
4
5
6
7
8
9
|
implicit none
if (this_image() == 1) print *, 'number of Fortran coarray images:', num_images()
sync all ! semaphore, ensures message above is printed at top.
print *, 'Process ', this_image()
end program
|