Minor fix to take care of uninitialized variables
Change-Id: I6172dbb5c92d072561f3b710e663794e9f35411a Signed-off-by: Vinod Tipparaju <vinod.tipparaju@intel.com>
This commit is contained in:
parent
da6377da07
commit
c7ec23c836
|
@ -86,7 +86,7 @@ ze_result_t DeviceImp::createCommandList(const ze_command_list_desc_t *desc,
|
||||||
uint32_t engineGroupIndex = desc->commandQueueGroupOrdinal;
|
uint32_t engineGroupIndex = desc->commandQueueGroupOrdinal;
|
||||||
mapOrdinalForAvailableEngineGroup(&engineGroupIndex);
|
mapOrdinalForAvailableEngineGroup(&engineGroupIndex);
|
||||||
bool useBliter = engineGroupIndex == static_cast<uint32_t>(NEO::EngineGroupType::Copy);
|
bool useBliter = engineGroupIndex == static_cast<uint32_t>(NEO::EngineGroupType::Copy);
|
||||||
ze_result_t returnValue;
|
ze_result_t returnValue = ZE_RESULT_SUCCESS;
|
||||||
*commandList = CommandList::create(productFamily, this, useBliter, returnValue);
|
*commandList = CommandList::create(productFamily, this, useBliter, returnValue);
|
||||||
|
|
||||||
return returnValue;
|
return returnValue;
|
||||||
|
@ -98,7 +98,7 @@ ze_result_t DeviceImp::createCommandListImmediate(const ze_command_queue_desc_t
|
||||||
uint32_t engineGroupIndex = desc->ordinal;
|
uint32_t engineGroupIndex = desc->ordinal;
|
||||||
mapOrdinalForAvailableEngineGroup(&engineGroupIndex);
|
mapOrdinalForAvailableEngineGroup(&engineGroupIndex);
|
||||||
bool useBliter = engineGroupIndex == static_cast<uint32_t>(NEO::EngineGroupType::Copy);
|
bool useBliter = engineGroupIndex == static_cast<uint32_t>(NEO::EngineGroupType::Copy);
|
||||||
ze_result_t returnValue;
|
ze_result_t returnValue = ZE_RESULT_SUCCESS;
|
||||||
*phCommandList = CommandList::createImmediate(productFamily, this, desc, false, useBliter, returnValue);
|
*phCommandList = CommandList::createImmediate(productFamily, this, desc, false, useBliter, returnValue);
|
||||||
|
|
||||||
return returnValue;
|
return returnValue;
|
||||||
|
@ -613,7 +613,7 @@ Device *Device::create(DriverHandle *driverHandle, NEO::Device *neoDevice, uint3
|
||||||
cmdQueueDesc.flags = 0;
|
cmdQueueDesc.flags = 0;
|
||||||
cmdQueueDesc.stype = ZE_STRUCTURE_TYPE_COMMAND_QUEUE_DESC;
|
cmdQueueDesc.stype = ZE_STRUCTURE_TYPE_COMMAND_QUEUE_DESC;
|
||||||
cmdQueueDesc.mode = ZE_COMMAND_QUEUE_MODE_SYNCHRONOUS;
|
cmdQueueDesc.mode = ZE_COMMAND_QUEUE_MODE_SYNCHRONOUS;
|
||||||
ze_result_t returnValue;
|
ze_result_t returnValue = ZE_RESULT_SUCCESS;
|
||||||
device->pageFaultCommandList =
|
device->pageFaultCommandList =
|
||||||
CommandList::createImmediate(
|
CommandList::createImmediate(
|
||||||
device->neoDevice->getHardwareInfo().platform.eProductFamily, device, &cmdQueueDesc, true, false, returnValue);
|
device->neoDevice->getHardwareInfo().platform.eProductFamily, device, &cmdQueueDesc, true, false, returnValue);
|
||||||
|
|
Loading…
Reference in New Issue