[pypy-commit] extradoc extradoc: move the blog post and related images in its own directory

antocuni pypy.commits at gmail.com
Sun Dec 23 05:36:15 EST 2018


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: extradoc
Changeset: r5924:b60c0f4fb0b5
Date: 2018-12-23 11:35 +0100
http://bitbucket.org/pypy/extradoc/changeset/b60c0f4fb0b5/

Log:	move the blog post and related images in its own directory

diff --git a/blog/draft/2018-12-gc-disable.rst b/blog/draft/2018-12-gc-disable/gc-disable.rst
rename from blog/draft/2018-12-gc-disable.rst
rename to blog/draft/2018-12-gc-disable/gc-disable.rst
--- a/blog/draft/2018-12-gc-disable.rst
+++ b/blog/draft/2018-12-gc-disable/gc-disable.rst
@@ -30,7 +30,7 @@
 
 The following chart shows the behavior of a real-world, long-running process:
 
-.. image:: 2018-12-gc-timing.png
+.. image:: gc-timing.png
 
 The orange line shows the amount of memory used by the program, which
 increases linearly while the program progresses. Every ~5 minutes, the GC
@@ -53,7 +53,7 @@
 to take an action. The following chart shows the maximum time it takes to
 complete one of such actions, aggregated every minute:
 
-.. image:: 2018-12-normal-max.png
+.. image:: normal-max.png
 
 You can clearly see that the baseline response time is around ~20-30
 ms. However, we can also see periodic spikes around ~50-100 ms, with peaks up
@@ -80,7 +80,7 @@
 The following chart compares the behavior of the default PyPy GC and the new
 custom GC, after a careful placing of ``nogc()`` sections:
 
-.. image:: 2018-12-nogc.png
+.. image:: nogc-max.png
 
 The yellow line is the same as before, while the purple line shows the new
 system: almost all spikes have gone, and the baseline performance is about 10%
diff --git a/blog/draft/2018-12-gc-timing.png b/blog/draft/2018-12-gc-disable/gc-timing.png
rename from blog/draft/2018-12-gc-timing.png
rename to blog/draft/2018-12-gc-disable/gc-timing.png
diff --git a/blog/draft/2018-12-nogc-max.png b/blog/draft/2018-12-gc-disable/nogc-max.png
rename from blog/draft/2018-12-nogc-max.png
rename to blog/draft/2018-12-gc-disable/nogc-max.png
diff --git a/blog/draft/2018-12-normal-max.png b/blog/draft/2018-12-gc-disable/normal-max.png
rename from blog/draft/2018-12-normal-max.png
rename to blog/draft/2018-12-gc-disable/normal-max.png


More information about the pypy-commit mailing list