Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dezhliao committed Sep 30, 2024
1 parent d6c4688 commit 95c4e4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/hsa-runtime/core/util/atomic_helpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ static __forceinline T
BasicCheck<T>();
PreFence(order);
std::atomic<T> atomic_var(*ptr);
T ret = atomic_var.Load(order);
T ret = atomic_var.load(order);
PostFence(order);
return ret;
}
Expand All @@ -159,7 +159,7 @@ static __forceinline T
BasicCheck<T>();
PreFence(order);
std::atomic<T> atomic_var(*ptr);
T ret = atomic_var.Load(order);
T ret = atomic_var.load(order);
PostFence(order);
return ret;
}
Expand Down

0 comments on commit 95c4e4b

Please sign in to comment.