mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 17:00:59 +08:00
This reverts commit eeb8a5e1fb.
Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
17 lines
428 B
C++
17 lines
428 B
C++
/*
|
|
* Copyright (C) 2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <string>
|
|
|
|
namespace NEO {
|
|
class SettingsReader;
|
|
std::string makePath(const std::string &lhs, const std::string &rhs);
|
|
bool checkDefaultCacheDirSettings(std::string &cacheDir, SettingsReader *reader);
|
|
time_t getFileModificationTime(const std::string &path);
|
|
size_t getFileSize(const std::string &path);
|
|
} // namespace NEO
|