[HIPIFY][perl] Get rid of obsolete warnings on cuBLAS and cuRAND

This commit is contained in:
Evgeny Mankov
2019-09-25 17:37:41 +03:00
parent e93e22fb66
commit 6ac0baf026
-6
Vedi 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++;