mirror of
https://github.com/xiph/opus.git
synced 2025-05-25 04:39:13 +00:00
added LPCNet torch implementation
Signed-off-by: Jan Buethe <jbuethe@amazon.de>
This commit is contained in:
parent
90a171c1c2
commit
35ee397e06
38 changed files with 3200 additions and 0 deletions
17
dnn/torch/lpcnet/scripts/multi_run.sh
Normal file
17
dnn/torch/lpcnet/scripts/multi_run.sh
Normal file
|
@ -0,0 +1,17 @@
|
|||
#!/bin/bash
|
||||
|
||||
case $# in
|
||||
9) SETUP=$1; OUTDIR=$2; NAME=$3; NUMDEVICES=$4; ROUNDS=$5; LPCNEXT=$6; LPCNET=$7; TESTSUITE=$8; TESTITEMS=$9;;
|
||||
*) echo "multi_run.sh setup outdir name num_devices rounds_per_device lpcnext_repo lpcnet_repo testsuite_repo testitems"; exit;;
|
||||
esac
|
||||
|
||||
|
||||
LOOPRUN=${LPCNEXT}/loop_run.sh
|
||||
|
||||
mkdir -p $OUTDIR
|
||||
|
||||
for ((i = 0; i < $NUMDEVICES; i++))
|
||||
do
|
||||
echo "launching job queue for device $i"
|
||||
nohup bash $LOOPRUN $SETUP $OUTDIR "$NAME" "cuda:$i" $ROUNDS $LPCNEXT $LPCNET $TESTSUITE $TESTITEMS > $OUTDIR/job_${i}_out.txt &
|
||||
done
|
Loading…
Add table
Add a link
Reference in a new issue