<div dir="ltr"><div dir="ltr"><span style="color:rgb(80,0,80)">Numerous complex systems such as social networks can be modeled using graphs. Graphs used in social network mining are generally made up of numerous nodes (Facebook 1.15 billion, YouTube 1 billion on September 2013) and/or have very low densities. If the available architectures are not efficiently exploited, certain algorithms (like katz score in links prediction) will have very long execution times. However, the evolution of architectures from mono-core through multi-cores to many-cores makes them complex thus rendering difficult the task of writing programs to be run on these machines.</span></div>
<div dir="ltr"><span style="color:rgb(80,0,80)"><br></span></div><div dir="ltr"><span style="color:rgb(80,0,80)">In the quest for a language that can associate both ease-of-use and efficiency, we start by proposing a DSL (Domain Specific Library) written and embedded in Erlang. This DSL should facilitate the programming of  algorithms (in social network mining for example) on multi-core and many-core platforms such that writing parallel code on these platforms should be an easy task.</span></div>
<div dir="ltr"><span style="color:rgb(80,0,80)"><br></span></div><div dir="ltr"><span style="color:rgb(80,0,80)">In this patch (</span><font color="#500050">git@github.com:messinguelethomas/otp.git, </font><span style="color:rgb(80,0,80)">in dsl_graph.erl), we give some functions that should be useful for a social network analyzer (load_graph_gml, convert_csv_to_gml ...). We propose an extra-operator (parallel_op) that helps him to easily write parallel code without specifying messages and processes. We reuse the digraph module of erlang to write our module.</span></div>
<div dir="ltr"><span style="color:rgb(80,0,80)"><br></span></div><div dir="ltr"><span style="color:rgb(80,0,80)">We will be happy to know that the Erlang  community  will accept and continue and extend this project: do social network analyzing with erlang. Note that this kind of project is already implemented in Python. But because of its GIL (Global Interpreter Lock), Python doesn't take advantage to the available multi/many-core to reduce execution time.</span></div>
<div dir="ltr"><span style="color:rgb(80,0,80)"><br></span></div><div><span style="color:rgb(80,0,80)">Thomas Messi Nguélé.</span></div>
</div>