P4 to Git Change 1128337 by rili@rili_opencl_stg on 2015/03/06 14:37:45

EPR #415638 - Improve APU performance
	                         - Force remote allocation of local and persistent memory to Remote from RemoteUSWC:
	                         - Use gpu copy for remote/pinned image/buffer.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpublit.cpp#114 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpuresource.cpp#211 edit
This commit is contained in:
foreman
2015-03-06 15:58:00 -05:00
والد ae9e6d1a92
کامیت 637492a7dd
2فایلهای تغییر یافته به همراه7 افزوده شده و 1 حذف شده
@@ -386,7 +386,12 @@ Resource::create(MemoryType memType, CreateParams* params, bool heap)
if (dev().settings().remoteAlloc_ && !heap &&
((memoryType() == Local) ||
(memoryType() == Persistent))) {
cal_.type_ = RemoteUSWC;
if (dev().settings().apuSystem_ && dev().settings().viPlus_) {
cal_.type_ = Remote;
}
else {
cal_.type_ = RemoteUSWC;
}
}
if (dev().settings().disablePersistent_ && (memoryType() == Persistent)) {