shithub: mp3dec

ref: 95864e8e0d3b34402a49ae9af6c66f7e98c13c35
dir: /scripts/perf.sh/

View raw version
_FILENAME=${0##*/}
CUR_DIR=${0/${_FILENAME}}
CUR_DIR=$(cd $(dirname ${CUR_DIR}); pwd)/$(basename ${CUR_DIR})/

pushd $CUR_DIR/..

APP=./minimp3

for i in vectors/*.bit; do
perf stat -e cycles $APP $i ${i%.*}.pcm
done