- Timestamp:
- Aug 31, 2023, 11:31:15 PM (2 years ago)
- Branches:
- master
- Children:
- 950c58e
- Parents:
- 92355883 (diff), 686912c (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
r92355883 r2a301ff 167 167 plt.errorbar( procs, arr, [bars[idx][0], bars[idx][1]], capsize=2, marker=next(marker) ) 168 168 marker = itertools.cycle(('o', 's', 'D', 'x', 'p', '^', 'h', '*', 'v' )) 169 if currBench == Bench.Executor or currBench == Bench.Matrix or currBench == Bench.Balance_One or currBench == Bench.Repeat:169 if currBench == Bench.Executor or currBench == Bench.Matrix or currBench == Bench.Balance_One: 170 170 plt.yscale("log") 171 171 plt.ylim(1, None) 172 172 ax.get_yaxis().set_major_formatter(ticks.ScalarFormatter()) 173 elif currBench == Bench.Repeat: 174 plt.ylim(1, 100) 173 175 else: 174 176 plt.ylim(0, None)
Note:
See TracChangeset
for help on using the changeset viewer.