mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-04 15:53:45 +08:00
21 lines
408 B
C++
21 lines
408 B
C++
/*
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/ail/ail_configuration_base.inl"
|
|
|
|
#include <map>
|
|
#include <vector>
|
|
|
|
namespace NEO {
|
|
static EnableAIL<IGFX_TIGERLAKE_LP> enableAILTGLLP;
|
|
|
|
std::map<std::string_view, std::vector<AILEnumeration>> applicationMapTGLLP = {};
|
|
|
|
template class AILConfigurationHw<IGFX_TIGERLAKE_LP>;
|
|
|
|
} // namespace NEO
|