mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
Change-Id: I8a8bf99f3a73a4293013ab3bc73911e25a12b57e Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
21 lines
407 B
C++
21 lines
407 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "engine_node.h"
|
|
|
|
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);
|
|
}; // namespace EngineHelpers
|
|
} // namespace NEO
|