Commit 81284b0
committed
fortran MPI_Waitall array_of_requests etc to dimension(*)
Looking at the 3rd language binding for each MPI function, eg
the fortran "USE mpi" or "INCLUDE ’mpif.h’" binding, I looked
at the various lines that had "dimension" and "array_of_...".
There were several things like MPI_Waitall where I changed
- integer, dimension(count), intent(inout) :: array_of_requests
+ integer, dimension(*), intent(inout) :: array_of_requests
and maybe one array_of_statuses for a spawn call
Signed-off-by: Mark Allen <markalle@us.ibm.com>
(cherry picked from commit 121bbe5)1 parent ab935d1 commit 81284b0
File tree
2 files changed
+15
-13
lines changed- ompi/mpi/fortran
- use-mpi-ignore-tkr
- use-mpi-tkr
2 files changed
+15
-13
lines changedLines changed: 7 additions & 6 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| 15 | + | |
15 | 16 | | |
16 | 17 | | |
17 | 18 | | |
| |||
3681 | 3682 | | |
3682 | 3683 | | |
3683 | 3684 | | |
3684 | | - | |
| 3685 | + | |
3685 | 3686 | | |
3686 | 3687 | | |
3687 | 3688 | | |
| |||
3696 | 3697 | | |
3697 | 3698 | | |
3698 | 3699 | | |
3699 | | - | |
| 3700 | + | |
3700 | 3701 | | |
3701 | 3702 | | |
3702 | 3703 | | |
| |||
3712 | 3713 | | |
3713 | 3714 | | |
3714 | 3715 | | |
3715 | | - | |
| 3716 | + | |
3716 | 3717 | | |
3717 | 3718 | | |
3718 | 3719 | | |
| |||
4244 | 4245 | | |
4245 | 4246 | | |
4246 | 4247 | | |
4247 | | - | |
| 4248 | + | |
4248 | 4249 | | |
4249 | 4250 | | |
4250 | 4251 | | |
| |||
4257 | 4258 | | |
4258 | 4259 | | |
4259 | 4260 | | |
4260 | | - | |
| 4261 | + | |
4261 | 4262 | | |
4262 | 4263 | | |
4263 | 4264 | | |
| |||
4272 | 4273 | | |
4273 | 4274 | | |
4274 | 4275 | | |
4275 | | - | |
| 4276 | + | |
4276 | 4277 | | |
4277 | 4278 | | |
4278 | 4279 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| 17 | + | |
17 | 18 | | |
18 | 19 | | |
19 | 20 | | |
| |||
1384 | 1385 | | |
1385 | 1386 | | |
1386 | 1387 | | |
1387 | | - | |
| 1388 | + | |
1388 | 1389 | | |
1389 | | - | |
| 1390 | + | |
1390 | 1391 | | |
1391 | 1392 | | |
1392 | 1393 | | |
| |||
1399 | 1400 | | |
1400 | 1401 | | |
1401 | 1402 | | |
1402 | | - | |
| 1403 | + | |
1403 | 1404 | | |
1404 | 1405 | | |
1405 | 1406 | | |
| |||
1415 | 1416 | | |
1416 | 1417 | | |
1417 | 1418 | | |
1418 | | - | |
| 1419 | + | |
1419 | 1420 | | |
1420 | 1421 | | |
1421 | 1422 | | |
| |||
1878 | 1879 | | |
1879 | 1880 | | |
1880 | 1881 | | |
1881 | | - | |
| 1882 | + | |
1882 | 1883 | | |
1883 | 1884 | | |
1884 | 1885 | | |
| |||
1891 | 1892 | | |
1892 | 1893 | | |
1893 | 1894 | | |
1894 | | - | |
| 1895 | + | |
1895 | 1896 | | |
1896 | 1897 | | |
1897 | 1898 | | |
| |||
1906 | 1907 | | |
1907 | 1908 | | |
1908 | 1909 | | |
1909 | | - | |
| 1910 | + | |
1910 | 1911 | | |
1911 | 1912 | | |
1912 | 1913 | | |
| |||
0 commit comments