refactor: remove not used dispatch modes

Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
This commit is contained in:
Lukasz Jobczyk
2025-09-11 13:02:39 +00:00
committed by Compute-Runtime-Automation
parent 33db4ed0de
commit 678f99c57d
3 changed files with 4 additions and 13 deletions

View File

@@ -76,11 +76,9 @@ class TagAllocator;
class TagNodeBase;
enum class DispatchMode {
deviceDefault = 0, // default for given device
immediateDispatch, // everything is submitted to the HW immediately
adaptiveDispatch, // dispatching is handled to async thread, which combines batch buffers basing on load (not implemented)
batchedDispatchWithCounter, // dispatching is batched, after n commands there is implicit flush (not implemented)
batchedDispatch // dispatching is batched, explicit clFlush is required
deviceDefault = 0, // default for given device
immediateDispatch, // everything is submitted to the HW immediately
batchedDispatch // dispatching is batched, explicit clFlush is required
};
class CommandStreamReceiver : NEO::NonCopyableAndNonMovableClass {