Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/plot.py

    r3b5dcfa re9c5db2  
    3333        "Ops per threads"       : Field('Ops'   , 0, False),
    3434        "ns per ops/procs"      : Field('ns'    , 0, False),
    35         "Number of threads"     : Field(''      , 1, False),
     35        "Number of threads"     : Field('thrd'  , 1, False),
    3636        "Total Operations(ops)" : Field('Ops'   , 0, False),
    3737        "Ops/sec/procs"         : Field('Ops'   , 0, False),
     
    4040        "Cycle size (# thrds)"  : Field('thrd'  , 1, False),
    4141        "Duration (ms)"         : Field('ms'    , 0, False),
    42         "Target QPS"            : Field(''      , 0, False),
    43         "Actual QPS"            : Field(''      , 0, False),
    44         "Average Read Latency"  : Field('us'    , 0, True),
     42        "Target QPS"            : Field('QPS'   , 0, False),
     43        "Actual QPS"            : Field('QPS'   , 0, False),
    4544        "Median Read Latency"   : Field('us'    , 0, True),
    4645        "Tail Read Latency"     : Field('us'    , 0, True),
    47         "Average Update Latency": Field('us'    , 0, True),
    4846        "Median Update Latency" : Field('us'    , 0, True),
    4947        "Tail Update Latency"   : Field('us'    , 0, True),
    50         "Update Ratio"          : Field('\%'    , 0, False),
    5148}
    5249
     
    9592        print("Making Plots")
    9693
    97         for name, data in sorted(series.items()):
     94        for name, data in series.items():
    9895                _col = next(colors)
    9996                plt.scatter(data['x'], data['y'], color=_col, label=name, marker='x')
Note: See TracChangeset for help on using the changeset viewer.