From 02ea7b40adf9dcd732f1579cbf060237b7dcf2f7 Mon Sep 17 00:00:00 2001
From: foreman
Date: Thu, 29 Aug 2019 14:50:18 -0400
Subject: [PATCH] P4 to Git Change 1991129 by gandryey@gera-win10 on 2019/08/29
14:43:47
SWDEV-79445 - OCL generic changes and code clean-up
- Remove the atomic flag from the pool of kernel arguments
Affected files ...
... //depot/stg/opencl/drivers/opencl/runtime/device/rocm/rocvirtual.cpp#85 edit
[ROCm/clr commit: dbcb93693f11839486d9bbb615e080053e756658]
---
projects/clr/rocclr/runtime/device/rocm/rocvirtual.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/projects/clr/rocclr/runtime/device/rocm/rocvirtual.cpp b/projects/clr/rocclr/runtime/device/rocm/rocvirtual.cpp
index fcfd34fdd7..04ed2df450 100644
--- a/projects/clr/rocclr/runtime/device/rocm/rocvirtual.cpp
+++ b/projects/clr/rocclr/runtime/device/rocm/rocvirtual.cpp
@@ -727,7 +727,7 @@ bool VirtualGPU::create(bool profilingEna) {
bool VirtualGPU::initPool(size_t kernarg_pool_size, uint signal_pool_count) {
kernarg_pool_size_ = kernarg_pool_size;
- kernarg_pool_base_ = reinterpret_cast(roc_device_.hostAlloc(kernarg_pool_size_, 1, true));
+ kernarg_pool_base_ = reinterpret_cast(roc_device_.hostAlloc(kernarg_pool_size_, 1));
if (kernarg_pool_base_ == nullptr) {
return false;
}