From 60b435a7c38f9c847bad1f9b7b9cda3174a54758 Mon Sep 17 00:00:00 2001 From: Vladislav Sytchenko Date: Thu, 10 Sep 2020 14:59:55 -0400 Subject: [PATCH] Fix typo Change-Id: I571e84cab9258dfd5e94b70865505f452ed89016 [ROCm/clr commit: be0d98b4336bccb7bf13ec6249dba8b06dd2bec0] --- projects/clr/rocclr/device/pal/paldevice.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/clr/rocclr/device/pal/paldevice.hpp b/projects/clr/rocclr/device/pal/paldevice.hpp index 27fdef8bc9..127c6de6f9 100755 --- a/projects/clr/rocclr/device/pal/paldevice.hpp +++ b/projects/clr/rocclr/device/pal/paldevice.hpp @@ -259,7 +259,7 @@ class Device : public NullDevice { Resource::MemoryType type_; //!< The buffer's type size_t bufSize_; //!< Staged buffer size std::list freeBuffers_; //!< The list of free buffers - std:atomic acquiredCnt_; //!< The total number of acquired buffers + std::atomic acquiredCnt_; //!< The total number of acquired buffers amd::Monitor lock_; //!< Stgaed buffer acquire/release lock const Device& gpuDevice_; //!< GPU device object };