mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-28 16:48:45 +08:00
Change-Id: I34eb993b562c77f56d8fbd51a02ee266c1f76678 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
20 lines
424 B
C++
20 lines
424 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/utilities/debug_settings_reader_creator.h"
|
|
|
|
#include "opencl/source/os_interface/ocl_reg_path.h"
|
|
|
|
namespace NEO {
|
|
|
|
bool releaseFP64Override() {
|
|
auto settingsReader = SettingsReaderCreator::create(oclRegPath);
|
|
return settingsReader->getSetting("OverrideDefaultFP64Settings", -1) == 1;
|
|
}
|
|
|
|
} // namespace NEO
|