mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
Related-To: NEO-8092 Signed-off-by: Fabian Zwolinski <fabian.zwolinski@intel.com> Co-authored-by: Diedrich, Kamil <kamil.diedrich@intel.com>
23 lines
480 B
C++
23 lines
480 B
C++
/*
|
|
* Copyright (C) 2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/compiler_interface/os_compiler_cache_helper.h"
|
|
|
|
namespace NEO {
|
|
int64_t defaultCacheEnabled() {
|
|
return 0l;
|
|
}
|
|
bool checkDefaultCacheDirSettings(std::string &cacheDir, SettingsReader *reader) {
|
|
return false;
|
|
}
|
|
time_t getFileModificationTime(const std::string &path) {
|
|
return 0;
|
|
}
|
|
size_t getFileSize(const std::string &path) {
|
|
return 0;
|
|
}
|
|
} // namespace NEO
|