SWDEV-379927 - ignore --rocm-path option on nvidia platform (#3156)
Change-Id: I5e9ff0378c14dc0894a07d71aff4261c155ec1af
이 커밋은 다음에 포함됨:
+6
-1
@@ -244,7 +244,12 @@ if($HIP_PLATFORM eq "nvidia"){
|
||||
if($ARGV[0] eq "--genco"){
|
||||
foreach $isaarg (@ARGV[1..$#ARGV]){
|
||||
$ISACMD .= " ";
|
||||
$ISACMD .= $isaarg;
|
||||
# ignore --rocm-path=xxxx on nvcc nvidia platform
|
||||
if ($isaarg !~ /--rocm-path/) {
|
||||
$ISACMD .= $isaarg;
|
||||
} else {
|
||||
print "Ignoring --rocm-path= on nvidia nvcc platform.\n";
|
||||
}
|
||||
}
|
||||
if ($verbose & 0x1) {
|
||||
print "hipcc-cmd: ", $ISACMD, "\n";
|
||||
|
||||
새 이슈에서 참조
사용자 차단