mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
21 lines
386 B
C++
21 lines
386 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_DG1> enableAILDG1;
|
|
|
|
std::map<std::string_view, std::vector<AILEnumeration>> applicationMapDG1 = {};
|
|
|
|
template class AILConfigurationHw<IGFX_DG1>;
|
|
|
|
} // namespace NEO
|