From f6a0cb3afca26ff4850bae6e5928389f29326423 Mon Sep 17 00:00:00 2001 From: emankov Date: Tue, 16 May 2017 19:52:39 +0300 Subject: [PATCH] [HIPIFY] *.inl extension support for batch processing --- hipamd/bin/findcode.sh | 2 +- hipamd/bin/hipexamine.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hipamd/bin/findcode.sh b/hipamd/bin/findcode.sh index a2334b3e2d..d092d6bf8d 100755 --- a/hipamd/bin/findcode.sh +++ b/hipamd/bin/findcode.sh @@ -2,4 +2,4 @@ SEARCH_DIRS=$@ -find $SEARCH_DIRS -name '*.cpp' -o -name '*.h' -o -name '*.cu' -o -name '*.cuh' -o -name '*.c' -o -name '*.hpp' +find $SEARCH_DIRS -name '*.cpp' -o -name '*.h' -o -name '*.cu' -o -name '*.cuh' -o -name '*.c' -o -name '*.hpp' -o -name '*.inl' diff --git a/hipamd/bin/hipexamine.sh b/hipamd/bin/hipexamine.sh index 2a6fab7110..79e1b469f9 100755 --- a/hipamd/bin/hipexamine.sh +++ b/hipamd/bin/hipexamine.sh @@ -1,6 +1,6 @@ #!/bin/bash -#usage : hipexamine2.sh DIRNAME [hipify options] [--] [clang options] +#usage : hipexamine.sh DIRNAME [hipify options] [--] [clang options] # Generate CUDA->HIP conversion statistics for all the code files in the specified directory.