mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 08:53:55 +08:00
Related-To: NEO-3661 Change-Id: I305c3cfc14262a832aee749e66f3c426d3ca0343 Signed-off-by: Pawel Wilma <pawel.wilma@intel.com>
20 lines
431 B
C++
20 lines
431 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/os_interface/os_library.h"
|
|
#include "offline_compiler/offline_compiler.h"
|
|
|
|
#include "compiler_options.h"
|
|
|
|
namespace NEO {
|
|
void OfflineCompiler::resolveExtraSettings() {
|
|
if (deviceName == "tgllp") {
|
|
CompilerOptions::concatenateAppend(internalOptions, CompilerOptions::forceEmuInt32DivRemSP);
|
|
}
|
|
}
|
|
} // namespace NEO
|