mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 02:18:54 +00:00
13 lines
230 B
Bash
13 lines
230 B
Bash
_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
|
|
|