fix: block copy operations CommandStreamReceiver

The implicit ones are not sufficient and user-provided does not seem to
be needed.

Related-To: NEO-11825

Signed-off-by: Maciej Bielski <maciej.bielski@intel.com>
This commit is contained in:
Maciej Bielski
2024-06-27 10:27:42 +00:00
committed by Compute-Runtime-Automation
parent 0f80818f59
commit 3849bad719

View File

@@ -93,6 +93,9 @@ class CommandStreamReceiver {
CommandStreamReceiver(ExecutionEnvironment &executionEnvironment,
uint32_t rootDeviceIndex,
const DeviceBitfield deviceBitfield);
CommandStreamReceiver(const CommandStreamReceiver &) = delete;
CommandStreamReceiver &operator=(const CommandStreamReceiver &) = delete;
virtual ~CommandStreamReceiver();
virtual SubmissionStatus flush(BatchBuffer &batchBuffer, ResidencyContainer &allocationsForResidency) = 0;