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:
Fabian Zwolinski
2024-03-08 08:58:03 +00:00
committed by Compute-Runtime-Automation
parent 65f3e80796
commit 36ab19faf7
2 changed files with 2 additions and 2 deletions

View File

@@ -88,6 +88,6 @@ std::string ApiSpecificConfig::compilerCacheFileExtension() {
}
int64_t ApiSpecificConfig::compilerCacheDefaultEnabled() {
return 0l;
return 1l;
}
} // namespace NEO

View File

@@ -92,7 +92,7 @@ TEST(ApiSpecificConfigL0Tests, WhenGettingCompilerCacheFileExtensionThenReturnPr
}
TEST(ApiSpecificConfigL0Tests, WhenCheckingIfCompilerCacheIsEnabledByDefaultThenReturnTrue) {
EXPECT_EQ(0l, ApiSpecificConfig::compilerCacheDefaultEnabled());
EXPECT_EQ(1l, ApiSpecificConfig::compilerCacheDefaultEnabled());
}
} // namespace NEO