1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
|
! This file created from f77/pt2pt/mprobef.f with f77tof90
!
! Copyright (C) by Argonne National Laboratory
! See COPYRIGHT in top-level directory
!
program main
use mpi
integer idx, ierr, rank, size, count
integer sendbuf(8), recvbuf(8)
integer s1(MPI_STATUS_SIZE), s2(MPI_STATUS_SIZE)
integer msg, errs
integer rreq
logical found, flag
ierr = -1
errs = 0
call mpi_init( ierr )
if (ierr .ne. MPI_SUCCESS) then
errs = errs + 1
print *, ' Unexpected return from MPI_INIT', ierr
endif
call mpi_comm_rank( MPI_COMM_WORLD, rank, ierr )
call mpi_comm_size( MPI_COMM_WORLD, size, ierr )
if (size .lt. 2) then
errs = errs + 1
print *, ' This test requires at least 2 processes'
! Abort now - do not continue in this case.
call mpi_abort( MPI_COMM_WORLD, 1, ierr )
endif
if (size .gt. 2) then
print *, ' This test is running with ', size, ' processes,'
print *, ' only 2 processes are used.'
endif
! Test 0: simple Send and Mprobe+Mrecv.
if (rank .eq. 0) then
sendbuf(1) = 1735928559
sendbuf(2) = 1277009102
call MPI_Send(sendbuf, 2, MPI_INTEGER, &
& 1, 5, MPI_COMM_WORLD, ierr)
else
do idx = 1, MPI_STATUS_SIZE
s1(idx) = 0
s2(idx) = 0
enddo
! the error fields are initialized for modification check.
s1(MPI_ERROR) = MPI_ERR_DIMS
s2(MPI_ERROR) = MPI_ERR_OTHER
msg = MPI_MESSAGE_NULL
call MPI_Mprobe(0, 5, MPI_COMM_WORLD, msg, s1, ierr)
if (s1(MPI_SOURCE) .ne. 0) then
errs = errs + 1
print *, 's1(MPI_SOURCE) != 0 at T0 Mprobe().'
endif
if (s1(MPI_TAG) .ne. 5) then
errs = errs + 1
print *, 's1(MPI_TAG) != 5 at T0 Mprobe().'
endif
if (s1(MPI_ERROR) .ne. MPI_ERR_DIMS) then
errs = errs + 1
print *, 's1(MPI_ERROR) != MPI_ERR_DIMS at T0 Mprobe().'
endif
if (msg .eq. MPI_MESSAGE_NULL) then
errs = errs + 1
print *, 'msg == MPI_MESSAGE_NULL at T0 Mprobe().'
endif
count = -1
call MPI_Get_count(s1, MPI_INTEGER, count, ierr)
if (count .ne. 2) then
errs = errs + 1
print *, 'probed buffer does not have 2 MPI_INTEGERs.'
endif
recvbuf(1) = 19088743
recvbuf(2) = 1309737967
call MPI_Mrecv(recvbuf, count, MPI_INTEGER, msg, s2, ierr)
if (recvbuf(1) .ne. 1735928559) then
errs = errs + 1
print *, 'recvbuf(1) is corrupted at T0 Mrecv().'
endif
if (recvbuf(2) .ne. 1277009102) then
errs = errs + 1
print *, 'recvbuf(2) is corrupted at T0 Mrecv().'
endif
if (s2(MPI_SOURCE) .ne. 0) then
errs = errs + 1
print *, 's2(MPI_SOURCE) != 0 at T0 Mrecv().'
endif
if (s2(MPI_TAG) .ne. 5) then
errs = errs + 1
print *, 's2(MPI_TAG) != 5 at T0 Mrecv().'
endif
if (s2(MPI_ERROR) .ne. MPI_ERR_OTHER) then
errs = errs + 1
print *, 's2(MPI_ERROR) != MPI_ERR_OTHER at T0 Mrecv().'
endif
if (msg .ne. MPI_MESSAGE_NULL) then
errs = errs + 1
print *, 'msg != MPI_MESSAGE_NULL at T0 Mrecv().'
endif
endif
! Test 1: simple Send and Mprobe+Imrecv.
if (rank .eq. 0) then
sendbuf(1) = 1735928559
sendbuf(2) = 1277009102
call MPI_Send(sendbuf, 2, MPI_INTEGER, &
& 1, 5, MPI_COMM_WORLD, ierr)
else
do idx = 1, MPI_STATUS_SIZE
s1(idx) = 0
s2(idx) = 0
enddo
! the error fields are initialized for modification check.
s1(MPI_ERROR) = MPI_ERR_DIMS
s2(MPI_ERROR) = MPI_ERR_OTHER
msg = MPI_MESSAGE_NULL
call MPI_Mprobe(0, 5, MPI_COMM_WORLD, msg, s1, ierr)
if (s1(MPI_SOURCE) .ne. 0) then
errs = errs + 1
print *, 's1(MPI_SOURCE) != 0 at T1 Mprobe().'
endif
if (s1(MPI_TAG) .ne. 5) then
errs = errs + 1
print *, 's1(MPI_TAG) != 5 at T1 Mprobe().'
endif
if (s1(MPI_ERROR) .ne. MPI_ERR_DIMS) then
errs = errs + 1
print *, 's1(MPI_ERROR) != MPI_ERR_DIMS at T1 Mprobe().'
endif
if (msg .eq. MPI_MESSAGE_NULL) then
errs = errs + 1
print *, 'msg == MPI_MESSAGE_NULL at T1 Mprobe().'
endif
count = -1
call MPI_Get_count(s1, MPI_INTEGER, count, ierr)
if (count .ne. 2) then
errs = errs + 1
print *, 'probed buffer does not have 2 MPI_INTEGERs.'
endif
rreq = MPI_REQUEST_NULL
recvbuf(1) = 19088743
recvbuf(2) = 1309737967
call MPI_Imrecv(recvbuf, count, MPI_INTEGER, msg, rreq, ierr)
if (rreq .eq. MPI_REQUEST_NULL) then
errs = errs + 1
print *, 'rreq is unmodified at T1 Imrecv().'
endif
call MPI_Wait(rreq, s2, ierr)
if (recvbuf(1) .ne. 1735928559) then
errs = errs + 1
print *, 'recvbuf(1) is corrupted at T1 Imrecv().'
endif
if (recvbuf(2) .ne. 1277009102) then
errs = errs + 1
print *, 'recvbuf(2) is corrupted at T1 Imrecv().'
endif
if (s2(MPI_SOURCE) .ne. 0) then
errs = errs + 1
print *, 's2(MPI_SOURCE) != 0 at T1 Imrecv().'
endif
if (s2(MPI_TAG) .ne. 5) then
errs = errs + 1
print *, 's2(MPI_TAG) != 5 at T1 Imrecv().'
endif
if (s2(MPI_ERROR) .ne. MPI_ERR_OTHER) then
errs = errs + 1
print *, 's2(MPI_ERROR) != MPI_ERR_OTHER at T1 Imrecv().'
endif
if (msg .ne. MPI_MESSAGE_NULL) then
errs = errs + 1
print *, 'msg != MPI_MESSAGE_NULL at T1 Imrecv().'
endif
endif
! Test 2: simple Send and Improbe+Mrecv.
if (rank .eq. 0) then
sendbuf(1) = 1735928559
sendbuf(2) = 1277009102
call MPI_Send(sendbuf, 2, MPI_INTEGER, &
& 1, 5, MPI_COMM_WORLD, ierr)
else
do idx = 1, MPI_STATUS_SIZE
s1(idx) = 0
s2(idx) = 0
enddo
! the error fields are initialized for modification check.
s1(MPI_ERROR) = MPI_ERR_DIMS
s2(MPI_ERROR) = MPI_ERR_OTHER
msg = MPI_MESSAGE_NULL
call MPI_Improbe(0, 5, MPI_COMM_WORLD, found, msg, s1, ierr)
do while (.not. found)
call MPI_Improbe(0, 5, MPI_COMM_WORLD, &
& found, msg, s1, ierr)
enddo
if (msg .eq. MPI_MESSAGE_NULL) then
errs = errs + 1
print *, 'msg == MPI_MESSAGE_NULL at T2 Improbe().'
endif
if (s1(MPI_SOURCE) .ne. 0) then
errs = errs + 1
print *, 's1(MPI_SOURCE) != 0 at T2 Improbe().'
endif
if (s1(MPI_TAG) .ne. 5) then
errs = errs + 1
print *, 's1(MPI_TAG) != 5 at T2 Improbe().'
endif
if (s1(MPI_ERROR) .ne. MPI_ERR_DIMS) then
errs = errs + 1
print *, 's1(MPI_ERROR) != MPI_ERR_DIMS at T2 Improbe().'
endif
count = -1
call MPI_Get_count(s1, MPI_INTEGER, count, ierr)
if (count .ne. 2) then
errs = errs + 1
print *, 'probed buffer does not have 2 MPI_INTEGERs.'
endif
recvbuf(1) = 19088743
recvbuf(2) = 1309737967
call MPI_Mrecv(recvbuf, count, MPI_INTEGER, msg, s2, ierr)
if (recvbuf(1) .ne. 1735928559) then
errs = errs + 1
print *, 'recvbuf(1) is corrupted at T2 Mrecv().'
endif
if (recvbuf(2) .ne. 1277009102) then
errs = errs + 1
print *, 'recvbuf(2) is corrupted at T2 Mrecv().'
endif
if (s2(MPI_SOURCE) .ne. 0) then
errs = errs + 1
print *, 's2(MPI_SOURCE) != 0 at T2 Mrecv().'
endif
if (s2(MPI_TAG) .ne. 5) then
errs = errs + 1
print *, 's2(MPI_TAG) != 5 at T2 Mrecv().'
endif
if (s2(MPI_ERROR) .ne. MPI_ERR_OTHER) then
errs = errs + 1
print *, 's2(MPI_ERROR) != MPI_ERR_OTHER at T2 Mrecv().'
endif
if (msg .ne. MPI_MESSAGE_NULL) then
errs = errs + 1
print *, 'msg != MPI_MESSAGE_NULL at T2 Mrecv().'
endif
endif
! Test 3: simple Send and Improbe+Imrecv.
if (rank .eq. 0) then
sendbuf(1) = 1735928559
sendbuf(2) = 1277009102
call MPI_Send(sendbuf, 2, MPI_INTEGER, &
& 1, 5, MPI_COMM_WORLD, ierr)
else
do idx = 1, MPI_STATUS_SIZE
s1(idx) = 0
s2(idx) = 0
enddo
! the error fields are initialized for modification check.
s1(MPI_ERROR) = MPI_ERR_DIMS
s2(MPI_ERROR) = MPI_ERR_OTHER
msg = MPI_MESSAGE_NULL
call MPI_Improbe(0, 5, MPI_COMM_WORLD, found, msg, s1, ierr)
do while (.not. found)
call MPI_Improbe(0, 5, MPI_COMM_WORLD, &
& found, msg, s1, ierr)
enddo
if (msg .eq. MPI_MESSAGE_NULL) then
errs = errs + 1
print *, 'msg == MPI_MESSAGE_NULL at T3 Improbe().'
endif
if (s1(MPI_SOURCE) .ne. 0) then
errs = errs + 1
print *, 's1(MPI_SOURCE) != 0 at T3 Improbe().'
endif
if (s1(MPI_TAG) .ne. 5) then
errs = errs + 1
print *, 's1(MPI_TAG) != 5 at T3 Improbe().'
endif
if (s1(MPI_ERROR) .ne. MPI_ERR_DIMS) then
errs = errs + 1
print *, 's1(MPI_ERROR) != MPI_ERR_DIMS at T3 Improbe().'
endif
count = -1
call MPI_Get_count(s1, MPI_INTEGER, count, ierr)
if (count .ne. 2) then
errs = errs + 1
print *, 'probed buffer does not have 2 MPI_INTEGERs.'
endif
rreq = MPI_REQUEST_NULL
recvbuf(1) = 19088743
recvbuf(2) = 1309737967
call MPI_Imrecv(recvbuf, count, MPI_INTEGER, msg, rreq, ierr)
if (rreq .eq. MPI_REQUEST_NULL) then
errs = errs + 1
print *, 'rreq is unmodified at T3 Imrecv().'
endif
call MPI_Wait(rreq, s2, ierr)
if (recvbuf(1) .ne. 1735928559) then
errs = errs + 1
print *, 'recvbuf(1) is corrupted at T3 Imrecv().'
endif
if (recvbuf(2) .ne. 1277009102) then
errs = errs + 1
print *, 'recvbuf(2) is corrupted at T3 Imrecv().'
endif
if (s2(MPI_SOURCE) .ne. 0) then
errs = errs + 1
print *, 's2(MPI_SOURCE) != 0 at T3 Imrecv().'
endif
if (s2(MPI_TAG) .ne. 5) then
errs = errs + 1
print *, 's2(MPI_TAG) != 5 at T3 Imrecv().'
endif
if (s2(MPI_ERROR) .ne. MPI_ERR_OTHER) then
errs = errs + 1
print *, 's2(MPI_ERROR) != MPI_ERR_OTHER at T3 Imrecv().'
endif
if (msg .ne. MPI_MESSAGE_NULL) then
errs = errs + 1
print *, 'msg != MPI_MESSAGE_NULL at T3 Imrecv().'
endif
endif
! Test 4: Mprobe+Mrecv with MPI_PROC_NULL
if (.true.) then
do idx = 1, MPI_STATUS_SIZE
s1(idx) = 0
s2(idx) = 0
enddo
! the error fields are initialized for modification check.
s1(MPI_ERROR) = MPI_ERR_DIMS
s2(MPI_ERROR) = MPI_ERR_OTHER
msg = MPI_MESSAGE_NULL
call MPI_Mprobe(MPI_PROC_NULL, 5, MPI_COMM_WORLD, &
& msg, s1, ierr)
if (s1(MPI_SOURCE) .ne. MPI_PROC_NULL) then
errs = errs + 1
print *, 's1(MPI_SOURCE) != MPI_PROC_NULL at T4 Mprobe().'
endif
if (s1(MPI_TAG) .ne. MPI_ANY_TAG) then
errs = errs + 1
print *, 's1(MPI_TAG) != MPI_ANY_TAG at T4 Mprobe().'
endif
if (s1(MPI_ERROR) .ne. MPI_ERR_DIMS) then
errs = errs + 1
print *, 's1(MPI_ERROR) != MPI_ERR_DIMS at T4 Mprobe().'
endif
if (msg .ne. MPI_MESSAGE_NO_PROC) then
errs = errs + 1
print *, 'msg != MPI_MESSAGE_NO_PROC at T4 Mprobe().'
endif
count = -1
call MPI_Get_count(s1, MPI_INTEGER, count, ierr)
if (count .ne. 0) then
errs = errs + 1
print *, 'probed buffer does not have 0 MPI_INTEGER.'
endif
recvbuf(1) = 19088743
recvbuf(2) = 1309737967
call MPI_Mrecv(recvbuf, count, MPI_INTEGER, msg, s2, ierr)
! recvbuf() should remain unmodified
if (recvbuf(1) .ne. 19088743) then
errs = errs + 1
print *, 'recvbuf(1) is corrupted at T4 Mrecv().'
endif
if (recvbuf(2) .ne. 1309737967) then
errs = errs + 1
print *, 'recvbuf(2) is corrupted at T4 Mrecv().'
endif
if (s2(MPI_SOURCE) .ne. MPI_PROC_NULL) then
errs = errs + 1
print *, 's2(MPI_SOURCE) != MPI_PROC_NULL at T4 Mrecv().'
endif
if (s2(MPI_TAG) .ne. MPI_ANY_TAG) then
errs = errs + 1
print *, 's2(MPI_TAG) != MPI_ANY_TAG at T4 Mrecv().'
endif
if (s2(MPI_ERROR) .ne. MPI_ERR_OTHER) then
errs = errs + 1
print *, 's2(MPI_ERROR) != MPI_ERR_OTHER at T4 Mrecv().'
endif
if (msg .ne. MPI_MESSAGE_NULL) then
errs = errs + 1
print *, 'msg != MPI_MESSAGE_NULL at T4 Mrecv().'
endif
count = -1
call MPI_Get_count(s2, MPI_INTEGER, count, ierr)
if (count .ne. 0) then
errs = errs + 1
print *, 'recv buffer does not have 0 MPI_INTEGER.'
endif
endif
! Test 5: Mprobe+Imrecv with MPI_PROC_NULL
if (.true.) then
do idx = 1, MPI_STATUS_SIZE
s1(idx) = 0
s2(idx) = 0
enddo
! the error fields are initialized for modification check.
s1(MPI_ERROR) = MPI_ERR_DIMS
s2(MPI_ERROR) = MPI_ERR_OTHER
msg = MPI_MESSAGE_NULL
call MPI_Mprobe(MPI_PROC_NULL, 5, MPI_COMM_WORLD, &
& msg, s1, ierr)
if (s1(MPI_SOURCE) .ne. MPI_PROC_NULL) then
errs = errs + 1
print *, 's1(MPI_SOURCE) != MPI_PROC_NULL at T5 Mprobe().'
endif
if (s1(MPI_TAG) .ne. MPI_ANY_TAG) then
errs = errs + 1
print *, 's1(MPI_TAG) != MPI_ANY_TAG at T5 Mprobe().'
endif
if (s1(MPI_ERROR) .ne. MPI_ERR_DIMS) then
errs = errs + 1
print *, 's1(MPI_ERROR) != MPI_ERR_DIMS at T5 Mprobe().'
endif
if (msg .ne. MPI_MESSAGE_NO_PROC) then
errs = errs + 1
print *, 'msg != MPI_MESSAGE_NO_PROC at T5 Mprobe().'
endif
count = -1
call MPI_Get_count(s1, MPI_INTEGER, count, ierr)
if (count .ne. 0) then
errs = errs + 1
print *, 'probed buffer does not have 0 MPI_INTEGER.'
endif
rreq = MPI_REQUEST_NULL
recvbuf(1) = 19088743
recvbuf(2) = 1309737967
call MPI_Imrecv(recvbuf, count, MPI_INTEGER, msg, rreq, ierr)
if (rreq .eq. MPI_REQUEST_NULL) then
errs = errs + 1
print *, 'rreq == MPI_REQUEST_NULL at T5 Imrecv().'
endif
flag = .false.
call MPI_Test(rreq, flag, s2, ierr)
if (.not. flag) then
errs = errs + 1
print *, 'flag is false at T5 Imrecv().'
endif
! recvbuf() should remain unmodified
if (recvbuf(1) .ne. 19088743) then
errs = errs + 1
print *, 'recvbuf(1) is corrupted at T5 Imrecv().'
endif
if (recvbuf(2) .ne. 1309737967) then
errs = errs + 1
print *, 'recvbuf(2) is corrupted at T5 Imrecv().'
endif
if (s2(MPI_SOURCE) .ne. MPI_PROC_NULL) then
errs = errs + 1
print *, 's2(MPI_SOURCE) != MPI_PROC_NULL at T5 Imrecv().'
endif
if (s2(MPI_TAG) .ne. MPI_ANY_TAG) then
errs = errs + 1
print *, 's2(MPI_TAG) != MPI_ANY_TAG at T5 Imrecv().'
endif
if (s2(MPI_ERROR) .ne. MPI_ERR_OTHER) then
errs = errs + 1
print *, 's2(MPI_ERROR) != MPI_ERR_OTHER at T5 Imrecv().'
endif
if (msg .ne. MPI_MESSAGE_NULL) then
errs = errs + 1
print *, 'msg != MPI_MESSAGE_NULL at T5 Imrecv().'
endif
count = -1
call MPI_Get_count(s2, MPI_INTEGER, count, ierr)
if (count .ne. 0) then
errs = errs + 1
print *, 'recv buffer does not have 0 MPI_INTEGER.'
endif
endif
! Test 6: Improbe+Mrecv with MPI_PROC_NULL
if (.true.) then
do idx = 1, MPI_STATUS_SIZE
s1(idx) = 0
s2(idx) = 0
enddo
! the error fields are initialized for modification check.
s1(MPI_ERROR) = MPI_ERR_DIMS
s2(MPI_ERROR) = MPI_ERR_OTHER
found = .false.
msg = MPI_MESSAGE_NULL
call MPI_Improbe(MPI_PROC_NULL, 5, MPI_COMM_WORLD, &
& found, msg, s1, ierr)
if (.not. found) then
errs = errs + 1
print *, 'found is false at T6 Improbe().'
endif
if (s1(MPI_SOURCE) .ne. MPI_PROC_NULL) then
errs = errs + 1
print *, 's1(MPI_SOURCE) != MPI_PROC_NULL at T6 Improbe()'
endif
if (s1(MPI_TAG) .ne. MPI_ANY_TAG) then
errs = errs + 1
print *, 's1(MPI_TAG) != MPI_ANY_TAG at T6 Improbe().'
endif
if (s1(MPI_ERROR) .ne. MPI_ERR_DIMS) then
errs = errs + 1
print *, 's1(MPI_ERROR) != MPI_ERR_DIMS at T6 Improbe().'
endif
if (msg .ne. MPI_MESSAGE_NO_PROC) then
errs = errs + 1
print *, 'msg != MPI_MESSAGE_NO_PROC at T6 Improbe().'
endif
count = -1
call MPI_Get_count(s1, MPI_INTEGER, count, ierr)
if (count .ne. 0) then
errs = errs + 1
print *, 'probed buffer does not have 0 MPI_INTEGER.'
endif
recvbuf(1) = 19088743
recvbuf(2) = 1309737967
call MPI_Mrecv(recvbuf, count, MPI_INTEGER, msg, s2, ierr)
! recvbuf() should remain unmodified
if (recvbuf(1) .ne. 19088743) then
errs = errs + 1
print *, 'recvbuf(1) is corrupted at T6 Mrecv().'
endif
if (recvbuf(2) .ne. 1309737967) then
errs = errs + 1
print *, 'recvbuf(2) is corrupted at T6 Mrecv().'
endif
if (s2(MPI_SOURCE) .ne. MPI_PROC_NULL) then
errs = errs + 1
print *, 's2(MPI_SOURCE) != MPI_PROC_NULL at T6 Mrecv().'
endif
if (s2(MPI_TAG) .ne. MPI_ANY_TAG) then
errs = errs + 1
print *, 's2(MPI_TAG) != MPI_ANY_TAG at T6 Mrecv().'
endif
if (s2(MPI_ERROR) .ne. MPI_ERR_OTHER) then
errs = errs + 1
print *, 's2(MPI_ERROR) != MPI_ERR_OTHER at T6 Mrecv().'
endif
if (msg .ne. MPI_MESSAGE_NULL) then
errs = errs + 1
print *, 'msg != MPI_MESSAGE_NULL at T6 Mrecv().'
endif
count = -1
call MPI_Get_count(s2, MPI_INTEGER, count, ierr)
if (count .ne. 0) then
errs = errs + 1
print *, 'recv buffer does not have 0 MPI_INTEGER.'
endif
endif
! Test 7: Improbe+Imrecv with MPI_PROC_NULL
if (.true.) then
do idx = 1, MPI_STATUS_SIZE
s1(idx) = 0
s2(idx) = 0
enddo
! the error fields are initialized for modification check.
s1(MPI_ERROR) = MPI_ERR_DIMS
s2(MPI_ERROR) = MPI_ERR_OTHER
found = .false.
msg = MPI_MESSAGE_NULL
call MPI_Improbe(MPI_PROC_NULL, 5, MPI_COMM_WORLD, &
& found, msg, s1, ierr)
if (.not. found) then
errs = errs + 1
print *, 'found is false at T7 Improbe().'
endif
if (s1(MPI_SOURCE) .ne. MPI_PROC_NULL) then
errs = errs + 1
print *, 's1(MPI_SOURCE) != MPI_PROC_NULL at T7 Improbe()'
endif
if (s1(MPI_TAG) .ne. MPI_ANY_TAG) then
errs = errs + 1
print *, 's1(MPI_TAG) != MPI_ANY_TAG at T7 Improbe().'
endif
if (s1(MPI_ERROR) .ne. MPI_ERR_DIMS) then
errs = errs + 1
print *, 's1(MPI_ERROR) != MPI_ERR_DIMS at T7 Improbe().'
endif
if (msg .ne. MPI_MESSAGE_NO_PROC) then
errs = errs + 1
print *, 'msg != MPI_MESSAGE_NO_PROC at T7 Improbe().'
endif
count = -1
call MPI_Get_count(s1, MPI_INTEGER, count, ierr)
if (count .ne. 0) then
errs = errs + 1
print *, 'probed buffer does not have 0 MPI_INTEGER.'
endif
rreq = MPI_REQUEST_NULL
recvbuf(1) = 19088743
recvbuf(2) = 1309737967
call MPI_Imrecv(recvbuf, count, MPI_INTEGER, msg, rreq, ierr)
if (rreq .eq. MPI_REQUEST_NULL) then
errs = errs + 1
print *, 'rreq == MPI_REQUEST_NULL at T7 Imrecv().'
endif
flag = .false.
call MPI_Test(rreq, flag, s2, ierr)
if (.not. flag) then
errs = errs + 1
print *, 'flag is false at T7 Imrecv().'
endif
! recvbuf() should remain unmodified
if (recvbuf(1) .ne. 19088743) then
errs = errs + 1
print *, 'recvbuf(1) is corrupted at T7 Imrecv().'
endif
if (recvbuf(2) .ne. 1309737967) then
errs = errs + 1
print *, 'recvbuf(2) is corrupted at T7 Imrecv().'
endif
if (s2(MPI_SOURCE) .ne. MPI_PROC_NULL) then
errs = errs + 1
print *, 's2(MPI_SOURCE) != MPI_PROC_NULL at T7 Imrecv().'
endif
if (s2(MPI_TAG) .ne. MPI_ANY_TAG) then
errs = errs + 1
print *, 's2(MPI_TAG) != MPI_ANY_TAG at T7 Imrecv().'
endif
if (s2(MPI_ERROR) .ne. MPI_ERR_OTHER) then
errs = errs + 1
print *, 's2(MPI_ERROR) != MPI_ERR_OTHER at T7 Imrecv().'
endif
if (msg .ne. MPI_MESSAGE_NULL) then
errs = errs + 1
print *, 'msg != MPI_MESSAGE_NULL at T7 Imrecv().'
endif
count = -1
call MPI_Get_count(s2, MPI_INTEGER, count, ierr)
if (count .ne. 0) then
errs = errs + 1
print *, 'recv buffer does not have 0 MPI_INTEGER.'
endif
endif
call mtest_finalize( errs )
end
|