From 6545b7265727344ce32821585aa6c3ba597d24e2 Mon Sep 17 00:00:00 2001 From: Ewan Crawford Date: Mon, 11 Mar 2024 15:02:11 +0000 Subject: [PATCH] Fixup rebase issue --- source/adapters/cuda/command_buffer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/adapters/cuda/command_buffer.cpp b/source/adapters/cuda/command_buffer.cpp index 797a3ea857..83ee76ae9f 100644 --- a/source/adapters/cuda/command_buffer.cpp +++ b/source/adapters/cuda/command_buffer.cpp @@ -240,7 +240,7 @@ static ur_result_t enqueueCommandBufferFillHelper( CommandBuffer->Device->getContext())); // Get sync point and register the cuNode with it. - *SyncPoint = CommandBuffer->AddSyncPoint( + *SyncPoint = CommandBuffer->addSyncPoint( std::make_shared(GraphNodeFirst)); DepsList.clear(); @@ -273,7 +273,7 @@ static ur_result_t enqueueCommandBufferFillHelper( GraphNodePtr = std::make_shared(GraphNode); // Get sync point and register the cuNode with it. - *SyncPoint = CommandBuffer->AddSyncPoint(GraphNodePtr); + *SyncPoint = CommandBuffer->addSyncPoint(GraphNodePtr); DepsList.clear(); DepsList.push_back(*GraphNodePtr.get());