2018-10-16 19:33:48 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
BIN_DIR=`dirname $0`
|
2019-03-05 09:09:23 -06:00
|
|
|
BIN_DIR=`realpath $BIN_DIR`
|
|
|
|
|
PKG_DIR=${BIN_DIR%/bin}
|
2018-10-16 19:33:48 -05:00
|
|
|
|
|
|
|
|
# PATH to custom HSA libs
|
|
|
|
|
HSA_PATH=$PKG_DIR/lib/hsa
|
|
|
|
|
|
|
|
|
|
if [ -z "$1" ] ; then
|
|
|
|
|
echo "Usage: $0 <cmd line>"
|
2019-03-05 09:09:23 -06:00
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
2018-10-16 19:33:48 -05:00
|
|
|
# profiler plugin library
|
|
|
|
|
test_app=$*
|
|
|
|
|
|
|
|
|
|
# paths to ROC profiler and oher libraries
|
2019-03-03 01:04:00 -06:00
|
|
|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PKG_DIR/lib:$PKG_DIR/tool:$HSA_PATH
|
2018-10-16 19:33:48 -05:00
|
|
|
export PATH=.:$PATH
|
|
|
|
|
|
|
|
|
|
# ROC profiler library loaded by HSA runtime
|
|
|
|
|
export HSA_TOOLS_LIB=librocprofiler64.so.1
|
|
|
|
|
# tool library loaded by ROC profiler
|
2019-03-03 01:04:00 -06:00
|
|
|
if [ -z "$ROCP_TOOL_LIB" ] ; then
|
2020-04-08 04:27:50 -05:00
|
|
|
echo "Tool library is not defined: ROCP_TOOL_LIB"
|
|
|
|
|
exit 1
|
2018-10-16 19:33:48 -05:00
|
|
|
fi
|
|
|
|
|
# enable error messages
|
|
|
|
|
export HSA_TOOLS_REPORT_LOAD_FAILURE=1
|
|
|
|
|
export HSA_VEN_AMD_AQLPROFILE_LOG=1
|
|
|
|
|
export ROCPROFILER_LOG=1
|
|
|
|
|
# ROC profiler metrics config file
|
|
|
|
|
unset ROCP_PROXY_QUEUE
|
|
|
|
|
# ROC profiler metrics config file
|
2019-03-03 01:04:00 -06:00
|
|
|
if [ -z "$ROCP_METRICS" ] ; then
|
2019-03-05 09:09:23 -06:00
|
|
|
export ROCP_METRICS=$PKG_DIR/lib/metrics.xml
|
2019-03-03 01:04:00 -06:00
|
|
|
fi
|
2018-10-16 19:33:48 -05:00
|
|
|
|
|
|
|
|
LD_PRELOAD=$ROCP_TOOL_LIB $test_app
|