@@ -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 );
0 commit comments