2022-06-15 19:49:38 +08:00
|
|
|
/*
|
2023-01-12 00:46:43 +08:00
|
|
|
* Copyright (C) 2022-2023 Intel Corporation
|
2022-06-15 19:49:38 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-11-07 21:04:52 +08:00
|
|
|
#include "shared/source/ail/ail_configuration.h"
|
|
|
|
|
2022-06-15 19:49:38 +08:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
template <PRODUCT_FAMILY Product>
|
|
|
|
void AILConfigurationHw<Product>::modifyKernelIfRequired(std::string &kernel) {
|
|
|
|
}
|
|
|
|
|
2023-01-12 00:46:43 +08:00
|
|
|
template <PRODUCT_FAMILY Product>
|
|
|
|
inline void AILConfigurationHw<Product>::forceFallbackToPatchtokensIfRequired(const std::string &kernelSources, bool &requiresFallback) {
|
|
|
|
}
|
|
|
|
|
2022-06-15 19:49:38 +08:00
|
|
|
template <PRODUCT_FAMILY Product>
|
|
|
|
inline void AILConfigurationHw<Product>::applyExt(RuntimeCapabilityTable &runtimeCapabilityTable) {
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace NEO
|