"docs/vscode:/vscode.git/clone" did not exist on "75f81c25d178b7efa2b882c914c38e9024fb77a1"
Commit 857fd2e4 authored by LDOUBLEV's avatar LDOUBLEV
Browse files

delete debug

parent 9f135336
#!/bin/bash
FILENAME=$1
# MODE be one of ['lite_train_infer' 'whole_infer' 'whole_train_infer', 'infer', 'cpp_infer', 'serving_infer']
MODE=$2
if [ ${MODE} = "cpp_infer" ]; then
dataline=$(awk 'NR==52, NR==66{print}' $FILENAME)
elif [ ${MODE} = "serving_infer" ]; then
dataline=$(awk 'NR==67, NR==81{print}' $FILENAME)
else
dataline=$(awk 'NR==1, NR==51{print}' $FILENAME)
fi
count=0
for line in ${dataline[*]}; do
let count++
echo $count $line
done
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment