mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
18 lines
369 B
C++
18 lines
369 B
C++
/*
|
|
* Copyright (C) 2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/compiler_interface/default_cache_config.h"
|
|
|
|
namespace NEO {
|
|
CompilerCacheConfig getDefaultCompilerCacheConfig() {
|
|
CompilerCacheConfig ret;
|
|
ret.cacheDir = "ocloc_cache";
|
|
ret.cacheFileExtension = ".ocloc_cache";
|
|
return ret;
|
|
}
|
|
} // namespace NEO
|