feature: Support for OCL C in L0 runtime

Prototype support for OCL C in L0 runtime
Can be used with zeModuleCreate and ze_module_format_t=3

Related-To: GSD-11827

Signed-off-by: Chodor, Jaroslaw <jaroslaw.chodor@intel.com>
This commit is contained in:
Chodor, Jaroslaw
2025-10-10 14:00:20 +00:00
committed by Compute-Runtime-Automation
parent 4a9b918a85
commit 9c3d9d803f
7 changed files with 36 additions and 39 deletions

View File

@@ -88,7 +88,7 @@ TEST(CompilerInterface, WhenInitializeIsCalledThenFailIfCompilerCacheHandlerIsEm
EXPECT_FALSE(initSuccess);
}
TEST(CompilerInterface, WhenInitializeIsCalledThenFailIfOneOfRequiredCompilersIsUnavailable) {
TEST(CompilerInterface, WhenInitializeIsCalledThenFailIfIgcIsUnavailable) {
bool initSuccess = false;
bool requireFcl = true;
MockCompilerInterface ci;
@@ -115,7 +115,7 @@ TEST(CompilerInterface, WhenInitializeIsCalledThenFailIfOneOfRequiredCompilersIs
ci.failLoadIgc = false;
requireFcl = true;
initSuccess = ci.initialize(std::make_unique<CompilerCache>(CompilerCacheConfig{}), requireFcl);
EXPECT_FALSE(initSuccess);
EXPECT_TRUE(initSuccess);
ci.failLoadFcl = false;
ci.failLoadIgc = true;