mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 09:58:55 +08:00
fix: enable cl_cache by default in Level Zero
Related-To: NEO-10045 Signed-off-by: Fabian Zwolinski <fabian.zwolinski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
65f3e80796
commit
36ab19faf7
@@ -88,6 +88,6 @@ std::string ApiSpecificConfig::compilerCacheFileExtension() {
|
||||
}
|
||||
|
||||
int64_t ApiSpecificConfig::compilerCacheDefaultEnabled() {
|
||||
return 0l;
|
||||
return 1l;
|
||||
}
|
||||
} // namespace NEO
|
||||
|
||||
@@ -92,7 +92,7 @@ TEST(ApiSpecificConfigL0Tests, WhenGettingCompilerCacheFileExtensionThenReturnPr
|
||||
}
|
||||
|
||||
TEST(ApiSpecificConfigL0Tests, WhenCheckingIfCompilerCacheIsEnabledByDefaultThenReturnTrue) {
|
||||
EXPECT_EQ(0l, ApiSpecificConfig::compilerCacheDefaultEnabled());
|
||||
EXPECT_EQ(1l, ApiSpecificConfig::compilerCacheDefaultEnabled());
|
||||
}
|
||||
|
||||
} // namespace NEO
|
||||
|
||||
Reference in New Issue
Block a user