refactor: Remove globaly enabled cl_cache

Current behaviour will be detecd path existence

Related-To: NEO-4262

Signed-off-by: Diedrich, Kamil <kamil.diedrich@intel.com>
This commit is contained in:
Diedrich, Kamil
2023-04-27 08:42:36 +00:00
committed by Compute-Runtime-Automation
parent ef10c98497
commit 5149d74141
46 changed files with 204 additions and 165 deletions

View File

@@ -8,6 +8,7 @@
#include "shared/source/compiler_interface/default_cache_config.h"
#include "shared/source/helpers/constants.h"
#include "shared/source/os_interface/sys_calls_common.h"
#include "shared/source/utilities/debug_settings_reader.h"
#include "opencl/source/os_interface/ocl_reg_path.h"
@@ -26,8 +27,15 @@ CompilerCacheConfig getDefaultCompilerCacheConfig() {
std::unique_ptr<SettingsReader> settingsReader(SettingsReader::createOsReader(false, keyName));
ret.cacheDir = settingsReader->getSetting(settingsReader->appSpecificLocation(keyName), static_cast<std::string>(CL_CACHE_LOCATION));
ret.cacheSize = MemoryConstants::gigaByte;
ret.cacheFileExtension = ".cl_cache";
if (NEO::SysCalls::pathExists(ret.cacheDir)) {
ret.enabled = true;
ret.cacheSize = MemoryConstants::gigaByte;
ret.cacheFileExtension = ".cl_cache";
} else {
ret.enabled = false;
ret.cacheSize = 0u;
ret.cacheFileExtension = ".cl_cache";
}
return ret;
}