mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 20:39:56 +08:00
fix: neo ULT build with optimizations disabled 1/n
Related-To: NEO-8116 Signed-off-by: Oskar Hubert Weber <oskar.hubert.weber@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
94d28f3306
commit
fd45b2883d
@@ -1217,15 +1217,17 @@ CompletionStamp CommandQueueHw<GfxFamily>::enqueueCommandWithoutKernel(
|
||||
|
||||
if (enqueueProperties.operation == EnqueueProperties::Operation::blit) {
|
||||
UNRECOVERABLE_IF(!enqueueProperties.blitPropertiesContainer);
|
||||
const auto newTaskCount = bcsCsr->flushBcsTask(*enqueueProperties.blitPropertiesContainer, false, this->isProfilingEnabled(), getDevice());
|
||||
if (newTaskCount > CompletionStamp::notReady) {
|
||||
CompletionStamp completionStamp{};
|
||||
completionStamp.taskCount = newTaskCount;
|
||||
if (bcsCsr) {
|
||||
const auto newTaskCount = bcsCsr->flushBcsTask(*enqueueProperties.blitPropertiesContainer, false, this->isProfilingEnabled(), getDevice());
|
||||
if (newTaskCount > CompletionStamp::notReady) {
|
||||
CompletionStamp completionStamp{};
|
||||
completionStamp.taskCount = newTaskCount;
|
||||
|
||||
return completionStamp;
|
||||
return completionStamp;
|
||||
}
|
||||
|
||||
this->updateBcsTaskCount(bcsCsr->getOsContext().getEngineType(), newTaskCount);
|
||||
}
|
||||
|
||||
this->updateBcsTaskCount(bcsCsr->getOsContext().getEngineType(), newTaskCount);
|
||||
}
|
||||
|
||||
return completionStamp;
|
||||
|
||||
Reference in New Issue
Block a user