mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-25 05:24:02 +08:00
21 lines
422 B
C++
21 lines
422 B
C++
/*
|
|
* Copyright (C) 2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/ail/ail_configuration.h"
|
|
|
|
#include <map>
|
|
#include <string_view>
|
|
|
|
namespace NEO {
|
|
|
|
extern std::map<std::string_view, std::vector<AILEnumeration>> applicationMapHW;
|
|
|
|
template <PRODUCT_FAMILY Product>
|
|
void AILConfigurationHw<Product>::applyExt(RuntimeCapabilityTable &runtimeCapabilityTable) {
|
|
}
|
|
} // namespace NEO
|