Skip to content

Commit fd8b6c6

Browse files
committed
these warnings appear to generate false positives
1 parent d85f387 commit fd8b6c6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/gmr.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -994,7 +994,7 @@ void gmr_handle_add_request(armci_hdl_t * handle, MPI_Request req)
994994
ARMCII_Warning("gmr_handle_add_request: handle is corrupt (single_request_array is not MPI_REQUEST_NULL).\n");
995995
}
996996
if (handle->request_array != NULL) {
997-
ARMCII_Warning("gmr_handle_add_request: handle is corrupt (request_array is not NULL).\n");
997+
//ARMCII_Warning("gmr_handle_add_request: handle is corrupt (request_array is not NULL).\n");
998998
}
999999

10001000
handle->batch_size = 1;
@@ -1006,7 +1006,7 @@ void gmr_handle_add_request(armci_hdl_t * handle, MPI_Request req)
10061006
ARMCII_Warning("gmr_handle_add_request: handle is corrupt (single_request_array is MPI_REQUEST_NULL).\n");
10071007
}
10081008
if (handle->request_array != NULL) {
1009-
ARMCII_Warning("gmr_handle_add_request: handle is corrupt (request_array is not NULL).\n");
1009+
//ARMCII_Warning("gmr_handle_add_request: handle is corrupt (request_array is not NULL).\n");
10101010
}
10111011

10121012
// there is a single request in the handle, so we allocate space for two,

src/onesided_nb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ int PARMCI_Wait(armci_hdl_t* handle)
252252
ARMCII_Warning("ARMCI_Wait: handle is corrupt (single_request_array is MPI_REQUEST_NULL)\n");
253253
}
254254
if (handle->request_array != NULL) {
255-
ARMCII_Warning("ARMCI_Wait: handle is corrupt (request_array is not NULL)\n");
255+
//ARMCII_Warning("ARMCI_Wait: handle is corrupt (request_array is not NULL)\n");
256256
}
257257

258258
MPI_Wait( &(handle->single_request), MPI_STATUS_IGNORE );

0 commit comments

Comments
 (0)