mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 08:53:55 +08:00
Dates corrected in copyright headers to reflect original publication date (2018 for OpenCL, 2020 for Level Zero). Signed-off-by: lgotszal <lukasz.gotszald@intel.com>
20 lines
457 B
C++
20 lines
457 B
C++
/*
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/offline_compiler/source/offline_compiler.h"
|
|
#include "shared/source/os_interface/os_library.h"
|
|
|
|
#include "compiler_options.h"
|
|
|
|
namespace NEO {
|
|
void OfflineCompiler::resolveExtraSettings() {
|
|
if (deviceName == "rkl") {
|
|
CompilerOptions::concatenateAppend(internalOptions, CompilerOptions::forceEmuInt32DivRemSP);
|
|
}
|
|
}
|
|
} // namespace NEO
|