mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 01:48:50 +08:00
Change-Id: Iaec903af420f0a92f7d86e484c83300fb9c531ad Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
18 lines
349 B
C++
18 lines
349 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "compiler_interface/default_cache_config.h"
|
|
|
|
#include "opencl/source/compiler_interface/default_cl_cache_config.h"
|
|
|
|
namespace NEO {
|
|
CompilerCacheConfig getDefaultCompilerCacheConfig() {
|
|
return getDefaultClCompilerCacheConfig();
|
|
}
|
|
|
|
} // namespace NEO
|