Changeset 60f4919 for doc


Ignore:
Timestamp:
Jun 14, 2023, 4:55:15 PM (15 months ago)
Author:
caparsons <caparson@…>
Branches:
master
Children:
a0bd9a2, d144c26
Parents:
80fc78f
Message:

fixed marker issue in data plotting scripts

Location:
doc/theses/colby_parsons_MMAth/benchmarks
Files:
3 edited

Legend:

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

    r80fc78f r60f4919  
    166166                    for idx, arr in enumerate(data):
    167167                        plt.errorbar( procs, arr, [bars[idx][0], bars[idx][1]], capsize=2, marker=next(marker) )
     168                    marker = itertools.cycle(('o', 's', 'D', 'x', 'p', '^', 'h', '*', 'v' ))
    168169                    if currBench == Bench.Executor or currBench == Bench.Matrix or currBench == Bench.Balance_One or currBench == Bench.Repeat:
    169170                        plt.yscale("log")
  • doc/theses/colby_parsons_MMAth/benchmarks/channels/plotData.py

    r80fc78f r60f4919  
    130130                for idx, arr in enumerate(data):
    131131                    plt.errorbar( procs, arr, [bars[idx][0], bars[idx][1]], capsize=2, marker=next(marker) )
    132                
     132                marker = itertools.cycle(('o', 's', 'D', 'x', 'p', '^', 'h', '*', 'v' ))
    133133                plt.yscale("log")
    134134                # plt.ylim(1, None)
  • doc/theses/colby_parsons_MMAth/benchmarks/mutex_stmt/plotData.py

    r80fc78f r60f4919  
    103103                for idx, arr in enumerate(data):
    104104                    plt.errorbar( procs, arr, [bars[idx][0], bars[idx][1]], capsize=2, marker=next(marker) )
     105                marker = itertools.cycle(('o', 's', 'D', 'x', 'p', '^', 'h', '*', 'v' ))
    105106                plt.yscale("log")
    106107                plt.xticks(procs)
Note: See TracChangeset for help on using the changeset viewer.