Home
last modified time | relevance | path

Searched refs:intermediateCodeType (Results 1 – 7 of 7) sorted by relevance

/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/shared/source/compiler_interface/
H A Dcompiler_interface.cpp51 IGC::CodeType::CodeType_t intermediateCodeType = IGC::CodeType::undefined; in build() local
54 intermediateCodeType = input.preferredIntermediateType; in build()
93 if (intermediateCodeType == IGC::CodeType::undefined) { in build()
94 intermediateCodeType = getPreferredIntermediateRepresentation(device); in build()
97 auto fclTranslationCtx = createFclTranslationCtx(device, srcCodeType, intermediateCodeType); in build()
111 output.intermediateCodeType = intermediateCodeType; in build()
119 intermediateCodeType = srcCodeType; in build()
132 …auto igcTranslationCtx = createIgcTranslationCtx(device, intermediateCodeType, IGC::CodeType::oclG… in build()
195 output.intermediateCodeType = outType; in compile()
298 output.intermediateCodeType = intermediateRepresentation; in createLibrary()
H A Dcompiler_interface.h65 IGC::CodeType::CodeType_t intermediateCodeType = IGC::CodeType::invalid; member
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/shared/test/common/mocks/
H A Dmock_compiler_interface_spirv.cpp26 output.intermediateCodeType = IGC::CodeType::spirV; in compile()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/source/program/
H A Dcompile.cpp167 this->isSpirV = compilerOuput.intermediateCodeType == IGC::CodeType::spirV; in compile()
H A Dlink.cpp199 this->isSpirV = (compilerOuput.intermediateCodeType == IGC::CodeType::spirV); in link()
H A Dbuild.cpp147 this->isSpirV = compilerOuput.intermediateCodeType == IGC::CodeType::spirV; in build()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/shared/test/unit_test/compiler_interface/
H A Dcompiler_interface_tests.cpp158 EXPECT_EQ(IGC::CodeType::llvmLl, translationOutput.intermediateCodeType); in TEST_F()