aboutsummaryrefslogtreecommitdiff
path: root/src/scalarproduct/perf_scalarproduct.sh
blob: aac184d9158b948b4faf7a04a835b12ea486ca04 (plain) (blame)
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
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash
# Computes a simple scalar product, with configurable vector size.
#
# Some results (wall-clock for Alice+Bob, single-core, i7):
# SIZE   2048-H(s)  2048-O(s)    1024-O(s)
#  25     10          14            3
#  50     17          21            5
# 100     32          39            7
# 200                 77           13
# 400                149           23
# 800                304           32
# Configure benchmark size:
SIZE=25
#
# Construct input vectors:
INPUTALICE="-k CCC -e '"
INPUTBOB="-k CCC -e '"
for X in `seq 1 $SIZE`
do
  INPUTALICE="${INPUTALICE}A${X},$X;"
  INPUTBOB="${INPUTBOB}A${X},$X;"
done
INPUTALICE="${INPUTALICE}BC,-20000;RO,1000;FL,100;LOL,24;'"
INPUTBOB="${INPUTBOB}AB,10;RO,3;FL,3;LOL,-1;'"

# necessary to make the testing prefix deterministic, so we can access the config files
PREFIX=/tmp/test-scalarproduct`date +%H%M%S`

# where can we find the peers config files?
CFGALICE="-c $PREFIX/0/config"
CFGBOB="-c $PREFIX/1/config"

# launch two peers in line topology non-interactively
#
# interactive mode would terminate the test immediately
# because the rest of the script is already in stdin,
# thus redirecting stdin does not suffice)
#GNUNET_FORCE_LOG=';;;;ERROR'
#GNUNET_FORCE_LOG='scalarproduct*;;;;DEBUG/cadet-api*;;;;DEBUG'
GNUNET_TESTING_PREFIX=$PREFIX ../testbed/gnunet-testbed-profiler -n -c test_scalarproduct.conf -p 2 &
PID=$!
# sleep 1 is too short on most systems, 2 works on most, 5 seems to be safe
echo "Waiting for peers to start..."
sleep 5
# get Bob's peer ID, necessary for Alice
PEERIDBOB=`gnunet-peerinfo -qs $CFGBOB`

echo "Running problem of size $SIZE"
gnunet-scalarproduct $CFGBOB $INPUTBOB &
time RESULT=`gnunet-scalarproduct $CFGALICE $INPUTALICE -p $PEERIDBOB`
gnunet-statistics $CFGALICE -s core | grep "bytes encrypted"
gnunet-statistics $CFGBOB -s core | grep "bytes encrypted"

echo "Terminating testbed..."
# terminate the testbed
kill $PID