- Timestamp:
- Aug 4, 2022, 8:44:30 PM (2 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation
- Children:
- e76fa30
- Parents:
- c3b999d9
- Location:
- benchmark
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/plot.py
rc3b999d9 re5e2334 35 35 "Ops per procs" : Field('Ops' , 0, False), 36 36 "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)" ), 38 38 "Number of threads" : Field('' , 1, False), 39 39 "Total Operations(ops)" : Field('Ops' , 0, False), … … 45 45 "Target QPS" : Field('' , 0, False), 46 46 "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), 48 48 "Median Read Latency" : Field('s' , 0, True, _factor = 0.000001), 49 49 "Tail Read Latency" : Field('s' , 0, True, _factor = 0.000001), … … 51 51 "Median Update Latency" : Field('s' , 0, True, _factor = 0.000001), 52 52 "Tail Update Latency" : Field('s' , 0, True, _factor = 0.000001), 53 "Update Ratio" : Field(' \%', 0, False),53 "Update Ratio" : Field('%' , 0, False), 54 54 "Request Rate" : Field('req/s' , 0, False), 55 55 "Data Rate" : Field('b/s' , 0, False, _factor = 1000 * 1000, _name = "Response Throughput"), 56 "Errors" : Field('%' , 0, False), 56 57 } 57 58 -
benchmark/process-trun.py
rc3b999d9 re5e2334 65 65 'ActRateC': float(vals[16]), 66 66 'ActRate': float(vals[17]), 67 'Err Rate':float(vals[18]),67 'Error Rate': float(vals[18]), 68 68 'SamplesT': float(vals[19]), 69 69 'SamplesR': float(vals[20])
Note: See TracChangeset
for help on using the changeset viewer.