mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 09:58:55 +08:00
Related-To: NEO-8092 Signed-off-by: Fabian Zwolinski <fabian.zwolinski@intel.com> Co-authored-by: Diedrich, Kamil <kamil.diedrich@intel.com>
17 lines
389 B
C++
17 lines
389 B
C++
/*
|
|
* Copyright (C) 2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <string>
|
|
|
|
namespace NEO {
|
|
class SettingsReader;
|
|
int64_t defaultCacheEnabled();
|
|
bool checkDefaultCacheDirSettings(std::string &cacheDir, SettingsReader *reader);
|
|
time_t getFileModificationTime(const std::string &path);
|
|
size_t getFileSize(const std::string &path);
|
|
} // namespace NEO
|