mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 17:00:59 +08:00
* Make sure igcRevision is always initialized. * Improve coverage. Signed-off-by: Kacper Kasper <kacper.k.kasper@intel.com>
16 lines
358 B
C++
16 lines
358 B
C++
/*
|
|
* Copyright (C) 2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <string>
|
|
|
|
namespace NEO {
|
|
class SettingsReader;
|
|
bool checkDefaultCacheDirSettings(std::string &cacheDir, SettingsReader *reader);
|
|
time_t getFileModificationTime(const std::string &path);
|
|
size_t getFileSize(const std::string &path);
|
|
} // namespace NEO
|