Skip to content

Commit

Permalink
REVIEW: fix review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergei-Lebedev committed Dec 5, 2024
1 parent 82565c3 commit b57f3c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/schedule/ucc_schedule.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
* Copyright (c) 2021-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
*
* See file LICENSE for terms.
*/
Expand Down
4 changes: 2 additions & 2 deletions src/schedule/ucc_schedule_pipelined.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
* Copyright (c) 2021-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
*
* See file LICENSE for terms.
*/
Expand Down Expand Up @@ -254,7 +254,7 @@ ucc_status_t ucc_dependency_handler(ucc_coll_task_t *parent,
ucc_coll_task_t *task)
{
ucc_status_t status;
uint8_t n_deps_satisfied;
uint32_t n_deps_satisfied;

n_deps_satisfied = ucc_atomic_fadd32(&task->n_deps_satisfied, 1);
ucc_assert(task->n_deps_satisfied > n_deps_satisfied);
Expand Down

0 comments on commit b57f3c9

Please sign in to comment.