You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There were three bugs.
- `ompi_datatype_number_of_predefined_data` was one less because
it tracked the last f2c index number which starts with zero.
(`ompi_datatype_number_of_predefined_data` is used in the
`ompi_datatype_match_size` function and it expects the number,
not the index.)
- Two `for` loops did not visit `ompi_mpi_count` because the
comparison is `<` for the index, not `<=`.
- Two `for` loops did not visit four datatypes which were added
after `ompi_mpi_count`.
And, allow us to add the datatypes not in the monotonically
increasing order.
Signed-off-by: KAWASHIMA Takahiro <t-kawashima@fujitsu.com>
0 commit comments