mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 18:37:46 +08:00
Change-Id: I7d1cf3b0a0d6e16fd2df2fad1ba5e71dfe04ae23 Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
21 lines
348 B
C++
21 lines
348 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "engine_node.h"
|
|
|
|
namespace NEO {
|
|
|
|
bool isCcs(aub_stream::EngineType engineType) {
|
|
return engineType == aub_stream::ENGINE_CCS;
|
|
}
|
|
|
|
bool isBcs(aub_stream::EngineType engineType) {
|
|
return engineType == aub_stream::ENGINE_BCS;
|
|
}
|
|
|
|
} // namespace NEO
|