Changeset c899175 for benchmark


Ignore:
Timestamp:
May 4, 2022, 12:57:43 PM (2 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
Children:
3b5dcfa
Parents:
1f4fde5 (diff), d1c47c2 (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:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

Location:
benchmark
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • benchmark/plot.py

    r1f4fde5 rc899175  
    4646        "Median Update Latency" : Field('us'    , 0, True),
    4747        "Tail Update Latency"   : Field('us'    , 0, True),
     48        "Update Ratio"          : Field('%'     , 0, False),
    4849}
    4950
  • benchmark/process-mutilate.py

    r1f4fde5 rc899175  
    1414parser = argparse.ArgumentParser(description='Python Script to convert output from mutilate to rmit like output')
    1515parser.add_argument('--out', nargs='?', type=argparse.FileType('w'), default=sys.stdout)
     16parser.add_argument('--var', nargs='?', type=str, default='Target QPS')
    1617try:
    1718        options =  parser.parse_args()
     
    112113                        continue
    113114
    114                 d = { 'Target QPS': int(rate) }
     115                d = { options.var : int(rate) }
    115116
    116117                w = extract( f, d )
Note: See TracChangeset for help on using the changeset viewer.