P4 to Git Change 1332744 by lmoriche@lmoriche_opencl_lc on 2016/10/27 12:50:35

SWDEV-105604 - [OCL-LC-PAL] OpenCL program manager for LC on PAL
	- Use the gfxip target names by default

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palcompiler.cpp#6 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palprogram.cpp#17 edit
This commit is contained in:
foreman
2016-10-27 13:02:49 -04:00
parent 74e6f22212
commit 54858df82b
2 changed files with 0 additions and 10 deletions
-5
View File
@@ -1213,14 +1213,9 @@ LightningProgram::linkImpl(amd::option::Options *options)
std::string codegenOptions(options->llvmOptions);
// Set the machine target
#if 0
std::ostringstream mCPU;
mCPU << " -mcpu=gfx" << dev().hwInfo()->gfxipVersion_;
codegenOptions.append(mCPU.str());
#else
codegenOptions.append(" -mcpu=");
codegenOptions.append(dev().hwInfo()->machineTarget_);
#endif
// Set the -O#
std::ostringstream optLevel;