Add notify enable parameter to post sync commands

Related-To: NEO-5845

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
Zbigniew Zdanowicz
2021-06-17 11:55:28 +00:00
committed by Compute-Runtime-Automation
parent a1036ecc75
commit 0e5ca243e2
26 changed files with 196 additions and 46 deletions

View File

@ -255,6 +255,10 @@ class CommandStreamReceiver {
virtual void postInitFlagsSetup() = 0;
bool isUsedNotifyEnableForPostSync() const {
return useNotifyEnableForPostSync;
}
protected:
void cleanupResources();
void printDeviceIndex();
@ -356,6 +360,7 @@ class CommandStreamReceiver {
bool newResources = false;
bool useGpuIdleImplicitFlush = false;
bool lastSentUseGlobalAtomics = false;
bool useNotifyEnableForPostSync = false;
};
typedef CommandStreamReceiver *(*CommandStreamReceiverCreateFunc)(bool withAubDump,