Changeset 71cf630 for doc/theses/thierry_delisle_PhD/thesis/Makefile
- Timestamp:
- Aug 16, 2022, 4:04:47 PM (4 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, stuck-waitfor-destruct
- Children:
- aec2c022
- Parents:
- 741e22c (diff), 17c6edeb (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. - File:
-
- 1 edited
-
doc/theses/thierry_delisle_PhD/thesis/Makefile (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/thierry_delisle_PhD/thesis/Makefile
r741e22c r71cf630 26 26 eval_micro \ 27 27 eval_macro \ 28 conclusion \ 28 29 }} 29 30 … … 54 55 result.yield.nasus.ops \ 55 56 result.churn.jax.ops \ 57 result.churn.nasus.ops \ 58 result.locality.share.jax.ops \ 59 result.locality.share.nasus.ops \ 60 result.locality.noshare.jax.ops \ 61 result.locality.noshare.nasus.ops \ 56 62 result.cycle.jax.ns \ 57 63 result.cycle.nasus.ns \ … … 59 65 result.yield.nasus.ns \ 60 66 result.churn.jax.ns \ 67 result.churn.nasus.ns \ 68 result.locality.share.jax.ns \ 69 result.locality.share.nasus.ns \ 70 result.locality.noshare.jax.ns \ 71 result.locality.noshare.nasus.ns \ 61 72 result.cycle.low.jax.ops \ 62 73 result.cycle.low.nasus.ops \ … … 64 75 result.yield.low.nasus.ops \ 65 76 result.churn.low.jax.ops \ 77 result.churn.low.nasus.ops \ 66 78 result.cycle.low.jax.ns \ 67 79 result.cycle.low.nasus.ns \ … … 69 81 result.yield.low.nasus.ns \ 70 82 result.churn.low.jax.ns \ 71 result.memcd.updt.qps \ 72 result.memcd.updt.lat \ 83 result.churn.low.nasus.ns \ 73 84 result.memcd.rate.qps \ 74 85 result.memcd.rate.99th \ 86 result.memcd.forall.qps \ 87 result.memcd.forall.lat \ 88 result.memcd.fibre.qps \ 89 result.memcd.fibre.lat \ 90 result.memcd.vanilla.qps \ 91 result.memcd.vanilla.lat \ 75 92 result.swbsrv.25gb \ 93 result.swbsrv.25gb.err \ 76 94 SQMS 77 95 … … 162 180 yield_jax_ops_FLAGS = --MaxY=1000000000 163 181 yield_low_jax_ops_FLAGS = --MaxY=1000000000 164 yield_jax_ns_FLAGS = --MaxY=1500 165 yield_low_jax_ns_FLAGS = --MaxY=1500 182 yield_jax_ns_FLAGS = --MaxY=4000 183 yield_low_jax_ns_FLAGS = --MaxY=4000 184 185 yield_nasus_ops_FLAGS = --MaxY=1500000000 186 yield_low_nasus_ops_FLAGS = --MaxY=1500000000 187 yield_nasus_ns_FLAGS = --MaxY=1500 188 yield_low_nasus_ns_FLAGS = --MaxY=1500 189 190 churn_jax_ops_FLAGS = --MaxY=50000000 191 churn_low_jax_ops_FLAGS = --MaxY=50000000 192 churn_jax_ns_FLAGS = --MaxY=20000 193 churn_low_jax_ns_FLAGS = --MaxY=20000 194 195 churn_nasus_ops_FLAGS = --MaxY=75000000 196 churn_low_nasus_ops_FLAGS = --MaxY=75000000 197 churn_nasus_ns_FLAGS = --MaxY=20000 198 churn_low_nasus_ns_FLAGS = --MaxY=20000 166 199 167 200 build/result.%.ns.svg : data/% Makefile ../../../../benchmark/plot.py | ${Build} … … 171 204 ../../../../benchmark/plot.py -f $< -o $@ -y "Ops per second" $($(subst .,_,$*)_ops_FLAGS) 172 205 173 build/result.memcd.updt.qps.svg : data/memcd.updt Makefile ../../../../benchmark/plot.py | ${Build}174 ../../../../benchmark/plot.py -f $< -o $@ -y "Actual QPS" -x "Update Ratio"175 176 build/result.memcd.updt.lat.svg : data/memcd.updt Makefile ../../../../benchmark/plot.py | ${Build}177 ../../../../benchmark/plot.py -f $< -o $@ -y "Average Read Latency" -x "Update Ratio"178 179 206 build/result.memcd.rate.qps.svg : data/memcd.rate Makefile ../../../../benchmark/plot.py | ${Build} 180 ../../../../benchmark/plot.py -f $< -o $@ -y "Actual QPS" -x "Target QPS" 207 ../../../../benchmark/plot.py -f $< -o $@ -y "Actual QPS" -x "Target QPS" --MaxY=750000 181 208 182 209 build/result.memcd.rate.99th.svg : data/memcd.rate Makefile ../../../../benchmark/plot.py | ${Build} 183 210 ../../../../benchmark/plot.py -f $< -o $@ -y "Tail Read Latency" -x "Target QPS" 184 211 212 build/result.memcd.forall.qps.svg : data/memcd.updt Makefile ../../../../benchmark/plot.py | ${Build} 213 ../../../../benchmark/plot.py -f $< -o $@ -y "Actual QPS" -x "Target QPS" --filter forall --MaxY=700000 214 215 build/result.memcd.forall.lat.svg : data/memcd.updt Makefile ../../../../benchmark/plot.py | ${Build} 216 ../../../../benchmark/plot.py -f $< -o $@ -y "Tail Read Latency" -x "Target QPS" --filter forall --MaxY=1 217 218 build/result.memcd.vanilla.qps.svg : data/memcd.updt Makefile ../../../../benchmark/plot.py | ${Build} 219 ../../../../benchmark/plot.py -f $< -o $@ -y "Actual QPS" -x "Target QPS" --filter vanilla --MaxY=700000 220 221 build/result.memcd.vanilla.lat.svg : data/memcd.updt Makefile ../../../../benchmark/plot.py | ${Build} 222 ../../../../benchmark/plot.py -f $< -o $@ -y "Tail Read Latency" -x "Target QPS" --filter vanilla --MaxY=1 223 224 build/result.memcd.fibre.qps.svg : data/memcd.updt Makefile ../../../../benchmark/plot.py | ${Build} 225 ../../../../benchmark/plot.py -f $< -o $@ -y "Actual QPS" -x "Target QPS" --filter fibre --MaxY=700000 226 227 build/result.memcd.fibre.lat.svg : data/memcd.updt Makefile ../../../../benchmark/plot.py | ${Build} 228 ../../../../benchmark/plot.py -f $< -o $@ -y "Tail Read Latency" -x "Target QPS" --filter fibre --MaxY=1 229 185 230 build/swbsrv.% : data/swbsrv.%.nginx data/swbsrv.%.cfa Makefile ../../../../benchmark/process-trun.py | ${Build} 186 231 ../../../../benchmark/process-trun.py --out $@ $^ … … 188 233 build/result.swbsrv.%.svg : build/swbsrv.% Makefile ../../../../benchmark/plot.py | ${Build} 189 234 ../../../../benchmark/plot.py -f $< -o $@ -y "Data Rate" -x "Request Rate" 235 236 build/result.swbsrv.%.err.svg : build/swbsrv.% Makefile ../../../../benchmark/plot.py | ${Build} 237 ../../../../benchmark/plot.py -f $< -o $@ -y "Errors" -x "Request Rate" 190 238 191 239 ## pstex with inverted colors
Note:
See TracChangeset
for help on using the changeset viewer.