mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
For TGL and ICL platforms - if on clCreateProgramWithSource() call we detect a nGen dummy kernel usage - enforce fallback to the patchtokens format (only for this kernel). - corrected naming - minor ULTs refactor (less dependencies). Signed-off-by: Kacper Nowak <kacper.nowak@intel.com>
27 lines
625 B
C++
27 lines
625 B
C++
/*
|
|
* Copyright (C) 2022-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/ail/ail_configuration.h"
|
|
|
|
#include <string>
|
|
|
|
namespace NEO {
|
|
|
|
template <PRODUCT_FAMILY Product>
|
|
void AILConfigurationHw<Product>::modifyKernelIfRequired(std::string &kernel) {
|
|
}
|
|
|
|
template <PRODUCT_FAMILY Product>
|
|
inline void AILConfigurationHw<Product>::forceFallbackToPatchtokensIfRequired(const std::string &kernelSources, bool &requiresFallback) {
|
|
}
|
|
|
|
template <PRODUCT_FAMILY Product>
|
|
inline void AILConfigurationHw<Product>::applyExt(RuntimeCapabilityTable &runtimeCapabilityTable) {
|
|
}
|
|
|
|
} // namespace NEO
|