2019-09-18 02:28:35 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2019-11-19 18:49:19 +08:00
|
|
|
#include "core/os_interface/os_library.h"
|
2019-12-19 21:26:29 +08:00
|
|
|
#include "offline_compiler/offline_compiler.h"
|
2019-09-18 02:28:35 +08:00
|
|
|
|
2019-12-19 21:26:29 +08:00
|
|
|
#include "compiler_options.h"
|
2019-09-18 02:28:35 +08:00
|
|
|
|
|
|
|
namespace NEO {
|
2019-12-19 21:26:29 +08:00
|
|
|
void OfflineCompiler::resolveExtraSettings() {
|
|
|
|
if (deviceName == "tgllp") {
|
|
|
|
CompilerOptions::concatenateAppend(internalOptions, CompilerOptions::forceEmuInt32DivRemSP);
|
|
|
|
}
|
|
|
|
}
|
2019-09-18 02:28:35 +08:00
|
|
|
} // namespace NEO
|