diff --git a/projects/clr/rocclr/device/pal/paldevice.cpp b/projects/clr/rocclr/device/pal/paldevice.cpp index 3b2b8e6429..91424d7fba 100644 --- a/projects/clr/rocclr/device/pal/paldevice.cpp +++ b/projects/clr/rocclr/device/pal/paldevice.cpp @@ -1594,13 +1594,10 @@ pal::Memory* Device::createBuffer(amd::Memory& owner, bool directAccess) const { // GPU will be reading from this host memory buffer, // so assume Host write into it type = Resource::RemoteUSWC; - remoteAlloc = true; } else { -#ifndef ATI_BITS_32 type = Resource::Remote; - remoteAlloc = true; -#endif } + remoteAlloc = true; } // Make sure owner has a valid hostmem pointer and it's not COPY if (!remoteAlloc && (owner.getHostMem() != nullptr)) {