21 lines
395 B
C++
21 lines
395 B
C++
/*
|
|
* Copyright (C) 2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include <string>
|
|
|
|
namespace NEO {
|
|
|
|
template <PRODUCT_FAMILY Product>
|
|
void AILConfigurationHw<Product>::modifyKernelIfRequired(std::string &kernel) {
|
|
}
|
|
|
|
template <PRODUCT_FAMILY Product>
|
|
inline void AILConfigurationHw<Product>::applyExt(RuntimeCapabilityTable &runtimeCapabilityTable) {
|
|
}
|
|
|
|
} // namespace NEO
|