Browse Source

Output online and total data points separately instead of interleaved

Ian Goldberg 1 year ago
parent
commit
4ac2e451e1
1 changed files with 9 additions and 3 deletions
  1. 9 3
      docker/repro

+ 9 - 3
docker/repro

@@ -131,12 +131,18 @@ parse *_${numops}.out > oram_${numops}.dat
 
 echo
 echo "# Figure 9(a)"
-egrep 'Floram read .* 30ms 100mbit .* s$' oram_${numops}.dat | sort -k3 -n
+egrep 'CircuitORAMOnln read .* 30ms 100mbit .* s$' oram_${numops}.dat | sort -k3 -n
+echo
+egrep 'CircuitORAMTotl read .* 30ms 100mbit .* s$' oram_${numops}.dat | sort -k3 -n
 echo
 echo "# Figure 9(b)"
-egrep 'Floram read .* 1us 100gbit .* s$' oram_${numops}.dat | sort -k3 -n
+egrep 'CircuitORAMOnln read .* 1us 100gbit .* s$' oram_${numops}.dat | sort -k3 -n
+echo
+egrep 'CircuitORAMTotl read .* 1us 100gbit .* s$' oram_${numops}.dat | sort -k3 -n
 echo
 echo "# Figure 9(c)"
-egrep 'Floram read .* 1us 100gbit .* KiB$' oram_${numops}.dat | sort -k3 -n
+egrep 'CircuitORAMOnln read .* 1us 100gbit .* KiB$' oram_${numops}.dat | sort -k3 -n
+echo
+egrep 'CircuitORAMTotl read .* 1us 100gbit .* KiB$' oram_${numops}.dat | sort -k3 -n
 
 fi