We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 43b4672 + 3efa9b1 commit 63b13c3Copy full SHA for 63b13c3
amd/hipcc/src/hipBin_nvidia.h
@@ -375,7 +375,9 @@ void HipBinNvidia::executeHipCCCmd(vector<string> argv) {
375
for (unsigned int i = 2; i < argv.size(); i++) {
376
string isaarg = argv.at(i);
377
ISACMD += " ";
378
- ISACMD += isaarg;
+ if (!hipBinUtilPtr_->substringPresent(isaarg,"--rocm-path=")) {
379
+ ISACMD += isaarg;
380
+ }
381
}
382
if (verbose & 0x1) {
383
cout<< "hipcc-cmd: " << ISACMD << "\n";
0 commit comments