2019-09-18 02:28:35 +08:00
|
|
|
/*
|
2020-02-23 06:48:51 +08:00
|
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
2019-09-18 02:28:35 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-27 23:17:08 +08:00
|
|
|
#include "shared/offline_compiler/source/offline_compiler.h"
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/os_interface/os_library.h"
|
2020-02-24 17:22:30 +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);
|
|
|
|
}
|
|
|
|
}
|
2020-08-13 20:09:05 +08:00
|
|
|
|
|
|
|
void OfflineCompiler::adjustExtraSettings(HardwareInfo &hwInfo) {
|
|
|
|
}
|
2019-09-18 02:28:35 +08:00
|
|
|
} // namespace NEO
|