소스 검색

Output online and total data points separately instead of interleaved

Ian Goldberg 1 년 전
부모
커밋
4ac2e451e1
1개의 변경된 파일9개의 추가작업 그리고 3개의 파일을 삭제
  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