From 8b8720c77d43253ddf7c7f91529b196dec60196c Mon Sep 17 00:00:00 2001 From: Ilya Kryukov Date: Tue, 3 Sep 2024 13:37:09 +0200 Subject: [PATCH] TL/CUDA: fixed compilation --- src/components/tl/cuda/bcast/bcast_linear.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/tl/cuda/bcast/bcast_linear.c b/src/components/tl/cuda/bcast/bcast_linear.c index 3ea31d4ba4..992dce9470 100644 --- a/src/components/tl/cuda/bcast/bcast_linear.c +++ b/src/components/tl/cuda/bcast/bcast_linear.c @@ -94,7 +94,7 @@ void ucc_tl_cuda_bcast_linear_progress(ucc_coll_task_t *coll_task) st = ucc_coll_task_get_executor(&task->super, &exec); if (ucc_unlikely(st != UCC_OK)) { - task->status = st; + task->super.status = st; return; }