mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
20 lines
446 B
C++
20 lines
446 B
C++
/*
|
|
* Copyright (C) 2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/ail/ail_configuration.h"
|
|
|
|
#include <map>
|
|
namespace NEO {
|
|
static EnableAIL<IGFX_TIGERLAKE_LP> enableAILTGLLP;
|
|
|
|
std::map<std::string_view, std::vector<AILEnumeration>> applicationMapTGLLP = {};
|
|
|
|
template <>
|
|
inline void AILConfigurationHw<IGFX_TIGERLAKE_LP>::applyExt(RuntimeCapabilityTable &runtimeCapabilityTable) {
|
|
}
|
|
} // namespace NEO
|