From 6ac0baf026bbfc705d66b00c6f2ab542b40c64db Mon Sep 17 00:00:00 2001 From: Evgeny Mankov Date: Wed, 25 Sep 2019 17:37:41 +0300 Subject: [PATCH] [HIPIFY][perl] Get rid of obsolete warnings on cuBLAS and cuRAND --- bin/hipify-perl | 6 ------ 1 file changed, 6 deletions(-) diff --git a/bin/hipify-perl b/bin/hipify-perl index 02a540b133..6ec8f7941a 100755 --- a/bin/hipify-perl +++ b/bin/hipify-perl @@ -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++;