Skip to content

Commit 00ee7db

Browse files
committed
comment prints
1 parent afd9166 commit 00ee7db

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

src/components/tl/ucp/tl_ucp_coll.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ static inline ucc_status_t ucc_tl_ucp_test_with_etasks(ucc_tl_ucp_task_t *task)
431431
node_ucc_ee_executor_task_t *current_node;
432432
node_ucc_ee_executor_task_t *prev_node;
433433

434-
ucc_info("in test_with_etasks");
434+
// ucc_info("in test_with_etasks");
435435

436436
if (UCC_TL_UCP_TASK_P2P_COMPLETE(task) && task->allgather_kn.etask_linked_list_head==NULL) {
437437
return UCC_OK;
@@ -442,7 +442,7 @@ static inline ucc_status_t ucc_tl_ucp_test_with_etasks(ucc_tl_ucp_task_t *task)
442442
while(current_node != NULL) {
443443
status = ucc_ee_executor_task_test(current_node->etask);
444444
if (status == UCC_OK) {
445-
ucc_info("finished : %d", current_node->etask->finished);
445+
// ucc_info("finished : %d", current_node->etask->finished);
446446
ucp_memcpy_device_complete(current_node->etask->completion, ucc_status_to_ucs_status(status));
447447
current_node->etask->finished = 1;
448448
status_2 = ucc_ee_executor_task_finalize(current_node->etask);
@@ -498,7 +498,7 @@ static inline ucc_status_t ucc_tl_ucp_test_recv_with_etasks(ucc_tl_ucp_task_t *t
498498
node_ucc_ee_executor_task_t *current_node;
499499
node_ucc_ee_executor_task_t *prev_node;
500500

501-
ucc_info("In recv_with_etasks");
501+
// ucc_info("In recv_with_etasks");
502502

503503
if (UCC_TL_UCP_TASK_RECV_COMPLETE(task) && task->allgather_kn.etask_linked_list_head==NULL) {
504504
return UCC_OK;
@@ -509,7 +509,7 @@ static inline ucc_status_t ucc_tl_ucp_test_recv_with_etasks(ucc_tl_ucp_task_t *t
509509
while(current_node != NULL) {
510510
status = ucc_ee_executor_task_test(current_node->etask);
511511
if (status == UCC_OK) {
512-
ucc_info("finished : %d", current_node->etask->finished);
512+
// ucc_info("finished : %d", current_node->etask->finished);
513513
ucp_memcpy_device_complete(current_node->etask->completion, ucc_status_to_ucs_status(status));
514514
current_node->etask->finished = 1;
515515
status_2 = ucc_ee_executor_task_finalize(current_node->etask);

src/components/tl/ucp/tl_ucp_context.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,13 +136,13 @@ ucc_tl_ucp_context_service_init(const char *prefix, ucp_params_t ucp_params,
136136
static int memcpy_device_start(void *dest, void *src, size_t size,
137137
void *completion, void *user_data) {
138138

139-
ucc_info("using memcpy_device_start");
139+
// ucc_info("using memcpy_device_start");
140140
ucc_status_t status;
141141
ucc_ee_executor_task_args_t eargs;
142142
ucc_ee_executor_t *exec;
143143
ucc_tl_ucp_task_t *task = (ucc_tl_ucp_task_t *) user_data;
144144

145-
ucc_info("memcpystart user data : %p", user_data);
145+
// ucc_info("memcpystart user data : %p", user_data);
146146
status = ucc_coll_task_get_executor(&task->super, &exec);
147147
if (ucc_unlikely(status < 0)) {
148148
return -1;
@@ -175,14 +175,14 @@ static int memcpy_device_start(void *dest, void *src, size_t size,
175175

176176
static int memcpy_device(void *dest, void *src, size_t size, void *user_data){
177177

178-
ucc_info("using memcpy_device");
178+
// ucc_info("using memcpy_device");
179179
ucc_status_t status;
180180
ucc_ee_executor_task_args_t eargs;
181181
ucc_ee_executor_t *exec;
182182
ucc_ee_executor_task_t *etask;
183183
ucc_tl_ucp_task_t *task = (ucc_tl_ucp_task_t *) user_data;
184184

185-
ucc_info("memcpy user data : %p", user_data);
185+
// ucc_info("memcpy user data : %p", user_data);
186186
status = ucc_coll_task_get_executor(&task->super, &exec);
187187
if (ucc_unlikely(status != UCC_OK)) {
188188
return status;

src/components/tl/ucp/tl_ucp_sendrecv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ ucc_tl_ucp_send_common_with_mem(void *buffer, size_t msglen, ucc_memory_type_t m
121121
req_param.user_data = user_data;
122122
req_param.memh = mh;
123123
task->tagged.send_posted++;
124-
ucc_info("before ucx, user_data : %p", user_data);
124+
// ucc_info("before ucx, user_data : %p", user_data);
125125
return ucp_tag_send_nbx(ep, buffer, 1, ucp_tag, &req_param);
126126
}
127127

@@ -231,7 +231,7 @@ ucc_tl_ucp_recv_common_with_mem(void *buffer, size_t msglen, ucc_memory_type_t m
231231
req_param.user_data = user_data;
232232
req_param.memh = mh;
233233
task->tagged.recv_posted++;
234-
ucc_info("before ucx (recv) : userdata : %p", user_data);
234+
// ucc_info("before ucx (recv) : userdata : %p", user_data);
235235
return ucp_tag_recv_nbx(team->worker->ucp_worker, buffer, 1, ucp_tag,
236236
ucp_tag_mask, &req_param);
237237
}

0 commit comments

Comments
 (0)