Changeset e5e2334 for benchmark


Ignore:
Timestamp:
Aug 4, 2022, 8:44:30 PM (21 months ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, master, pthread-emulation
Children:
e76fa30
Parents:
c3b999d9
Message:

Updated makefile and data plotting

Location:
benchmark
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • benchmark/plot.py

    rc3b999d9 re5e2334  
    3535        "Ops per procs"         : Field('Ops'   , 0, False),
    3636        "Ops per threads"       : Field('Ops'   , 0, False),
    37         "ns per ops/procs"      : Field(''      , 0, False, _name = "Latency (ns $/$ (Processor $\\times$ Operation))" ),
     37        "ns per ops/procs"      : Field(''      , 0, False, _name = "Latency ((ns $/$ Operation) $\\times$ Processor)" ),
    3838        "Number of threads"     : Field(''      , 1, False),
    3939        "Total Operations(ops)" : Field('Ops'   , 0, False),
     
    4545        "Target QPS"            : Field(''      , 0, False),
    4646        "Actual QPS"            : Field(''      , 0, False),
    47         "Average Read Latency"  : Field('s'     , 0, True, _factor = 0.000001),
     47        "Average Read Latency"  : Field('s'     , 0, False, _factor = 0.000001),
    4848        "Median Read Latency"   : Field('s'     , 0, True, _factor = 0.000001),
    4949        "Tail Read Latency"     : Field('s'     , 0, True, _factor = 0.000001),
     
    5151        "Median Update Latency" : Field('s'     , 0, True, _factor = 0.000001),
    5252        "Tail Update Latency"   : Field('s'     , 0, True, _factor = 0.000001),
    53         "Update Ratio"          : Field('\%'    , 0, False),
     53        "Update Ratio"          : Field('%'   , 0, False),
    5454        "Request Rate"          : Field('req/s' , 0, False),
    5555        "Data Rate"             : Field('b/s'   , 0, False, _factor = 1000 * 1000, _name = "Response Throughput"),
     56        "Errors"                : Field('%'   , 0, False),
    5657}
    5758
  • benchmark/process-trun.py

    rc3b999d9 re5e2334  
    6565                        'ActRateC':     float(vals[16]),
    6666                        'ActRate':      float(vals[17]),
    67                         'ErrRate':      float(vals[18]),
     67                        'Error Rate':   float(vals[18]),
    6868                        'SamplesT':     float(vals[19]),
    6969                        'SamplesR':     float(vals[20])
Note: See TracChangeset for help on using the changeset viewer.