13 Zeilen
335 B
Bash
Ausführbare Datei
13 Zeilen
335 B
Bash
Ausführbare Datei
#!/bin/bash
|
|
|
|
#usage : hipexamine-perl.sh DIRNAME [hipify-perl options]
|
|
|
|
# Generate HIP stats (LOC, CUDA->API conversions, missing functionality) for all the code files
|
|
# in the specified directory.
|
|
|
|
|
|
SCRIPT_DIR=`dirname $0`
|
|
SEARCH_DIR=$1
|
|
shift
|
|
$SCRIPT_DIR/hipify-perl -no-output -print-stats "$@" `$SCRIPT_DIR/findcode.sh $SEARCH_DIR`
|