Files
compute-runtime/shared/source/ail/ail_configuration.cpp
Filip Hazubski afba02afa9 fix: Add AIL for Adobe Premiere Pro
Use legacy platform name: "Intel(R) OpenCL".

Resolves: HSD-22018809561

Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
2023-09-12 15:39:47 +02:00

31 lines
772 B
C++

/*
* Copyright (C) 2021-2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/ail/ail_configuration.h"
#include "shared/source/helpers/hash.h"
#include "shared/source/helpers/hw_info.h"
#include <map>
#include <string>
#include <string_view>
namespace NEO {
const char legacyPlatformName[] = "Intel(R) OpenCL";
bool AILConfiguration::isKernelHashCorrect(const std::string &kernelsSources, uint64_t expectedHash) const {
const auto hash = Hash::hash(kernelsSources.c_str(), kernelsSources.length());
return hash == expectedHash;
}
bool AILConfiguration::sourcesContain(const std::string &sources, std::string_view contentToFind) const {
return (sources.find(contentToFind) != std::string::npos);
}
} // namespace NEO