mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
18 lines
348 B
C++
18 lines
348 B
C++
|
|
/*
|
||
|
|
* Copyright (C) 2020 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "core/compiler_interface/default_cache_config.h"
|
||
|
|
|
||
|
|
#include "runtime/compiler_interface/default_cl_cache_config.h"
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
CompilerCacheConfig getDefaultCompilerCacheConfig() {
|
||
|
|
return getDefaultClCompilerCacheConfig();
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace NEO
|