mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
Change-Id: I28b11aead8e554b7299ff7f504751847068a2edf Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com> Related-To: NEO-4320
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
|