Ignore:
Timestamp:
Aug 31, 2023, 11:31:15 PM (2 years ago)
Author:
JiadaL <j82liang@…>
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.
Message:

Resolve conflict

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/colby_parsons_MMAth/benchmarks/actors/plotData.py

    r92355883 r2a301ff  
    167167                        plt.errorbar( procs, arr, [bars[idx][0], bars[idx][1]], capsize=2, marker=next(marker) )
    168168                    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:
    170170                        plt.yscale("log")
    171171                        plt.ylim(1, None)
    172172                        ax.get_yaxis().set_major_formatter(ticks.ScalarFormatter())
     173                    elif currBench == Bench.Repeat:
     174                        plt.ylim(1, 100)
    173175                    else:
    174176                        plt.ylim(0, None)
Note: See TracChangeset for help on using the changeset viewer.