mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-25 13:33:02 +08:00
fix: dont download tbx allocations on heapless first device submission
Related-To: HSD-18039476929 Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
d52ca080bd
commit
24cfd203ab
@@ -304,7 +304,7 @@ class UltCommandStreamReceiver : public CommandStreamReceiverHw<GfxFamily>, publ
|
||||
}
|
||||
|
||||
WaitStatus waitForCompletionWithTimeout(bool enableTimeout, int64_t timeoutMicroseconds, TaskCountType taskCountToWait) {
|
||||
return waitForCompletionWithTimeout(WaitParams{false, enableTimeout, timeoutMicroseconds}, taskCountToWait);
|
||||
return waitForCompletionWithTimeout(WaitParams{false, enableTimeout, false, timeoutMicroseconds}, taskCountToWait);
|
||||
}
|
||||
|
||||
WaitStatus waitForTaskCountWithKmdNotifyFallback(TaskCountType taskCountToWait, FlushStamp flushStampToWait, bool useQuickKmdSleep, QueueThrottle throttle) override {
|
||||
@@ -523,7 +523,7 @@ class UltCommandStreamReceiver : public CommandStreamReceiverHw<GfxFamily>, publ
|
||||
|
||||
std::atomic<TaskCountType> latestWaitForCompletionWithTimeoutTaskCount{0};
|
||||
TaskCountType latestSentTaskCountValueDuringFlush = 0;
|
||||
WaitParams latestWaitForCompletionWithTimeoutWaitParams{0};
|
||||
WaitParams latestWaitForCompletionWithTimeoutWaitParams{};
|
||||
WaitUserFenceParams waitUserFenecParams;
|
||||
WriteMemoryParams writeMemoryParams;
|
||||
TaskCountType flushBcsTaskReturnValue{};
|
||||
|
||||
Reference in New Issue
Block a user