Changeset 4912520 for doc/theses/colby_parsons_MMAth/benchmarks
- Timestamp:
- May 8, 2023, 4:51:41 PM (22 months ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- c0527f8
- Parents:
- ab2b352
- Location:
- doc/theses/colby_parsons_MMAth/benchmarks
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified doc/theses/colby_parsons_MMAth/benchmarks/actors/plotData.py ¶
rab2b352 r4912520 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") -
TabularUnified doc/theses/colby_parsons_MMAth/benchmarks/channels/plotData.py ¶
rab2b352 r4912520 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") … … 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") -
TabularUnified doc/theses/colby_parsons_MMAth/benchmarks/mutex_stmt/plotData.py ¶
rab2b352 r4912520 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") … … 99 102 plt.xlabel("Cores") 100 103 for idx, arr in enumerate(data): 101 plt.errorbar( procs, arr, [bars[idx][0], bars[idx][1]], capsize=2, marker= 'o')104 plt.errorbar( procs, arr, [bars[idx][0], bars[idx][1]], capsize=2, marker=next(marker) ) 102 105 plt.yscale("log") 103 106 plt.xticks(procs) -
TabularUnified doc/theses/colby_parsons_MMAth/benchmarks/mutex_stmt/run ¶
rab2b352 r4912520 96 96 97 97 # toggle benchmarks 98 order=${ true}98 order=${false} 99 99 rand=${true} 100 100 baseline=${true}
Note: See TracChangeset
for help on using the changeset viewer.