forked from haiwan/sledge
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
749 B
32 lines
749 B
#!/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=FIFO
|
|
#export SLEDGE_SIGALRM_HANDLER=BROADCAST
|
|
#export SLEDGE_SIGALRM_HANDLER=TRIAGED
|
|
export SLEDGE_NWORKERS=16
|
|
#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_noop5.json |