P4 to Git Change 1613598 by gandryey@gera-w8 on 2018/10/02 14:25:19
SWDEV-79445 - OCL generic changes and code clean-up - Fix a crash with Unity, during RGP capture. Keep local size as 1 if the app didn't provide any Affected files ... ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palvirtual.cpp#126 edit
This commit is contained in:
@@ -2138,7 +2138,9 @@ bool VirtualGPU::submitKernelInternal(const amd::NDRangeContainer& sizes, const
|
||||
if (rgpCaptureEna()) {
|
||||
size_t newLocalSize[3] = { 1, 1, 1 };
|
||||
for (uint i = 0; i < sizes.dimensions(); i++) {
|
||||
newLocalSize[i] = sizes.local()[i];
|
||||
if (sizes.local()[i] != 0) {
|
||||
newLocalSize[i] = sizes.local()[i];
|
||||
}
|
||||
}
|
||||
dev().rgpCaptureMgr()->PreDispatch(this, hsaKernel,
|
||||
// Report global size in workgroups, since that's the RGP trace semantics
|
||||
|
||||
Reference in New Issue
Block a user