Merge pull request #1461 from emankov/master

[HIPIFY][perl] Get rid of obsolete warnings on cuBLAS and cuRAND
This commit is contained in:
Evgeny Mankov
2019-09-25 17:39:31 +03:00
committed by GitHub
-6
View File
@@ -1738,12 +1738,6 @@ while (@ARGV) {
if ((/(\bcuda[A-Z]\w+)/) or (/<<<.*>>>/)) {
# flag any remaining code that look like cuda API calls, may want to add these to hipify
$tag = (defined $1) ? $1 : "Launch";
} elsif (/(\bcublas[A-Z]\w+)/) {
$warningsCublas++;
$tag = $1;
} elsif (/(\bcurand[A-Z]\w+)/) {
$warningsCurand++;
$tag = $1;
}
if (defined $tag) {
$warnings++;