mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
21 lines
404 B
C++
21 lines
404 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_ALDERLAKE_S> enableAILADLS;
|
|
|
|
std::map<std::string_view, std::vector<AILEnumeration>> applicationMapADLS = {};
|
|
|
|
template class AILConfigurationHw<IGFX_ALDERLAKE_S>;
|
|
|
|
} // namespace NEO
|