소스 검색

Add plot file + placeholder results

Yentl Van Tendeloo 7 년 전
부모
커밋
fc8c57118c
4개의 변경된 파일42개의 추가작업 그리고 0개의 파일을 삭제
  1. 30 0
      model/plot
  2. 2 0
      model/results_mvi_latency
  3. 2 0
      model/results_mvs_latency
  4. 8 0
      model/results_real

+ 30 - 0
model/plot

@@ -0,0 +1,30 @@
+set title "MvK to MvS latency simulation"
+set xlabel "MvS latency (ms)"
+set ylabel "Time (s)"
+plot 'model/results_mvs_latency' u 1:2 w l title "Execution time", '' u 1:3 w l title "Simulation time"
+
+set title "MvI to MvK latency simulation"
+set xlabel "MvI latency (ms)"
+set ylabel "Time (s)"
+plot 'model/results_mvi_latency' u 1:2 w l title "Execution time", '' u 1:3 w l title "Simulation time"
+
+set title "MvK to MvS latency influence"
+set xlabel "MvS latency (ms)"
+set ylabel "Time (s)"
+plot 'model/results_mvs_latency' u 1:2 w l title "Execution time"
+
+set title "MvI to MvK latency influence"
+set xlabel "MvI latency (ms)"
+set ylabel "Time (s)"
+plot 'model/results_mvi_latency' u 1:2 w l title "Execution time"
+
+set title "Execution time jitter"
+set xlabel "Execution time (s)"
+set ylabel "Samples"
+set key off
+set style fill solid 1.0 noborder
+bin_width = 5.0;
+set boxwidth bin_width absolute
+bin_number(x) = floor(x/bin_width)
+rounded(x) = bin_width * (bin_number(x) + 0.5)
+plot 'model/results_real' u (rounded($1)):(1) smooth frequency with boxes

+ 2 - 0
model/results_mvi_latency

@@ -0,0 +1,2 @@
+0.00 289.1 706.5
+0.01 290.0 700.1

+ 2 - 0
model/results_mvs_latency

@@ -0,0 +1,2 @@
+0.00 289.1 706.5
+0.01 2000.0 710.1

+ 8 - 0
model/results_real

@@ -0,0 +1,8 @@
+330.1
+335.2
+320.5
+331.4
+334.8
+310.8
+340.6
+320.6