mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-22 11:21:47 +08:00
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:
committed by
Compute-Runtime-Automation
parent
4a9b918a85
commit
9c3d9d803f
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user