-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathremote-connect.sh.bck
executable file
·46 lines (43 loc) · 2.38 KB
/
remote-connect.sh.bck
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash
x=2
numuser = 1
while [ $x -le 11 ]
do
echo "Processing on Client Node: $x "
ssh jahanxb@10.10.1.$x -f 'hostname'
if [ $numuser -eq 1 ];
then
ssh jahanxb@10.10.1.$x -f 'screen -dmS sudo /mydata/flcode/venv/bin/python /mydata/flcode/main_fed_10_nodes.py --dataset cifar --round 10 --gpu -1 --tau 1 --num_users 1 --frac 1'
elif [ $numuser -eq 2 ];
then
ssh jahanxb@10.10.1.$x -f 'screen -dmS sudo /mydata/flcode/venv/bin/python /mydata/flcode/main_fed_10_nodes.py --dataset cifar --round 10 --gpu -1 --tau 1 --num_users 2 --frac 1'
elif [ $numuser -eq 3 ];
then
ssh jahanxb@10.10.1.$x -f 'screen -dmS sudo /mydata/flcode/venv/bin/python /mydata/flcode/main_fed_10_nodes.py --dataset cifar --round 10 --gpu -1 --tau 1 --num_users 3 --frac 1'
elif [ $numuser -eq 4 ];
then
ssh jahanxb@10.10.1.$x -f 'screen -dmS sudo /mydata/flcode/venv/bin/python /mydata/flcode/main_fed_10_nodes.py --dataset cifar --round 10 --gpu -1 --tau 1 --num_users 4 --frac 1'
elif [ $numuser -eq 5 ];
then
ssh jahanxb@10.10.1.$x -f 'screen -dmS sudo /mydata/flcode/venv/bin/python /mydata/flcode/main_fed_10_nodes.py --dataset cifar --round 10 --gpu -1 --tau 1 --num_users 5 --frac 1'
elif [ $numuser -eq 6 ];
then
ssh jahanxb@10.10.1.$x -f 'screen -dmS sudo /mydata/flcode/venv/bin/python /mydata/flcode/main_fed_10_nodes.py --dataset cifar --round 10 --gpu -1 --tau 1 --num_users 6 --frac 1'
elif [ $numuser -eq 7 ];
then
ssh jahanxb@10.10.1.$x -f 'screen -dmS sudo /mydata/flcode/venv/bin/python /mydata/flcode/main_fed_10_nodes.py --dataset cifar --round 10 --gpu -1 --tau 1 --num_users 7 --frac 1'
elif [ $numuser -eq 8 ];
then
ssh jahanxb@10.10.1.$x -f 'screen -dmS sudo /mydata/flcode/venv/bin/python /mydata/flcode/main_fed_10_nodes.py --dataset cifar --round 10 --gpu -1 --tau 1 --num_users 8 --frac 1'
elif [ $numuser -eq 9 ];
then
ssh jahanxb@10.10.1.$x -f 'screen -dmS sudo /mydata/flcode/venv/bin/python /mydata/flcode/main_fed_10_nodes.py --dataset cifar --round 10 --gpu -1 --tau 1 --num_users 9 --frac 1'
elif [ $numuser -eq 10 ];
then
ssh jahanxb@10.10.1.$x -f 'screen -dmS sudo /mydata/flcode/venv/bin/python /mydata/flcode/main_fed_10_nodes.py --dataset cifar --round 10 --gpu -1 --tau 1 --num_users 10 --frac 1'
else
echo 'Process Finished!!!'
fi
numuser=$(( $numuser + 1 ))
x=$(( $x + 1 ))
done