![7FB2A226-5434-4435-9B98-43CF11E9CD52](https://hackmd.io/_uploads/BkJUXMqdxl.jpg) ![49F0AC2A-2732-4CBE-B761-E30572004ECA](https://hackmd.io/_uploads/BJ1UQMcdgx.jpg) ![E019DB5F-0F60-4569-A30F-7FC2543A8731](https://hackmd.io/_uploads/HJAHmf9_ge.jpg) ![ABFFCEE0-9060-48B4-BD6F-18C5133F13B8](https://hackmd.io/_uploads/B1ASmM5dxg.jpg) ![7D775FC8-AAFA-4984-97BB-8381EEE6229D](https://hackmd.io/_uploads/rJ18Qzc_ex.jpg) ![S__3784862](https://hackmd.io/_uploads/SJJ8Qfcdll.jpg) ![CCD58FE4-9C61-44BF-8F49-BC0F440BC562](https://hackmd.io/_uploads/B1kL7f9uge.png) ![048CD06F-4DF3-48DC-AA06-6B1C1D040D33](https://hackmd.io/_uploads/ryArmM5uee.jpg) make c heck `$ sudo dmesg > kernel_log.txt` ```python with open("kernel_log.txt", "r") as file: lines = file.readlines() with open("execution_times.txt", "w") as output_file: sample_number = 1 for line in lines: parts = line.split() print(parts) execution_time = int(parts[2]) output_file.write(f"{sample_number} {execution_time}\n") sample_number += 1 ``` ``` set title "Execution Times" set xlabel "request" set ylabel "Time (ns)" set datafile separator " " set terminal png set output "execution_times.png" plot "execution_times.txt" using 1:2 with lines ``` `$ gnuplot plot_execution_times.gp` ![carousel1](https://hackmd.io/_uploads/ryN68zMra.png) ![carousel2](https://hackmd.io/_uploads/Sk4T8zzHa.png) ![carousel3](https://hackmd.io/_uploads/rk4pUGfHa.png) ![carousel2-1](https://hackmd.io/_uploads/rJoGofMra.jpg) ![carousel1-1](https://hackmd.io/_uploads/SkiMsGfSa.jpg) ![carousel3-1](https://hackmd.io/_uploads/SysMszzHa.jpg)