Skip to content

Commit

Permalink
fix(par): header receive counter was allocated to the wrong size (MOD…
Browse files Browse the repository at this point in the history
  • Loading branch information
mjr-deltares authored Jul 31, 2024
1 parent 5ba7681 commit 06715f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Distributed/MpiRouter.f90
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ subroutine compose_messages(this, unit, stage, body_snd_t, body_rcv_t)
allocate (hdr_rcv_t(this%receivers%size))
allocate (hdr_snd_t(this%senders%size))
allocate (headers(max_headers, this%receivers%size))
allocate (hdr_rcv_cnt(max_headers))
allocate (hdr_rcv_cnt(this%receivers%size))

! allocate map data
allocate (map_snd_t(this%senders%size))
Expand Down

0 comments on commit 06715f3

Please sign in to comment.