<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>Constantly Wide Tree for Parallel Processing*</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>vskiy[</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Saint Petersburg Electrotechnical University "LETI"</institution>
          ,
          <addr-line>Saint Petersburg 197376</addr-line>
          ,
          <country country="RU">Russia</country>
        </aff>
      </contrib-group>
      <fpage>50</fpage>
      <lpage>57</lpage>
      <abstract>
        <p>Improving the performance of modern computing devices requires the adaptation of data processing algorithms for the efficient use of hardware resources. This article provides comparisons of existing database management systems and shows their disadvantages when used in conjunction with parallel processing algorithms. An approach to data storage is presented that can be used to optimize the execution of database queries using parallel processing. A method for constructing the proposed data structuring storage algorithm is described. At the same time, the advantages of the algorithm and the ways of interaction with it to achieve greater benefits in comparison with the existing analogs are shown.</p>
      </abstract>
      <kwd-group>
        <kwd>Database</kwd>
        <kwd>Tree algorithm</kwd>
        <kwd>Parallel computing</kwd>
        <kwd>Data reading</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        With increasing productivity of modern computing systems [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ], it is necessary to
adapt the software in such a way as to make optimal use of the available computing
resources. Modern high-performance systems, including database management
systems (DBMS), use the interfaces for controlling the threads and cores of the working
CPU.
      </p>
      <p>
        In the article [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ] there was considered the process of paralleling queries and
executing them on MySQL DBMS. The authors have established the fact that MySQL on
the InnoDB engine does not work well with processing parallel queries and the use of
parallelized queries is inconsequential compared to simple ones.
      </p>
      <p>In this article, for more efficient reading of data from the database, we propose the
use of a modified tree algorithm.</p>
    </sec>
    <sec id="sec-2">
      <title>Problems using tree algorithms 2</title>
      <p>The most popular algorithm currently used by the DBMS is B + -tree. It belongs to
the B-tree group, which are balanced trees. The main advantage of using B + tree in a
DBMS is the method of data storage - all data is stored in the leaves of the tree, which
can be linked to each other. This allows storing data in adjacent blocks, which reduces
the chances of missing a cache in the process of paging data from the main memory.
Because of the fact that the number of reading operations from a disk decreases, the
overall data reading speed will be increased.</p>
      <p>
        However, despite the increase in data reading performance when using B + -tree,
the algorithms for their application are not optimal when processing a large number of
database queries and when using multi-thread processing of query data[
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. This is
because each thread will pass through the upper levels of the tree, and therefore will
make many requests to the tree and do extra work. This problem is illustrated in
Figure 1:
Figure 1 shows the processing of two queries for data on a fragment of the B + tree.
The first query reads data from node 4, and the second from node 5. As can be seen in
the figure, for the successful execution of each of the query processes it is necessary
that both must go through node 1, node 2 and node 3, and only after that, each of them
reaches the goal.
      </p>
      <p>
        Another type of tree that is used for parallel processing is the k-d tree. Its main
advantage is the effective search for keys in a given range. Such a tree is useful to use in
databases designed to store geometric data, for example, coordinates on a map. The
authors of the article [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] created a STIG tree (Spatio-Temporal Indexing using GPUs)
based on the k-d tree. This algorithm was designed to optimally process queries on the
input spatial data. To make this possible, the authors included in the STIG physical
storage of the keys of the tree according to the basic principles of the k-d tree, and the
actual records are stored separately in the form of data blocks that will be processed
by the cores of the graphical process. The results presented in the article [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] show the
efficiency of the algorithm. However, the possibilities of using such a tree are
severely limited. It may be useful in solving the problem of creating a database that stores
spatial data; however, a more unified solution is required in commercial development.
Thus, despite the obvious advantages of the STIG algorithm, it is not suitable for use
in a data management system used in solving business problems.
3
      </p>
    </sec>
    <sec id="sec-3">
      <title>Proposed cw-tree algorithm</title>
      <p>The basic idea of creating a tree is that the tree should be distributed according to the
number of physical cores available on the machine on which the DBMS is to be
installed.</p>
      <p>The tree must comply with the rules:
─ it must have a main vertex or root of a tree;
─ the tree consists of subtrees, which we will call child trees, each of which has its
own root, which we will call child roots;
─ the root has connections with the child roots, each of which represents a root for its
part of the tree;
─ the number of daughter roots must be equal to the number of physical cores of the
involved processor for more efficient use of resources;
─ each subtree is traversed according to the rules of that subtree. Thus, all subtrees
may not necessarily be of the same type, but on the contrary, each subtree can be
implemented in accordance with various algorithms, including various traversal
algorithms of this subtree.</p>
      <p>Creating a tree is done in accordance with the rules:</p>
      <p>Before determining which of the subtrees should add a new element, it is necessary
to find the necessary child root. For a uniform distribution, the direction of passage
from the child root with index 0 to the child root with index N alternates with the
opposite direction. At each iteration, the following algorithm is executed:
start {
if(one_of_child_trees_ is_empty) {
if (current_ child_tree_ is_empty) {
current_child_tree.Add(new_element);
sort(all_nodes);
}
else {
go_to_next_in_order_child_root(); } }
else if (more_than_one_of_child_trees_is_empty) {
If (current_ child_tree_ is_empty) {
current_child_tree.Add(new_element); } }
else {
If (current_direction_ equals_B) {
function_1();
}
else if (current_direction_ equals_A) {
function_4(); } }
}
function_1 {
If (new_element &lt; maximum_of_current_node &amp;&amp; new_element
&gt; minimum_of_current_node) {
current_child_tree.Add(new_element); }
function_2();
}
function_2 {
If (new_element &lt; minimum_current_subtree AND new_element
&gt; maximum_of_next_subtree) {
next_child_tree.Add(new_element);
from узел_n to узел_0 {
function_3 (node_i); }
}
else {
go_to_next_in_order_child_root(); } }
function_3 {
If (size_of_current_subtree &gt;
Size_of_next_in_order_subtree) {
next_child_tree.Add(minimum_of_current_subtree);
current_child_tree.Remove(minimum_of_current_subtree); }
}
function_4 {
If (new_element &lt; maximum_of__current_subtree &amp;&amp;
new_element &gt; Minimum_of_current_subtree) {
current_child_tree.Add(new_element); }
function_5 ();
}
function_5 {
if (new_element &gt; maximum_of_current_subtree AND
new_element &lt; minimum_of_next_subtree) {
next_child_tree.Add(new_element);
(1)
The operation «Add» involves adding an element to the appropriate subtree according
to the rules of that subtree. Performing the above described algorithm spends
additional time at the stage of storing data in the tree, however, it allows to sort the data in
the corresponding subtrees. This reduces the number of reads from the tree, and
therefore increases the overall read performance of the tree.</p>
      <p>
        The nodes should store the keys of each record without data. The target data set
that the user expects to receive is to be stored in the leaves of the tree. This will
minimize the number of reading operations from memory, thus speeding up queries. And
also, it separates the logic of finding the target element in the tree and accessing the
memory. Thus it is possible to use various computer resources for each operation.
For example, in article [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ], the authors applied an algorithm to process only the
bottom level of the kd-tree tree, that is, database records using GPU tools.
      </p>
      <p>Based on the presented description of the algorithm, the scheme of the resulting
tree is shown (see Fig. 2).</p>
      <p>Figure 2 shows an example of a created tree for working with data under the
control of a processor that has 4 physical cores. The user configures the number of child
roots during the creation of the database.</p>
      <p>The root of the tree from which the DBMS starts processing queries has
connections with the child roots. At the first stage of processing, it is necessary to make a
choice in which of the child trees to search for the requested data. Its physical
processors must process each of the child trees. If one of the cores cannot be used on the
computer, it is possible to use threads. Next, there is a need to make a pass through
the corresponding subtree. Since there is an abstraction on subtrees, any tree structure
can be applied to its subtree. However, the proposed use of B + - the tree is because it
is well adapted to the storage of data of various types, in contrast to, for example,
from k-d trees.</p>
      <p>
        In the article [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], the authors state that b-tree is suitable for parallel processing. In
the article [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], the authors obtained experimentally that when using b-tree, the
algorithm for traversing a tree wide (BFS) is more suitable for parallel computing, unlike
the types of algorithms for traversing a tree in-depth (DFS). Based on the conclusions
that the authors have made, it is expected that using the B-tree together using the
treewide traversal algorithm is best suited for parallelized queries.
      </p>
      <p>The database created on the implementation of the proposed tree algorithm will
faster process queries for reading data on high-performance hardware. A special
increase in performance will be noticeable for databases in which read operations are
most often performed.</p>
      <p>In order to optimize database queries, it is possible to use different types of trees.
However, even the most frequently used ones have their drawbacks, which consist of
poor adaptation to parallel processing.
4</p>
    </sec>
    <sec id="sec-4">
      <title>Conclusion</title>
      <p>A tree algorithm has been developed that will efficiently process database queries
using the processing power of the processor, which performs the search for keys and
also the processing power of the graphics device that searches for data records using
the received key.</p>
      <p>Based on the proposed algorithm, it is planned to create a new database management
system and create an experimental database in it in order to conduct an experiment.
As a result, temporary assessments and an assessment of the overall efficiency of the
use of this tree will be obtained.</p>
    </sec>
    <sec id="sec-5">
      <title>Acknowledgments</title>
      <p>The research was funded by RFBR and CITMA according to the research project
№18-57-34001</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <given-names>Anthony</given-names>
            <surname>Fox</surname>
          </string-name>
          , Chris Eichelberger, James Hughes, Skylar Lyon Commonwealth Computer Research;
          <article-title>Spatio-temporal Indexing in Non-relational Distributed Databases; IEEE</article-title>
          <year>2013</year>
          ,
          <volume>978</volume>
          -1-
          <fpage>4799</fpage>
          -1293-3/13;
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>R.K.</surname>
          </string-name>
          <article-title>Ghosh; Parallel Search Algorithms for Graphs and Tree;</article-title>
          <source>Information sciences 67</source>
          ,
          <fpage>137</fpage>
          - 165
          <year>1993</year>
          ,
          <fpage>0020</fpage>
          -
          <lpage>0255</lpage>
          /93;
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <given-names>Rupak</given-names>
            <surname>Biswas</surname>
          </string-name>
          , Zhang Jiang, Kostya Kechezhi, Sergey Knysh, Salvatore Mandra,
          <string-name>
            <surname>Bryan O'Gorman</surname>
          </string-name>
          ,
          <string-name>
            <surname>Alejandro</surname>
          </string-name>
          Perdomo-Ortiz, Andre Petukhov, John Realpe-Gomez, Eleanor Rieffel, Davide Venturelli, Fedir Vasko,
          <article-title>Zhihui Wang; A NASA perspective on quantum computing: Opportunities and challenges; Parallel Computing</article-title>
          , Volume
          <volume>64</volume>
          , May
          <year>2017</year>
          , pp
          <fpage>81</fpage>
          -
          <lpage>98</lpage>
          , DOI 10.1016/j.parco.
          <year>2016</year>
          .
          <volume>11</volume>
          .002;
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <given-names>Weiming</given-names>
            <surname>Lu</surname>
          </string-name>
          , Yaoguang Wang, Jingyuan Juang, Jian Liu, Yapeng Shen, Baogang Wei;
          <article-title>Hybrid storage architecture and efficient MapReduce processing for unstructured data; Parallel Computing</article-title>
          , Volume
          <volume>69</volume>
          ,
          <year>November 2017</year>
          , pp.
          <fpage>63</fpage>
          -
          <lpage>77</lpage>
          , DOI 10.1016/j.parco.
          <year>2017</year>
          .
          <volume>08</volume>
          .008;
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <given-names>Peiquan</given-names>
            <surname>Jin</surname>
          </string-name>
          , Puyuan Yang, Lihua Yue; Optimizing B+
          <article-title>-tree for hybrid storage systems; Distributed and Parallel Databases</article-title>
          , Volume
          <volume>33</volume>
          ,
          <year>September 2015</year>
          , Issue 3, pp
          <fpage>449</fpage>
          -
          <lpage>475</lpage>
          , DOI 10.1007/s10619-014-7157-7;
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <given-names>Qiong</given-names>
            <surname>Luo</surname>
          </string-name>
          , Jens Teubner;
          <article-title>Special issue on data management on modern hardware; Distributed and</article-title>
          <string-name>
            <surname>Parallel Databases</surname>
          </string-name>
          ,
          <year>2015</year>
          , Volume
          <volume>33</volume>
          , pp.
          <fpage>415</fpage>
          -
          <lpage>416</lpage>
          , DOI 10.1007/s10619-014- 7168-4;
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <given-names>Abdurrahman</given-names>
            <surname>Yasar</surname>
          </string-name>
          , Bugra Gedik, Hakan Ferhatosmanoglu;
          <article-title>Distributed block formation and layout for disk-based management of large-scale graphs; Distributed and</article-title>
          <string-name>
            <surname>Parallel Databases</surname>
          </string-name>
          ,
          <year>2017</year>
          , Volume
          <volume>35</volume>
          ,
          <string-name>
            <surname>Number</surname>
          </string-name>
          .1, pp.
          <fpage>23</fpage>
          -
          <lpage>53</lpage>
          ,
          <year>March 2017</year>
          , DOI 10.1007/s10619-017- 7191-3;
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <given-names>Daichi</given-names>
            <surname>Amagata</surname>
          </string-name>
          , Takashiro Hara, Shojiro Nishio;
          <article-title>Sliding window top-k dominating query processing over distributed data streams; Distributed and Parallel Databases</article-title>
          ,
          <year>December 2016</year>
          , Volume
          <volume>34</volume>
          , Issue 4, pp
          <fpage>535</fpage>
          -
          <lpage>566</lpage>
          ; DOI 10.1007/s10619-015-7187-9;
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9. Research in Mobile Database Query Optimization and Processing, Agustinus Borgy Waluyo, Bala Srinivasan, and David Taniar,
          <source>Mobile Information Systems</source>
          , Volume
          <volume>1</volume>
          (
          <year>2005</year>
          ), Issue 4, pp.
          <fpage>225</fpage>
          -
          <lpage>252</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Spiliopoulou</surname>
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hatzopoulos</surname>
            <given-names>M.</given-names>
          </string-name>
          ,
          <article-title>Ttanslation of SQL queries into a graph structure: query transformations and pre-optimization issues in a pipeline multiprocessor environment</article-title>
          ,
          <source>Informafion Sysfems</source>
          <year>1992</year>
          , Vol.
          <volume>17</volume>
          , No.
          <issue>2</issue>
          , pp.
          <fpage>161</fpage>
          -
          <lpage>170</lpage>
          . https://doi.org/10.1016/
          <fpage>0306</fpage>
          -
          <lpage>4379</lpage>
          (
          <issue>92</issue>
          )
          <fpage>90010</fpage>
          -
          <lpage>K</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Yao S</surname>
          </string-name>
          .B.
          <article-title>Optimization of query evaluation algorithms</article-title>
          .
          <source>ACM Trans. Database Syst</source>
          .
          <volume>4</volume>
          (
          <issue>2</issue>
          ),
          <fpage>133</fpage>
          -
          <lpage>155</lpage>
          (
          <year>1979</year>
          ).
          <source>DOI: 10.1145/320071</source>
          .320072
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Mikkilineni</surname>
            <given-names>K. P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Su</surname>
            <given-names>S. Y. W.</given-names>
          </string-name>
          <article-title>An evaluation of relational join algorithms in a pipelined query processing environment</article-title>
          .
          <source>IEEE Trans. Software Engng</source>
          <volume>14</volume>
          (
          <issue>6</issue>
          ),
          <fpage>838</fpage>
          -
          <lpage>848</lpage>
          (
          <year>1988</year>
          ).
          <source>DOI: 10.1109/32</source>
          .6162
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Jarke</surname>
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Koch</surname>
            <given-names>J</given-names>
          </string-name>
          .
          <article-title>Query optimization in database systems</article-title>
          .
          <source>ACM Comput. Suru</source>
          .
          <volume>16</volume>
          (
          <issue>2</issue>
          ),
          <fpage>111</fpage>
          -
          <lpage>152</lpage>
          (
          <year>1984</year>
          ).
          <source>DOI: 10.1145/356924</source>
          .356928
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Smith</surname>
            <given-names>J. M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chang</surname>
            <given-names>P. Y. T. Optimizing</given-names>
          </string-name>
          <article-title>the performance of a relational algebra database interface</article-title>
          .
          <source>CACM</source>
          <volume>18</volume>
          (
          <issue>10</issue>
          ).
          <volume>5688579</volume>
          (
          <year>1975</year>
          ).
          <source>DOI: 10.1145/361020</source>
          .361025
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Sai</surname>
            <given-names>Wu</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Feng</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Sharad</given-names>
            <surname>Mehrotra</surname>
          </string-name>
          , Beng Chin Ooi,
          <article-title>Query Optimization for Massively Parallel Data Processing</article-title>
          ,
          <source>Proceedings of the 2011 SoCC Conference</source>
          , Oct.
          <year>2011</year>
          . DOI:
          <volume>10</volume>
          .1145/2038916.2038928
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Lila</surname>
            <given-names>Shnaiderman</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Oded</given-names>
            <surname>Shmueli</surname>
          </string-name>
          ,
          <source>A Parallel Tree Pattern Query Processing Algorithm for Graph Databases using a GPGPU</source>
          ,
          <source>Workshop Proceedings of the EDBT/ICDT 2015 Joint Conference (March</source>
          <volume>27</volume>
          ,
          <year>2015</year>
          , Brussels, Belgium) on
          <source>CEUR-WS.org (ISSN 1613-0073)</source>
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <article-title>Dex: High-performance and scalable graph database management system</article-title>
          . http://www.sparsity-technologies.com/dex.
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Shichkina</surname>
            ,
            <given-names>Y.A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kupriyanov</surname>
            ,
            <given-names>M.S.</given-names>
          </string-name>
          ,
          <article-title>Applying the list method to the transformation of parallel algorithms into account temporal characteristics of operations</article-title>
          ,
          <source>Proceedings of the 19th International Conference on Soft Computing and Measurements</source>
          ,
          <string-name>
            <surname>SCM</surname>
          </string-name>
          <year>2016</year>
          ,
          <volume>7519759</volume>
          , с.
          <fpage>292</fpage>
          -
          <lpage>295</lpage>
          . DOI:
          <volume>10</volume>
          .1109/SCM.
          <year>2016</year>
          .7519759
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Article</surname>
            <given-names>URL</given-names>
          </string-name>
          , http://2018.nscf.ru/TesisAll/05_Reshenie_zadach_optimizatsii/ 206_ShichkinaYA.pdf,
          <source>last accessed</source>
          <year>2019</year>
          /04/14.
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <surname>Julian</surname>
            <given-names>Shun</given-names>
          </string-name>
          , Guy E.
          <article-title>Blelloch; A Simple Parallel Cartesian Tree Algorithm and its Application to Parallel Suffix Tree Construction</article-title>
          ; Carnegie Mellon University;
          <source>ACM Trans. Parallel Comput. 1</source>
          ,
          <issue>1</issue>
          , Article 8 (
          <year>September 2014</year>
          ); http://dx.doi.org/10.1145/2661653.
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <string-name>
            <given-names>Zhila</given-names>
            <surname>Nouri</surname>
          </string-name>
          and
          <string-name>
            <surname>Yi-Cheng</surname>
            <given-names>Tu</given-names>
          </string-name>
          ,
          <article-title>GPU-Based Parallel Indexing for Concurrent Spatial Query Processing</article-title>
          ; University of South Florida;
          <source>Proceedings of 30th International Conference on Scientific and Statistical Database Management; Bozen-Bolzano, Italy, July</source>
          <volume>9</volume>
          -
          <issue>11</issue>
          ,
          <year>2018</year>
          (SSDBM '18), 12 pages; https://doi.org/10.1145/3221269.3221296.
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          22.
          <string-name>
            <surname>Giovanni</surname>
            <given-names>Mariani</given-names>
          </string-name>
          , Andreea Anghel, Rik Jongerius,
          <source>Gero Dittmann; Parallel Computing</source>
          <volume>66</volume>
          (
          <year>2017</year>
          )
          <fpage>1</fpage>
          -
          <lpage>21</lpage>
          ; http://dx.doi.org/10.1016/j.parco.
          <year>2017</year>
          .
          <volume>04</volume>
          .006.
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          23.
          <string-name>
            <given-names>K.</given-names>
            <surname>Amunts</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Lindner</surname>
          </string-name>
          ,
          <string-name>
            <surname>K.</surname>
          </string-name>
          <article-title>Zilles; The human brain project: neuroscience perspectives and German contributions</article-title>
          ,
          <source>e-Neuroforum</source>
          <volume>5</volume>
          (
          <issue>2</issue>
          ) (
          <year>2014</year>
          )
          <fpage>43</fpage>
          -
          <lpage>50</lpage>
          ; doi:10.1007/s13295-014-0058- 4.
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          24.
          <string-name>
            <given-names>A.</given-names>
            <surname>Anghel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Rodríguez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Prisacari</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Minkenberg</surname>
          </string-name>
          ,
          <string-name>
            <surname>G.</surname>
          </string-name>
          <article-title>Dittmann; Quantifying communication in graph analytics</article-title>
          ,
          <source>in: High Performance Computing - 30th International Conference, ISC High Performance</source>
          <year>2015</year>
          , Frankfurt, Germany,
          <source>July 12-16</source>
          ,
          <year>2015</year>
          , Proceedings, 2015a, pp.
          <fpage>472</fpage>
          -
          <lpage>487</lpage>
          ; DOI:10.1007/978- 3-
          <fpage>319</fpage>
          - 20119- 1_
          <fpage>33</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          25.
          <string-name>
            <surname>M. Charrad</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Ghazzali</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          <string-name>
            <surname>Boiteau</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Niknafs</surname>
          </string-name>
          ,
          <article-title>Nbclust; an r package for determining the relevant number of clusters in a data set</article-title>
          ,
          <source>J Stat Softw</source>
          <volume>61</volume>
          (
          <issue>1</issue>
          ) (
          <year>2014</year>
          )
          <fpage>1</fpage>
          -
          <lpage>36</lpage>
          ; DOI:10.18637/jss.v061.
          <year>i06</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          26. G. Chetsa,
          <string-name>
            <given-names>L.</given-names>
            <surname>Lefevre</surname>
          </string-name>
          ,
          <string-name>
            <surname>J.-M. Pierson</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Stolf</surname>
          </string-name>
          , G. da
          <article-title>Costa; A user friendly phase detection methodology for HPC systems' analysis; Green Computing and Communications (GreenCom); 2013 IEEE and Internet of Things (iThings/CPSCom)</article-title>
          ,
          <source>IEEE International Conference on and IEEE Cyber, Physical and Social Computing</source>
          ,
          <year>2013</year>
          , pp.
          <fpage>118</fpage>
          -
          <lpage>125</lpage>
          ; DOI:10.1109/
          <string-name>
            <surname>GreenCom-iThings-CPSCom</surname>
          </string-name>
          .
          <year>2013</year>
          .
          <volume>43</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          27. L.
          <string-name>
            <surname>Fiorin</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          <string-name>
            <surname>Vermij</surname>
            ,
            <given-names>J. Van Lunteren</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Jongerius</surname>
          </string-name>
          ,
          <string-name>
            <surname>C.</surname>
          </string-name>
          <article-title>Hagleitner; An energy-efficient custom architecture for the SKA1-Low central signal processor;</article-title>
          <source>Proceedings of the 12th ACM International Conference on Computing Frontiers, in: CF '15</source>
          ,
          <string-name>
            <surname>ACM</surname>
          </string-name>
          , New York, NY, USA,
          <year>2015</year>
          , pp.
          <volume>5</volume>
          :
          <fpage>1</fpage>
          -
          <issue>5</issue>
          :8; DOI:10.1145/ 2742854.2742855.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>