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.
21 lines
523 B
21 lines
523 B
3 years ago
|
#!/bin/bash
|
||
|
|
||
|
# this script is for memory check, so please run ./run.sh first.
|
||
|
|
||
|
set +x
|
||
|
set -e
|
||
|
|
||
|
if [ ! -d ../../tools/valgrind/install ]; then
|
||
|
echo "please install valgrind in the speechx tools dir.\n"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
. ../path.sh
|
||
|
|
||
|
model_dir=../paddle_asr_model
|
||
|
feat_wspecifier=./feats.ark
|
||
|
cmvn=./cmvn.ark
|
||
|
|
||
|
valgrind --tool=memcheck --track-origins=yes --leak-check=full --show-leak-kinds=all linear_spectrogram_main --wav_rspecifier=scp:$model_dir/wav.scp --feature_wspecifier=ark,t:$feat_wspecifier --cmvn_write_path=$cmvn
|
||
|
|