plot multi-thread timings #1

Open
johannesme wants to merge 2 commits from johannesme/2024-heraklion-parallel-python:main into main
2 changed files with 8 additions and 1 deletions
Showing only changes of commit e69164e6f1 - Show all commits

3
.gitignore vendored
View file

@ -117,3 +117,6 @@ dmypy.json
# Pyre type checker
.pyre/
# pngs
*.png

View file

@ -16,8 +16,12 @@ print('This is the data I loaded: threads =', threads, ', timings =',timings)
fig, axs = plt.subplots()
# CREATE YOUR PLOT HERE
# Remember to label your axis
# Feel free to make it pretty
axs.plot(threads, timings, '*')
axs.set_xlabel('number of threads')
axs.set_ylabel('processing time')
plt.savefig('threads_v_timings.png', dpi=300)