You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
345 B
Bash
17 lines
345 B
Bash
#!/bin/sh
|
|
|
|
for tf in tf1 tf2; do
|
|
echo "== $tf"
|
|
vdir=`mktemp -d /tmp/test-nvidia.XXXXXX`
|
|
|
|
# Need Python 3.7 here as TF1 does not support 3.8
|
|
virtualenv -q -p /usr/bin/python3.7 $vdir >/dev/null
|
|
. $vdir/bin/activate
|
|
|
|
pip install -q -r assets/requirements-$tf.txt
|
|
python3 test-nvidia
|
|
|
|
deactivate
|
|
rm --preserve-root -rf $vdir
|
|
done
|