Changeset 622a358 for doc/theses/thierry_delisle_PhD/thesis/Makefile
- Timestamp:
- May 18, 2022, 3:59:14 PM (3 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
- Children:
- 288927f
- Parents:
- fa2a3b1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/thierry_delisle_PhD/thesis/Makefile
rfa2a3b1 r622a358 37 37 emptytree \ 38 38 fairness \ 39 idle \ 40 idle1 \ 41 idle2 \ 42 idle_state \ 39 43 io_uring \ 40 44 pivot_ring \ … … 42 46 cycle \ 43 47 result.cycle.jax.ops \ 48 result.yield.jax.ops \ 49 result.churn.jax.ops \ 50 result.cycle.jax.ns \ 51 result.yield.jax.ns \ 52 result.churn.jax.ns \ 53 result.cycle.low.jax.ops \ 54 result.yield.low.jax.ops \ 55 result.churn.low.jax.ops \ 56 result.cycle.low.jax.ns \ 57 result.yield.low.jax.ns \ 58 result.churn.low.jax.ns \ 59 result.memcd.updt.qps \ 60 result.memcd.updt.lat \ 61 result.memcd.rate.qps \ 62 result.memcd.rate.99th \ 44 63 } 45 64 … … 116 135 python3 $< $@ 117 136 118 build/result.%.ns.svg : data/% | ${Build} 119 ../../../../benchmark/plot.py -f $< -o $@ -y "ns per ops" 137 cycle_jax_ops_FLAGS = --MaxY=120000000 138 cycle_low_jax_ops_FLAGS = --MaxY=120000000 139 cycle_jax_ns_FLAGS = --MaxY=2000 140 cycle_low_jax_ns_FLAGS = --MaxY=2000 120 141 121 build/result.%.ops.svg : data/% | ${Build} 122 ../../../../benchmark/plot.py -f $< -o $@ -y "Ops per second" 142 yield_jax_ops_FLAGS = --MaxY=150000000 143 yield_low_jax_ops_FLAGS = --MaxY=150000000 144 yield_jax_ns_FLAGS = --MaxY=1500 145 yield_low_jax_ns_FLAGS = --MaxY=1500 146 147 build/result.%.ns.svg : data/% Makefile | ${Build} 148 ../../../../benchmark/plot.py -f $< -o $@ -y "ns per ops/procs" $($(subst .,_,$*)_ns_FLAGS) 149 150 build/result.%.ops.svg : data/% Makefile | ${Build} 151 ../../../../benchmark/plot.py -f $< -o $@ -y "Ops per second" $($(subst .,_,$*)_ops_FLAGS) 152 153 build/result.memcd.updt.qps.svg : data/memcd.updt Makefile | ${Build} 154 ../../../../benchmark/plot.py -f $< -o $@ -y "Actual QPS" -x "Update Ratio" 155 156 build/result.memcd.updt.lat.svg : data/memcd.updt Makefile | ${Build} 157 ../../../../benchmark/plot.py -f $< -o $@ -y "Average Read Latency" -x "Update Ratio" 158 159 build/result.memcd.rate.qps.svg : data/memcd.rate Makefile | ${Build} 160 ../../../../benchmark/plot.py -f $< -o $@ -y "Actual QPS" -x "Target QPS" 161 162 build/result.memcd.rate.99th.svg : data/memcd.rate Makefile | ${Build} 163 ../../../../benchmark/plot.py -f $< -o $@ -y "Tail Read Latency" -x "Target QPS" 123 164 124 165 ## pstex with inverted colors
Note: See TracChangeset
for help on using the changeset viewer.