Skip to content

Commit

Permalink
UCX/RNDV/CUDA: fix topo
Browse files Browse the repository at this point in the history
  • Loading branch information
bureddy committed Sep 8, 2020
1 parent 869bf03 commit 71387c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ucp/core/ucp_context.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ typedef struct ucp_context_config {
size_t seg_size;
/** RNDV pipeline fragment size */
size_t rndv_frag_size;
/** RNDV pipline send threshold */
/** RNDV pipeline send threshold */
size_t rndv_pipeline_send_thresh;
/** Threshold for using tag matching offload capabilities. Smaller buffers
* will not be posted to the transport. */
Expand Down
2 changes: 1 addition & 1 deletion src/ucp/tag/rndv.c
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ static void ucp_rndv_req_init_get_zcopy_lane_map(ucp_request_t *rndv_req)
}

if (ucs_popcount(lane_map) > 1) {
/* remove lanes if bandwidth is too less compare to best lane */
/* remove lanes if bandwidth is too low comparing to the best lane */
ucs_for_each_bit(lane_idx, lane_map) {
ucs_assert(lane_idx < UCP_MAX_LANES);
lane = ep_config->tag.rndv.get_zcopy_lanes[lane_idx];
Expand Down

0 comments on commit 71387c0

Please sign in to comment.