- 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/channels/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") … … 70 73 if currBench == Bench.Unset: 71 74 if line == "contend:": 72 name = "C ontend"75 name = "Channel Contention" 73 76 currBench = Bench.Contend 74 77 elif line == "zero:": … … 126 129 plt.xlabel("Cores") 127 130 for idx, arr in enumerate(data): 128 plt.errorbar( procs, arr, [bars[idx][0], bars[idx][1]], capsize=2, marker= 'o')131 plt.errorbar( procs, arr, [bars[idx][0], bars[idx][1]], capsize=2, marker=next(marker) ) 129 132 130 133 plt.yscale("log")
Note:
See TracChangeset
for help on using the changeset viewer.