Correct spelling mistakes

Signed-off-by: Kacper Nowak <kacper.nowak@intel.com>
This commit is contained in:
Kacper Nowak
2022-10-20 14:42:46 +00:00
committed by Compute-Runtime-Automation
parent 3384b2fed0
commit b1731626d0
5 changed files with 5 additions and 5 deletions

View File

@@ -61,7 +61,7 @@ uint32_t resolveExtFuncDependencies(ExternalFunctionInfosT externalFunctionInfos
DependencyResolver depResolver(dependencies);
auto resolved = depResolver.resolveDependencies();
if (depResolver.hasLoop()) {
return ERROR_LOOP_DETECKTED;
return ERROR_LOOP_DETECTED;
}
for (auto calleeId : resolved) {
const auto callee = externalFunctionInfos[calleeId];

View File

@@ -20,7 +20,7 @@ enum ExternalFunctionResolveError : uint32_t {
RESOLVE_SUCCESS = 0,
ERROR_EXTERNAL_FUNCTION_INFO_MISSING,
ERROR_KERNEL_DESCRIPTOR_MISSING,
ERROR_LOOP_DETECKTED
ERROR_LOOP_DETECTED
};
struct ExternalFunctionInfo {

View File

@@ -1650,7 +1650,7 @@ NEO::DecodeError decodeAndPopulateKernelMiscInfo(ProgramInfo &dst, ConstStringRe
}
}
if (nullptr == kernelInfo) {
outErrReason.append("DeviceBinaryFormat::Zebin : Error : Cannot found kernel info for kernel " + kName + ".\n");
outErrReason.append("DeviceBinaryFormat::Zebin : Error : Cannot find kernel info for kernel " + kName + ".\n");
return DecodeError::InvalidBinary;
}
populateKernelMiscInfo(kernelInfo->kernelDescriptor, miscInfos, outErrReason, outWarning);