Skip to content

Commit

Permalink
Merge pull request rapidsai#80 from rapidsai/branch-0.16
Browse files Browse the repository at this point in the history
[gpuCI] Auto-merge branch-0.16 to branch-0.17 [skip ci]
  • Loading branch information
GPUtester authored Oct 9, 2020
2 parents bfe7d73 + 44eedb2 commit 60a231e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
- PR #68: Change the type of recvcounts & displs in allgatherv from size_t[] to size_t* and int[] to size_t*, respectively.
- PR #69: Updates for RMM being header only
- PR #74: Fix std_comms::comm_split bug
- PR #79: remove debug print statements

# RAFT 0.15.0 (Date TBD)

Expand Down
1 change: 0 additions & 1 deletion cpp/include/raft/comms/std_comms.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,6 @@ class std_comms : public comms_iface {
restart = true;

// perform cleanup
std::cout << "Freeing request" << std::endl;
ucp_handler_.free_ucp_request(req);

// remove from pending requests
Expand Down
5 changes: 0 additions & 5 deletions cpp/include/raft/comms/ucp_helper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ class comms_ucp_handler {
void free_ucp_request(ucp_request *request) const {
if (request->needs_release) {
request->req->completed = 0;
std::cout << "FREEING REQUEST" << std::endl;
(*(req_free_func))(request->req);
}
free(request);
Expand All @@ -181,8 +180,6 @@ class comms_ucp_handler {
ep_ptr, buf, size, ucp_dt_make_contig(1), ucp_tag, send_callback);
struct ucx_context *ucp_req = (struct ucx_context *)send_result;

std::cout << "REQ: " << ucp_req << std::endl;

if (UCS_PTR_IS_ERR(send_result)) {
ASSERT(!UCS_PTR_IS_ERR(send_result),
"unable to send UCX data message (%d)\n",
Expand Down Expand Up @@ -226,8 +223,6 @@ class comms_ucp_handler {
req->is_send_request = false;
req->other_rank = sender_rank;

std::cout << "REQ: " << ucp_req << std::endl;

ASSERT(!UCS_PTR_IS_ERR(recv_result),
"unable to receive UCX data message (%d)\n",
UCS_PTR_STATUS(recv_result));
Expand Down

0 comments on commit 60a231e

Please sign in to comment.