]> git.llucax.com Git - personal/website.git/blob - source/blog/posts/2009/08/graphs.rst
Update resume with The Podcast App
[personal/website.git] / source / blog / posts / 2009 / 08 / graphs.rst
1 Title: Graphs
2 Tags: en, d, dgc, naive, gc, statistics, graph, collection, benchmark, dgcbench
3
4 It's been exactly 3 months since the last post. I spent the last months writing
5 my `thesis document (in Spanish)`__, working, and being unproductive because of
6 the lack of inspiration =)
7
8 __ https://git.llucax.com/w/z.facultad/75.00/informe.git
9
10 But in the last couple of days I decided to go back to the code, and finish the
11 statistics gathering in the `Naive GC`__ (the new code is not published yet
12 because it needs some polishing). Here are some nice graphs from my
13 little `D GC benchmark`__:
14
15 __ https://git.llucax.com/w/software/dgc/naive.git
16 __ https://git.llucax.com/w/software/dgc/dgcbench.git
17
18 .. container:: center
19
20     |big_arrays| |rnd_data| |rnd_data_2| |shootout_binarytrees|
21     |split| |startup| |tree|
22
23 .. |big_arrays| image:: ##POST_URL##/graphs/big_arrays.c.mini.png
24    :target: ##POST_URL##/graphs/big_arrays.c.png
25
26 .. |rnd_data_2| image:: ##POST_URL##/graphs/rnd_data_2.c.mini.png
27    :target: ##POST_URL##/graphs/rnd_data_2.c.png
28
29 .. |rnd_data| image:: ##POST_URL##/graphs/rnd_data.c.mini.png
30    :target: ##POST_URL##/graphs/rnd_data.c.png
31
32 .. |shootout_binarytrees| image:: ##POST_URL##/graphs/shootout_binarytrees.c.mini.png
33    :target: ##POST_URL##/graphs/shootout_binarytrees.c.png
34
35 .. |split| image:: ##POST_URL##/graphs/split.c.mini.png
36    :target: ##POST_URL##/graphs/split.c.png
37
38 .. |startup| image:: ##POST_URL##/graphs/startup.c.mini.png
39    :target: ##POST_URL##/graphs/startup.c.png
40
41 .. |tree| image:: ##POST_URL##/graphs/tree.c.mini.png
42    :target: ##POST_URL##/graphs/tree.c.png
43
44 The graphs shows the space and time costs for each collection in the programs
45 life. The collection time is divided in the time spent in the ``malloc()`` that
46 triggered the collection, the time spent in the collection itself, and the time
47 the world has to be stopped (meaning the time all the threads were paused
48 because of the collection). The space is measured before and after the
49 collection, and the total memory consumed by the program is divided in 4 areas:
50 used space, free space, wasted space (space that the user can't use but it's
51 not used by the collector either) and overhead (space used by the collector
52 itself).
53
54 As you can see, the *naive* collector pretty much sucks, specially for periods
55 of lots of allocation (since it just allocated what it's asked in the
56 ``gc_malloc()`` call if the collection failed).
57
58 The next step is to modify the Tango__\ 's *Basic* collector to gather the same
59 data and see how things are going with it.
60
61 __ http://www.dsource.org/projects/tango/
62
63 .. vim: set et sw=4 sts=4 :