23 lines
469 B
C++
23 lines
469 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "engine_node.h"
|
|
|
|
#include <atomic>
|
|
|
|
namespace NEO {
|
|
struct HardwareInfo;
|
|
|
|
namespace EngineHelpers {
|
|
bool isCcs(aub_stream::EngineType engineType);
|
|
bool isBcs(aub_stream::EngineType engineType);
|
|
aub_stream::EngineType getBcsEngineType(const HardwareInfo &hwInfo, std::atomic<uint32_t> &selectorCopyEngine);
|
|
}; // namespace EngineHelpers
|
|
} // namespace NEO
|