Files
compute-runtime/opencl/source/command_queue/copy_engine_state.h
Maciej Dziuban c7d86af500 Pass blitter CSR to event
Related-To: NEO-6057
Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
2021-09-15 12:49:22 +02:00

22 lines
394 B
C++

/*
* Copyright (C) 2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "engine_node.h"
namespace NEO {
struct CopyEngineState {
aub_stream::EngineType engineType = aub_stream::EngineType::NUM_ENGINES;
uint32_t taskCount = 0;
bool isValid() const {
return engineType != aub_stream::EngineType::NUM_ENGINES;
}
};
} // namespace NEO