P4 to Git Change 1058429 by gandryey@gera-dev-w7 on 2014/07/23 14:41:31

ECR #304775 - Device enqueuing
	- Add 1 to count the queue for the blit engine

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpuvirtual.cpp#326 edit


[ROCm/clr commit: 431b0d1047]
Tá an tiomantas seo le fáil i:
foreman
2014-07-23 15:23:50 -04:00
tuismitheoir 649664914e
tiomantas 4d4cb007af
@@ -458,7 +458,8 @@ VirtualGPU::create(
//! @todo Temporary workaround for Linux, because 2 HW queues only
//! Fixes conformance failures with multi queues
if ((0 == deviceQueueSize) || IS_WINDOWS) {
idx = index() % (dev().engines().numComputeRings() -
//! @note: Add 1 to account the device queue for transfers
idx = (index() + 1) % (dev().engines().numComputeRings() -
gpuDevice_.numDeviceQueues_);
}
else {