mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-10 12:53:42 +08:00
20 lines
424 B
C++
20 lines
424 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_DG1> enableAILDG1;
|
|
|
|
std::map<std::string_view, std::vector<AILEnumeration>> applicationMapDG1 = {};
|
|
|
|
template <>
|
|
inline void AILConfigurationHw<IGFX_DG1>::applyExt(RuntimeCapabilityTable &runtimeCapabilityTable) {
|
|
}
|
|
} // namespace NEO
|