mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
refactor: Rename member variables to camelCase 3/n
Additionally enable clang-tidy check for member variables Signed-off-by: Fabian Zwolinski <fabian.zwolinski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
fd1ad7c1f0
commit
cbce863dc2
@@ -146,7 +146,7 @@ TranslationOutput::ErrorCode CompilerInterface::build(
|
||||
auto igcTranslationCtx = createIgcTranslationCtx(device, intermediateCodeType, IGC::CodeType::oclGenBin);
|
||||
|
||||
auto igcOutput = translate(igcTranslationCtx.get(), intermediateRepresentation.get(), idsBuffer.get(), valuesBuffer.get(),
|
||||
fclOptions.get(), fclInternalOptions.get(), input.GTPinInput);
|
||||
fclOptions.get(), fclInternalOptions.get(), input.gtPinInput);
|
||||
|
||||
if (igcOutput == nullptr) {
|
||||
return TranslationOutput::ErrorCode::UnknownError;
|
||||
@@ -239,7 +239,7 @@ TranslationOutput::ErrorCode CompilerInterface::link(
|
||||
|
||||
auto igcTranslationCtx = createIgcTranslationCtx(device, inType, outType);
|
||||
currOut = translate(igcTranslationCtx.get(), currSrc.get(),
|
||||
igcOptions.get(), igcInternalOptions.get(), input.GTPinInput);
|
||||
igcOptions.get(), igcInternalOptions.get(), input.gtPinInput);
|
||||
|
||||
if (currOut == nullptr) {
|
||||
return TranslationOutput::ErrorCode::UnknownError;
|
||||
|
||||
Reference in New Issue
Block a user