|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
function usage {
|
|
|
|
echo "$0 [perf output file, chain_function_perf.log or single_function_perf.log or opt_function_perf.log]"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
if [ $# != 1 ] ; then
|
|
|
|
usage
|
|
|
|
exit 1;
|
|
|
|
fi
|
|
|
|
|
|
|
|
output=$1
|
|
|
|
|
|
|
|
|
|
|
|
declare project_path="$(
|
|
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
pwd
|
|
|
|
)"
|
|
|
|
echo $project_path
|
|
|
|
path=`pwd`
|
|
|
|
#export SLEDGE_DISABLE_PREEMPTION=true
|
|
|
|
export SLEDGE_CPU_SPEED=2500
|
|
|
|
export SLEDGE_SCHEDULER=EDF
|
|
|
|
export SLEDGE_SIGALRM_HANDLER=BROADCAST
|
|
|
|
#export SLEDGE_SIGALRM_HANDLER=TRIAGED
|
|
|
|
export SLEDGE_NWORKERS=32
|
|
|
|
#export SLEDGE_SCHEDULER=EDF
|
|
|
|
export SLEDGE_SANDBOX_PERF_LOG=$path/$output
|
|
|
|
echo $SLEDGE_SANDBOX_PERF_LOG
|
|
|
|
cd $project_path/runtime/bin
|
|
|
|
#LD_LIBRARY_PATH="$(pwd):$LD_LIBRARY_PATH" ./sledgert ../tests/test_fibonacci.json
|
|
|
|
#LD_LIBRARY_PATH="$(pwd):$LD_LIBRARY_PATH" ./sledgert ../tests/test_big_fibonacci.json
|
|
|
|
#LD_LIBRARY_PATH="$(pwd):$LD_LIBRARY_PATH" ./sledgert ../tests/test_armcifar10.json
|
|
|
|
#LD_LIBRARY_PATH="$(pwd):$LD_LIBRARY_PATH" ./sledgert ../tests/test_png2bmp.json
|
|
|
|
#LD_LIBRARY_PATH="$(pwd):$LD_LIBRARY_PATH" ./sledgert ../tests/test_image_processing.json
|
|
|
|
#LD_LIBRARY_PATH="$(pwd):$LD_LIBRARY_PATH" ./sledgert ../tests/mulitple_linear_chain.json
|
|
|
|
#LD_LIBRARY_PATH="$(pwd):$LD_LIBRARY_PATH" ./sledgert ../tests/test_multiple_image_processing.json
|
|
|
|
#LD_LIBRARY_PATH="$(pwd):$LD_LIBRARY_PATH" ./sledgert ../tests/test_multiple_image_processing3.json
|
|
|
|
LD_LIBRARY_PATH="$(pwd):$LD_LIBRARY_PATH" ./sledgert ../tests/test_multiple_image_processing4.json
|
|
|
|
#LD_LIBRARY_PATH="$(pwd):$LD_LIBRARY_PATH" ./sledgert ../tests/my_fibonacci.json
|
|
|
|
#LD_LIBRARY_PATH="$(pwd):$LD_LIBRARY_PATH" ./sledgert ../tests/test_sodresize.json
|
|
|
|
#LD_LIBRARY_PATH="$(pwd):$LD_LIBRARY_PATH" ./sledgert ../tests/my_sodresize.json
|