- Timestamp:
- May 17, 2023, 1:35:09 AM (3 years ago)
- Branches:
- ADT, master
- Children:
- f11010e
- Parents:
- 6e4c44d (diff), 8db4708 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/colby_parsons_MMAth/benchmarks/actors/plotData.py
r6e4c44d r3982384 2 2 import sys 3 3 import time 4 import itertools 4 5 import matplotlib.pyplot as plt 5 6 import matplotlib.ticker as ticks … … 17 18 'text.usetex': True, 18 19 'pgf.rcfonts': False, 20 'font.size': 16 19 21 }) 22 marker = itertools.cycle(('o', 's', 'D', 'x', 'p', '^', 'h', '*', 'v' )) 20 23 21 24 readfile = open(sys.argv[1], "r") … … 162 165 plt.xlabel("Cores") 163 166 for idx, arr in enumerate(data): 164 plt.errorbar( procs, arr, [bars[idx][0], bars[idx][1]], capsize=2, marker= 'o')167 plt.errorbar( procs, arr, [bars[idx][0], bars[idx][1]], capsize=2, marker=next(marker) ) 165 168 if currBench == Bench.Executor or currBench == Bench.Matrix or currBench == Bench.Balance_One or currBench == Bench.Repeat: 166 169 plt.yscale("log")
Note:
See TracChangeset
for help on using the changeset viewer.