mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 01:48:50 +08:00
Fix naming convention in mock_compiler_interface.h
Change-Id: I22e9dbdafda511bf9c273cd4e3081116249f9949 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
sys_ocldev
parent
9567fa5090
commit
9ac7604ed9
@@ -2431,9 +2431,9 @@ TEST_F(ProgramTests, givenProgramWithSpirvWhenRebuildProgramIsCalledThenSpirvPat
|
||||
|
||||
auto compilerInterface = new MockCompilerInterface();
|
||||
auto compilerMain = new MockCIFMain();
|
||||
compilerInterface->SetFclMain(compilerMain);
|
||||
compilerInterface->setFclMain(compilerMain);
|
||||
compilerMain->Retain();
|
||||
compilerInterface->SetIgcMain(compilerMain);
|
||||
compilerInterface->setIgcMain(compilerMain);
|
||||
compilerMain->setDefaultCreatorFunc<NEO::MockIgcOclDeviceCtx>(NEO::MockIgcOclDeviceCtx::Create);
|
||||
compilerMain->setDefaultCreatorFunc<NEO::MockFclOclDeviceCtx>(NEO::MockFclOclDeviceCtx::Create);
|
||||
pDevice->getExecutionEnvironment()->rootDeviceEnvironments[pDevice->getRootDeviceIndex()]->compilerInterface.reset(compilerInterface);
|
||||
@@ -2466,7 +2466,7 @@ TEST_F(ProgramTests, whenRebuildingProgramThenStoreDeviceBinaryProperly) {
|
||||
auto compilerInterface = new MockCompilerInterface();
|
||||
pDevice->getExecutionEnvironment()->rootDeviceEnvironments[pDevice->getRootDeviceIndex()]->compilerInterface.reset(compilerInterface);
|
||||
auto compilerMain = new MockCIFMain();
|
||||
compilerInterface->SetIgcMain(compilerMain);
|
||||
compilerInterface->setIgcMain(compilerMain);
|
||||
compilerMain->setDefaultCreatorFunc<NEO::MockIgcOclDeviceCtx>(NEO::MockIgcOclDeviceCtx::Create);
|
||||
|
||||
MockCompilerDebugVars debugVars = {};
|
||||
|
||||
Reference in New Issue
Block a user