mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 23:03:02 +08:00
Correct spelling mistakes
Signed-off-by: Kacper Nowak <kacper.nowak@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
3384b2fed0
commit
b1731626d0
@@ -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];
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user