mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 18:25:05 +08:00
15 lines
338 B
C++
15 lines
338 B
C++
|
|
/*
|
||
|
|
* Copyright (C) 2018 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "runtime/utilities/debug_settings_reader_creator.h"
|
||
|
|
|
||
|
|
namespace OCLRT {
|
||
|
|
std::unique_ptr<SettingsReader> SettingsReaderCreator::create() {
|
||
|
|
return std::unique_ptr<SettingsReader>(SettingsReader::createOsReader(false));
|
||
|
|
}
|
||
|
|
} // namespace OCLRT
|