Skip to content

Commit

Permalink
Fixup rebase issue
Browse files Browse the repository at this point in the history
  • Loading branch information
EwanC committed Mar 11, 2024
1 parent beb3739 commit 6545b72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/adapters/cuda/command_buffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<CUgraphNode>(GraphNodeFirst));

DepsList.clear();
Expand Down Expand Up @@ -273,7 +273,7 @@ static ur_result_t enqueueCommandBufferFillHelper(

GraphNodePtr = std::make_shared<CUgraphNode>(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());
Expand Down

0 comments on commit 6545b72

Please sign in to comment.