custom metrics file rocprof option

Change-Id: I3914740a7640a291558cbe70ca1bdb0400ff7cee
This commit is contained in:
Evgeny
2019-09-26 23:13:14 -05:00
parent c783e62230
commit 484a8402e1
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -171,6 +171,7 @@ usage() {
echo " The data directory is renoving autonatically if the directory is matching the temporary one, which is the default."
echo " -t <temporary directory> - to change the temporary directory [/tmp]"
echo " By changing the temporary directory you can prevent removing the profiling data from /tmp or enable removing from not '/tmp' directory."
echo " -m <metric file> - file defining custom metrics to use in-place of defaults."
echo ""
echo " --basenames <on|off> - to turn on/off truncating of the kernel full function names till the base ones [off]"
echo " --timestamp <on|off> - to turn on/off the kernel disoatches timestamps, dispatch/begin/end/complete [off]"
@@ -320,6 +321,9 @@ while [ 1 ] ; do
if [ "$OUTPUT_DIR" = "-" ] ; then
DATA_PATH=$TMP_DIR
fi
elif [ "$1" = "-m" ] ; then
unset ROCP_METRICS
export ROCP_METRICS="$2"
elif [ "$1" = "--list-basic" ] ; then
export ROCP_INFO=b
eval "$PKG_DIR/tool/ctrl"
+1 -1
View File
@@ -360,7 +360,7 @@ else:
db = SQLiteDB(dbfile)
hsa_trace_found = fill_api_db('HSA', db, indir, 'hsa', HSA_PID, COPY_PID, kern_dep_list, {}, 0)
hsa_activity_found = fill_copy_db('COPY', db, indir)
hsa_activity_found = fill_copy_db('COPY', db, indir)
ops_filtr = fill_ops_db('OPS', db, indir)
hip_trace_found = fill_api_db('HIP', db, indir, 'hip', HIP_PID, OPS_PID, [], ops_filtr, 1)