Remove 32 bit conditions.

Change-Id: I4e2eebec63fb3aea939b69ac42dbc4db035610a5
Signed-off-by: Michal Mrozek <michal.mrozek@intel.com>
This commit is contained in:
Michal Mrozek
2020-03-11 15:36:37 +01:00
committed by sys_ocldev
parent d3f3c4a9de
commit 5b255433c5
3 changed files with 5 additions and 35 deletions

View File

@ -531,13 +531,7 @@ bool Buffer::isReadWriteOnCpuPreffered(void *ptr, size_t size) {
return true;
}
//if we are not in System Memory Pool, it is more beneficial to do the transfer on GPU
//for 32 bit applications, utilize CPU transfers here.
if (is64bit) {
return false;
}
return true;
return false;
}
Buffer *Buffer::createBufferHw(Context *context,