mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-27 07:44:16 +08:00
Change-Id: I3f5a1f5ef97f058f91d0be7e3c33df7fff04062e Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
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
|