Index: doc/theses/thierry_delisle_PhD/thesis/Makefile
===================================================================
--- doc/theses/thierry_delisle_PhD/thesis/Makefile	(revision 13888c0e353af72d43ce36209ac6bbecd8ea1b8f)
+++ doc/theses/thierry_delisle_PhD/thesis/Makefile	(revision 74ec7420fff2951ed2a7dfedf132bb2a67cc0509)
@@ -37,4 +37,8 @@
 	emptytree \
 	fairness \
+	idle \
+	idle1 \
+	idle2 \
+	idle_state \
 	io_uring \
 	pivot_ring \
@@ -42,4 +46,19 @@
 	cycle \
 	result.cycle.jax.ops \
+	result.yield.jax.ops \
+	result.churn.jax.ops \
+	result.cycle.jax.ns \
+	result.yield.jax.ns \
+	result.churn.jax.ns \
+	result.cycle.low.jax.ops \
+	result.yield.low.jax.ops \
+	result.churn.low.jax.ops \
+	result.cycle.low.jax.ns \
+	result.yield.low.jax.ns \
+	result.churn.low.jax.ns \
+	result.memcd.updt.qps \
+	result.memcd.updt.lat \
+	result.memcd.rate.qps \
+	result.memcd.rate.99th \
 }
 
@@ -116,9 +135,31 @@
 	python3 $< $@
 
-build/result.%.ns.svg : data/% | ${Build}
-	../../../../benchmark/plot.py -f $< -o $@ -y "ns per ops"
+cycle_jax_ops_FLAGS = --MaxY=120000000
+cycle_low_jax_ops_FLAGS = --MaxY=120000000
+cycle_jax_ns_FLAGS = --MaxY=2000
+cycle_low_jax_ns_FLAGS = --MaxY=2000
 
-build/result.%.ops.svg : data/% | ${Build}
-	../../../../benchmark/plot.py -f $< -o $@ -y "Ops per second"
+yield_jax_ops_FLAGS = --MaxY=150000000
+yield_low_jax_ops_FLAGS = --MaxY=150000000
+yield_jax_ns_FLAGS = --MaxY=1500
+yield_low_jax_ns_FLAGS = --MaxY=1500
+
+build/result.%.ns.svg : data/% Makefile | ${Build}
+	../../../../benchmark/plot.py -f $< -o $@ -y "ns per ops/procs" $($(subst .,_,$*)_ns_FLAGS)
+
+build/result.%.ops.svg : data/% Makefile | ${Build}
+	../../../../benchmark/plot.py -f $< -o $@ -y "Ops per second" $($(subst .,_,$*)_ops_FLAGS)
+
+build/result.memcd.updt.qps.svg : data/memcd.updt Makefile | ${Build}
+	../../../../benchmark/plot.py -f $< -o $@ -y "Actual QPS" -x "Update Ratio"
+
+build/result.memcd.updt.lat.svg : data/memcd.updt Makefile | ${Build}
+	../../../../benchmark/plot.py -f $< -o $@ -y "Average Read Latency" -x "Update Ratio"
+
+build/result.memcd.rate.qps.svg : data/memcd.rate Makefile | ${Build}
+	../../../../benchmark/plot.py -f $< -o $@ -y "Actual QPS" -x "Target QPS"
+
+build/result.memcd.rate.99th.svg : data/memcd.rate Makefile | ${Build}
+	../../../../benchmark/plot.py -f $< -o $@ -y "Tail Read Latency" -x "Target QPS"
 
 ## pstex with inverted colors
