P4 to Git Change 1719380 by gandryey@gera-ocl-lc on 2018/12/12 13:37:56

SWDEV-79445 - OCL generic changes and code clean-up
	- Reenable some options in the compilation code.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/devprogram.cpp#20 edit


[ROCm/clr commit: 9be10558eb]
This commit is contained in:
foreman
2018-12-12 13:48:23 -05:00
vanhempi b51ea30784
commit 59ab6c9f5d
@@ -2056,10 +2056,10 @@ std::string Program::ProcessOptions(amd::option::Options* options) {
std::string optionsStr;
if (!isLC()) {
//optionsStr.append(" -D__AMD__=1");
optionsStr.append(" -D__AMD__=1");
//optionsStr.append(" -D__").append(machineTarget_).append("__=1");
// optionsStr.append(" -D__").append(machineTarget_).append("=1");
optionsStr.append(" -D__").append(machineTarget_).append("__=1");
optionsStr.append(" -D__").append(machineTarget_).append("=1");
} else {
int major, minor;
::sscanf(device().info().version_, "OpenCL %d.%d ", &major, &minor);
@@ -2076,12 +2076,12 @@ std::string Program::ProcessOptions(amd::option::Options* options) {
if (!isLC()) {
// Set options for the standard device specific options
// All our devices support these options now
//if (device().settings().reportFMAF_) {
// optionsStr.append(" -DFP_FAST_FMAF=1");
//}
//if (device().settings().reportFMA_) {
// optionsStr.append(" -DFP_FAST_FMA=1");
//}
if (device().settings().reportFMAF_) {
optionsStr.append(" -DFP_FAST_FMAF=1");
}
if (device().settings().reportFMA_) {
optionsStr.append(" -DFP_FAST_FMA=1");
}
}
uint clcStd =