Ignore:
Timestamp:
Aug 13, 2022, 1:39:35 PM (2 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, master, pthread-emulation
Children:
5378f33
Parents:
13088f1
Message:

Updated makefile and added real data for webserver and standin data for memcached

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/thierry_delisle_PhD/thesis/Makefile

    r13088f1 r08e7590d  
    8181        result.churn.low.jax.ns \
    8282        result.churn.low.nasus.ns \
    83         result.memcd.updt.qps \
    84         result.memcd.updt.lat \
    8583        result.memcd.rate.qps \
    8684        result.memcd.rate.99th \
     85        result.memcd.forall.qps \
     86        result.memcd.forall.lat \
     87        result.memcd.fibre.qps \
     88        result.memcd.fibre.lat \
     89        result.memcd.vanilla.qps \
     90        result.memcd.vanilla.lat \
    8791        result.swbsrv.25gb \
    8892        result.swbsrv.25gb.err \
     
    175179yield_jax_ops_FLAGS = --MaxY=1000000000
    176180yield_low_jax_ops_FLAGS = --MaxY=1000000000
    177 yield_jax_ns_FLAGS = --MaxY=1500
    178 yield_low_jax_ns_FLAGS = --MaxY=1500
     181yield_jax_ns_FLAGS = --MaxY=4000
     182yield_low_jax_ns_FLAGS = --MaxY=4000
    179183
    180184yield_nasus_ops_FLAGS = --MaxY=1500000000
    181185yield_low_nasus_ops_FLAGS = --MaxY=1500000000
    182 yield_nasus_ns_FLAGS = --MaxY=100000
    183 yield_low_nasus_ns_FLAGS = --MaxY=100000
     186yield_nasus_ns_FLAGS = --MaxY=1500
     187yield_low_nasus_ns_FLAGS = --MaxY=1500
    184188
    185189churn_jax_ops_FLAGS = --MaxY=50000000
     
    199203        ../../../../benchmark/plot.py -f $< -o $@ -y "Ops per second" $($(subst .,_,$*)_ops_FLAGS)
    200204
    201 build/result.memcd.updt.qps.svg : data/memcd.updt Makefile ../../../../benchmark/plot.py | ${Build}
    202         ../../../../benchmark/plot.py -f $< -o $@ -y "Actual QPS" -x "Update Ratio"
    203 
    204 build/result.memcd.updt.lat.svg : data/memcd.updt Makefile ../../../../benchmark/plot.py | ${Build}
    205         ../../../../benchmark/plot.py -f $< -o $@ -y "Average Read Latency" -x "Update Ratio"
    206 
    207205build/result.memcd.rate.qps.svg : data/memcd.rate Makefile ../../../../benchmark/plot.py | ${Build}
    208         ../../../../benchmark/plot.py -f $< -o $@ -y "Actual QPS" -x "Target QPS"
     206        ../../../../benchmark/plot.py -f $< -o $@ -y "Actual QPS" -x "Target QPS" --MaxY=750000
    209207
    210208build/result.memcd.rate.99th.svg : data/memcd.rate Makefile ../../../../benchmark/plot.py | ${Build}
    211209        ../../../../benchmark/plot.py -f $< -o $@ -y "Tail Read Latency" -x "Target QPS"
     210
     211build/result.memcd.forall.qps.svg : data/memcd.updt2 Makefile ../../../../benchmark/plot.py | ${Build}
     212        ../../../../benchmark/plot.py -f $< -o $@ -y "Actual QPS" -x "Target QPS" --filter forall --MaxY=700000
     213
     214build/result.memcd.forall.lat.svg : data/memcd.updt2 Makefile ../../../../benchmark/plot.py | ${Build}
     215        ../../../../benchmark/plot.py -f $< -o $@ -y "Tail Read Latency" -x "Target QPS" --filter forall --MaxY=1
     216
     217build/result.memcd.vanilla.qps.svg : data/memcd.updt2 Makefile ../../../../benchmark/plot.py | ${Build}
     218        ../../../../benchmark/plot.py -f $< -o $@ -y "Actual QPS" -x "Target QPS" --filter vanilla --MaxY=700000
     219
     220build/result.memcd.vanilla.lat.svg : data/memcd.updt2 Makefile ../../../../benchmark/plot.py | ${Build}
     221        ../../../../benchmark/plot.py -f $< -o $@ -y "Tail Read Latency" -x "Target QPS" --filter vanilla --MaxY=1
     222
     223build/result.memcd.fibre.qps.svg : data/memcd.updt2 Makefile ../../../../benchmark/plot.py | ${Build}
     224        ../../../../benchmark/plot.py -f $< -o $@ -y "Actual QPS" -x "Target QPS" --filter fibre --MaxY=700000
     225
     226build/result.memcd.fibre.lat.svg : data/memcd.updt2 Makefile ../../../../benchmark/plot.py | ${Build}
     227        ../../../../benchmark/plot.py -f $< -o $@ -y "Tail Read Latency" -x "Target QPS" --filter fibre --MaxY=1
    212228
    213229build/swbsrv.% : data/swbsrv.%.nginx data/swbsrv.%.cfa Makefile ../../../../benchmark/process-trun.py | ${Build}
Note: See TracChangeset for help on using the changeset viewer.