mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 17:29:14 +08:00
17 lines
248 B
C++
17 lines
248 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;
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace NEO
|