implement plotting function on log scale

This commit is contained in:
ASPP Student 2024-08-30 12:21:26 +03:00
parent f2e462842e
commit 825c5afa79
2 changed files with 15 additions and 4 deletions

View file

@ -1,14 +1,19 @@
import os import os
import numpy as np import numpy as np
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
import pdb
import glob
# IO: This loads the timings for you # IO: This loads the timings for you
threads, timings = [], [] threads, timings = [], []
for file in os.listdir('timings'): files = os.listdir('timings')
files.sort(key= lambda x: int(x.split('_')[0]))
for file in files:
with open(f'timings/{file}', 'r') as f: with open(f'timings/{file}', 'r') as f:
n, t = f.read().strip().split(',') if 'None' not in file:
threads.append(int(n)) n, t = f.read().strip().split(',')
timings.append(float(t)) threads.append(int(n))
timings.append(float(t))
threads = np.array(threads) threads = np.array(threads)
timings = np.array(timings) timings = np.array(timings)
@ -17,7 +22,13 @@ print('This is the data I loaded: threads =', threads, ', timings =',timings)
fig, axs = plt.subplots() fig, axs = plt.subplots()
# CREATE YOUR PLOT HERE # CREATE YOUR PLOT HERE
plt.plot(threads, timings, '.--')
plt.xlabel('Threads')
plt.ylabel('Timings')
plt.xscale('log')
# Remember to label your axis # Remember to label your axis
# Feel free to make it pretty # Feel free to make it pretty
plt.savefig('threads_v_timings.png', dpi=300) plt.savefig('threads_v_timings.png', dpi=300)

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB