mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
Change-Id: Ic372e76c1024ca9e585bef15fab29827d33122f3 Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com> Related-To: NEO-4865
23 lines
528 B
C++
23 lines
528 B
C++
/*
|
|
* Copyright (C) 2019-2020 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 == "tgllp") {
|
|
CompilerOptions::concatenateAppend(internalOptions, CompilerOptions::forceEmuInt32DivRemSP);
|
|
}
|
|
}
|
|
|
|
void OfflineCompiler::adjustExtraSettings(HardwareInfo &hwInfo) {
|
|
}
|
|
} // namespace NEO
|