feature: Add debug flag for setting hw ip version

Signed-off-by: Daria Hinz <daria.hinz@intel.com>
Related-To: NEO-7954
This commit is contained in:
Daria Hinz
2023-05-12 13:46:58 +00:00
committed by Compute-Runtime-Automation
parent 4ecff31c26
commit 331f167cfe
50 changed files with 259 additions and 82 deletions

View File

@@ -28,7 +28,7 @@ std::vector<DeviceAotInfo> &ProductConfigHelper::getDeviceAotInfo() {
return deviceAotInfo;
}
bool ProductConfigHelper::getDeviceAotInfoForProductConfig(AOT::PRODUCT_CONFIG config, DeviceAotInfo &out) const {
bool ProductConfigHelper::getDeviceAotInfoForProductConfig(uint32_t config, DeviceAotInfo &out) const {
auto ret = std::find_if(deviceAotInfo.begin(), deviceAotInfo.end(), findProductConfig(config));
if (ret == deviceAotInfo.end()) {
return false;