Skip to content

Commit ef72b3f

Browse files
committed
Fixup rebase issue
1 parent b064aef commit ef72b3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/adapters/cuda/command_buffer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ static ur_result_t enqueueCommandBufferFillHelper(
240240
CommandBuffer->Device->getContext()));
241241

242242
// Get sync point and register the cuNode with it.
243-
*SyncPoint = CommandBuffer->AddSyncPoint(
243+
*SyncPoint = CommandBuffer->addSyncPoint(
244244
std::make_shared<CUgraphNode>(GraphNodeFirst));
245245

246246
DepsList.clear();
@@ -273,7 +273,7 @@ static ur_result_t enqueueCommandBufferFillHelper(
273273

274274
GraphNodePtr = std::make_shared<CUgraphNode>(GraphNode);
275275
// Get sync point and register the cuNode with it.
276-
*SyncPoint = CommandBuffer->AddSyncPoint(GraphNodePtr);
276+
*SyncPoint = CommandBuffer->addSyncPoint(GraphNodePtr);
277277

278278
DepsList.clear();
279279
DepsList.push_back(*GraphNodePtr.get());

0 commit comments

Comments
 (0)