From 71387c06651cd0867eb8e547f5282e92ba4edb34 Mon Sep 17 00:00:00 2001 From: Devendar Bureddy Date: Tue, 8 Sep 2020 22:46:54 +0300 Subject: [PATCH] UCX/RNDV/CUDA: fix topo --- src/ucp/core/ucp_context.h | 2 +- src/ucp/tag/rndv.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ucp/core/ucp_context.h b/src/ucp/core/ucp_context.h index e56f7902048..5393877ea3d 100644 --- a/src/ucp/core/ucp_context.h +++ b/src/ucp/core/ucp_context.h @@ -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. */ diff --git a/src/ucp/tag/rndv.c b/src/ucp/tag/rndv.c index 6615c587bb0..b06967bca71 100644 --- a/src/ucp/tag/rndv.c +++ b/src/ucp/tag/rndv.c @@ -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];