ONNX
AXERA_Benchmark / clean.sh
LosReturn's picture
Upload folder using huggingface_hub
ec51737 verified
Raw
History Blame Contribute Delete
235 Bytes
#! /bin/bash
ws=$(realpath $(dirname "${BASH_SOURCE[0]}"))
cd $ws
find $ws -maxdepth 2 \( -name "output" -o -name "build.log" \) | parallel -I {} -j 8 \
'
d=$(realpath $(dirname {}))
rm -rf {};
echo "clean [{}] finish.";
'