Abstract
Community detection is a vital task in many fields, such as social networks, and financial analysis, to name a few. The Louvain method, the main workhorse of community detection, is a popular heuristic method based on modularity. But it is difficult for the sequential Louvain method to deal with large-scale graphs. In order to overcome the drawback, researchers have proposed several parallel Louvain methods (Parallel Louvain Method, PLM), which suffer two challenges: (1) latency in the information synchronization and (2) communities swap. To tackle these two challenges, we propose a graph partition algorithm for the parallel Louvain method. Different from existing graph partition algorithms, our graph partition algorithm divides the graph into subgraphs called isolate sets, in which vertices are relatively decoupled from others, and the PLM computes and synchronizes information without delay and communities swap. We first describe concepts and properties of isolate sets. In the second place, we propose an algorithm to divide the graph into isolate sets, which enjoys the same computation complexity as the breadth-first search. Finally, we propose the isolate-set-based parallel Louvain method, which calculates and updates vertices information without latency and communities swap. We implement our method with OpenMP on an 8-cores PC. Experiments on 18 graphs show that our parallel method achieves a maximum 4.62 speedup compared with the sequential method, and outputs higher modularity on 14 graphs.
Subject terms: Computer science, Information technology, Scientific data
Introduction
Nowadays, Web technologies, which are bases of various tasks including social networks, financial analyses and so on, have greatly facilitated scientific research and folks’ daily life1–6.
An emerging difficulty in Web-technology-based tasks lies in dealing with graph network data, undoubtedly, which are much more complicated than traditional structured data such as lists and matrices.
Community detection, whose aim is to cluster vertices in the graph into communities, is one of the foundational graph algorithms7–9.
According to the density of vertices in the graph, community detection divides closely connected vertices into the same communities.
An interesting finding is that the community detection algorithm is an optimization algorithm with “community quality”as the objective function.
According to different objective functions, many kinds of community detection methods are proposed 10–12, among which the Louvain method is a heuristic method based on modularity.
Louvain method was proposed by Blondel et al. of Louvain University in 200813.
This method has become increasingly popular owing to its ability to detect high modularity community partitions in a fast and memory efficient manner14.
And it has been widely utilized in plenty of applications due to its rapid convergence properties, high modularity, and hierarchical partitioning15.
However, with the growth of networks sizes, the scales of graphs are consequently increasing, which means that it may be highly time-consuming for the Louvain method; therefore, many researchers have proposed parallel Louvain algorithms16,17.
Every coin has two sides: the introduction of parallelization indeed accelerates Louvain but also brings implementation troubles.
Generally speaking, two major difficulties exist in PLMs: one is the latency in the synchronization of vertices information, and the other is the vertices swap.
To be specific, the first one is the latency in the synchronization of vertices information in the process of parallel computing.
In the serial Louvain method, all vertices in the graph are accessed sequentially, and the calculation and synchronization of vertices are carried out in sequence.
The calculation of each vertex is based on the latest information of the formerly calculated vertex.
In the PLMs, the parallel computing vertices have waiting time for other related vertices to synchronize information.
This latency would delay the convergence of PLMs, and reduce the modularities of graphs;
As for the second difficulty, when two different vertices move to each other’s community after calculation, the vertices swap occurs18–24.
After the vertices swap, few mergers between the vertex happens, and the community structure remains.
The exchanged vertices only affect the community labels without improving the modularity of the community.
Therefore, the vertices swap in the computing process will also hurt the convergence of the method.
Most existing PLMs deal with the first difficulty in two ways: one is synchronizing information by compare and swap (CAS) vertices information in hash tables15, the other one is using “ghost”vertices (or virtual vertices) between subgraphs in different process25. These two existing solutions do not remove the latency entirely and have additional calculation and memory overheads.
And these existing PLMs deal with the second problem by labeling scheme, which reduces the modularity of PLMs.
From the existing PLMs, we find that the above two major difficulties of latency of synchronization and vertices swap are related to the topology of the graph.
In the PLMs, the difficulty of vertices swap is related to the parallel computing of adjacent vertices.
What is more, the latency of information synchronization is not only caused by parallel computing of the adjacent vertices, but also by the vertices with common adjacent vertices.
In order to improve the efficiency of parallel computing without additional overhead, the parallel computing vertices are expected to decouple from their adjacent vertices and the vertices with common adjacent vertices.
In order to solve the bottlenecks of synchronization latency and vertex swap in the parallelization of Louvain method, we propose a novel graph partition algorithm of isolate sets partition algorithm, which divides adjacent vertices and vertices with common adjacent vertices into a series of subgraphs.
Therefore, the vertices in an isolate set are relatively independent in parallel computing, and cannot swap with each other.
Then we propose a PLM based on the isolate sets. It should be noted that our method requires undirected graphs.
We divide the graph network into subgraphs called isolate sets. Using properties of isolate sets, vertices in the same isolate set can be computed and synchronized without latency and without additional overheads. And vertices in the same isolate set are unable to swap communities naturally. Our methods are implemented on an 8-cores personal, and extensive experiments show that the proposed parallel method achieves a speedup of 4.62 compared to the sequential Louvain method, and meanwhile our method improves the modularity of communities in most cases.
The main contributions of this paper can be summarized as follows:
The definition and certain properties of the isolate set are proposed. Especially the vertices in isolate sets have properties of relative independence, which is the base of our method.
An algorithm for dividing graphs into isolate sets is given, and its computation complexity is equivalent to breadth-first search. Our partition algorithm might be not only used in parallel Louvain methods but also implemented on other parallel graph algorithms.
Isolate-set-based parallel Louvain method (IPLM) is proposed. Experiments show our method is scalable with higher modularity than existing PLMs on the shared memory architecture.
Results
This section employs 18 frequently used graphs. The experiment mainly shows the modularity and speedup of our method. The experimental results on popular datasets and analyses are reported as below.
Experimental environment
The hardware platform used in the experiment is a single-node personal PC with i9-9900K and 32G memory. The experiment machine runs the windows server 2019 standard version operation system. Experimental programs all use the cl compiler of Visual Studio 2017 without optimized compilation instructions. Every graph dataset is tested 3 times, and the average is used.
We test two parallel Louvain methods including isolate-set-based PLM and hash-table-based PLM. The sequential method for the test is the sequential Louvain method of C++ program on the personal webpage of Louvain method’s author Vincent D.Blondel13. The benchmark of the test is the parallel Louvain methods adapted from the parallel Louvain method based on hash tables15.
Datasets
The graph datasets are from the KONECT project of the University of Koblenz’Landau26, the SNAP project of Stanford University27, and the datasets of the laboratory for Web Algorithmics28. The datasets details are as follows Table 1.
Table 1.
Dataset | Vetices | Edges | Average degree |
---|---|---|---|
Gowalla-edges | 196,591 | 950,327 | 9.6681 |
Amazon0302 | 262,111 | 899,792 | 6.8658 |
com-dblp.ungraph | 317,081 | 1,049,867 | 6.6221 |
amazon.ungraph | 334,863 | 925,872 | 5.5299 |
Amazon0312 | 400,727 | 2,349,869 | 11.7280 |
Amazon0601 | 403,394 | 2,443,408 | 12.1142 |
Amazon0505 | 410,236 | 2,439,437 | 11.8928 |
web-Google | 875,713 | 4,322,051 | 9.8709 |
com-youtube.ungraph | 1,134,890 | 2,987,624 | 5.2650 |
soc-pokec-relationships | 1,632,803 | 22,301,964 | 27.3174 |
as-skitter | 1,696,415 | 11,095,298 | 13.0808 |
com-orkut.ungraph | 3,072,441 | 117,185,083 | 76.2814 |
cit-Patents | 3,774,768 | 16,518,947 | 8.7523 |
com-lj.ungraph | 3,997,962 | 34,681,189 | 17.3494 |
enwiki-2013 | 4,206,785 | 101,355,853 | 48.1868 |
soc-LiveJournal1 | 4,847,571 | 43,110,428 | 17.7864 |
orkut-groupmemberships | 8,730,857 | 327,036,519 | 74.9151 |
wikipedia-link-en | 12,082,987 | 375,535,932 | 62.1595 |
Comparison with PLM of HashTable method
In the aspect of information synchronization and communities swap, the benchmark is hash-table-based PLM. We compare with the existing research15 that uses hash tables to organize vertices and edges and synchronize information. However, the method of Que et al.15 worked on the Power7-based supercomputer Blue Gene/Q (a Power7-IH system and a massively parallel machine). Huge distinctions in the processor architecture and operation system exist between Blue Gene/Q and x86 personal computer. Therefore, we implement both their hash-table-based PLM and our isolate-set-based PLM method in the x86 environment. And we compare the speedup on the same graph datasets of LiveJournal and Wikipedia. The experiment results are shown in the Figs. 1 and 2.
Our method has better performance on the dataset Wikipedia. As shown in Table 2, in the dataset wikipedia, the graph is covered by 1327 isolate sets. While 90% of vertices are included in the first 13 isolate sets (0.98% of all isolate sets), the remaining 1314 isolate sets contain only 10% vertices of the graph. By contrast, the dataset LiveJournal is covered by 450 isolate sets and 90% of vertices are included in the first 17 isolate sets (3.78% of all isolate sets). Obviously, vertices in LiveJournal are connected stronger, which affects the efficiency of our method.
Table 2.
Dataset | Vetices | Edges | Average degree | Num of isolate sets | Num of isolate sets | Num of isolate sets |
---|---|---|---|---|---|---|
wikipedia | 12,082,987 | 375,535,932 | 62.1595 | 1327 | 3 | 13 |
com-lj | 3,997,962 | 34,681,189 | 17.3494 | 450 | 9 | 17 |
1Num of isolate sets covering 80% vertices. 2Num of isolate sets covering 90% vertices.
On the dataset LiveJournal, our method has a little lower speedup than hash-table-based method with 2 threads, because this graph has less edges (34,681,189) than others. On this graph, the hash-table-based method has less waiting time for information synchronization, while the isolate-set-based method needs more time on the partitioning graph. However, the increasing threads reduce more computation time on our method than the hash-table-based one. And the speedup of our method is higher than hash-table-based method with 8 threads.
On the dataset Wikipedia, our isolate-set-based method has an obviously higher speedup than the existing method. Because the graph dataset Wikipedia has a large number of edges of 101,355,853. Hash-table-based method requires more waiting time to synchronize and update information. However, the latency in the information synchronization is reduced in our method, which enlarges the speedup of our method dramatically.
As shown in the Figs. 3 and 4, in our method, the time occupation of isolate sets partition is about 3.3% on LiveJournal and 6.0% on Wikipedia, respectively. Our partition algorithm costs less time on partitioning and consequently reduces much time on the information synchronization.
In the perspective of the community detection modularity, our method deals with the communities swap by properties of isolate sets. Restriction vanishes on the movement of vertices in our method, which indicates that the method has more searching spaces. Therefore, our method outputs higher modularity than other methods such as the sequential Louvain method and hash-table-based PLMs. The comparisons of the original Louvain method, hash-table-based method, and our method are shown in the Fig. 5.
Experiments on extended graph datasets
Speedup experiments
The improvement on the speedup of our method on extended graph datasets is shown in the Fig. 6.
We implement hash-table-based method and our isolate-set-based method on 18 graph datasets(including the dataset LiveJournal and Wikipedia). These datasets have vertices from 196,591 to 12,082,987, and edges from 899,792 to 375,535,932. Our method presents a higher speedup than hash-table-based method on 17 graph datasets. The exception is the dataset web-Google, on which our method has 2.14 speedup and is lower than the hash-table-based method of 2.66. On the dataset Wikipedia-link-en, our method obtains 4.62 speedup with 8 threads (the best case). In contrast, the speedup is 1.22 with hash-table-based method. What’s more, the average speedup of our method on these 18 datasets is 2.69, which is higher than hash-table-based method of 1.78.
Experiments of the modularity
The final community detection performance of our method on extended graph datasets is shown in Table 3.
Table 3.
Datasets | Modularity (NMI) | ||
---|---|---|---|
Sequential Louvain method | Hash-table-based method | Isolate-set-based method | |
Amazon0302 | 0.8998 | 0.8969 | 0.9017 |
Amazon0312 | 0.8720 | 0.8677 | 0.8759 |
Amazon0505 | 0.8664 | 0.8713 | 0.8765 |
Amazon0601 | 0.8691 | 0.8721 | 0.8776 |
as-skitter | 0.8132 | 0.8312 | 0.8506 |
cit-Patents | 0.8114 | 0.8102 | 0.8136 |
amazon.ungraph | 0.9262 (0.1240) | 0.9248 (0.1182) | 0.9261 (0.1240) |
com-dblp.ungraph | 0.8203 (0.1345) | 0.8155 (0.1301) | 0.8211 (0.1345) |
com-lj.ungraph | 0.7163 | 0.7204 | 0.7504 |
com-orkut.ungraph | 0.6614 (0.0633) | 0.6987 (0.0645) | 0.6567 (0.0627) |
com-youtube.ungraph | 0.7103 | 0.6909 | 0.7189 |
Gowalla-edges | 0.6889 | 0.6839 | 0.7115 |
soc-LiveJournal1 | 0.7284 | 0.7287 | 0.7558 |
soc-pokec-relationships | 0.6895 | 0.7122 | 0.7166 |
web-Google | 0.9777 | 0.9768 | 0.9776 |
orkut-groupmemberships | 0.3071 | 0.3042 | 0.3138 |
enwiki-2013 | 0.6534 | 0.6304 | 0.6605 |
wikipedia-link-en | 0.3618 | 0.3817 | 0.3706 |
Significant values are in bold.
As shown in Table 3, our method obtains the highest modularity on the 14 of total of 18 datasets. The sequential Louvain method obtains the highest modularity on 2 datasets. On the datasets amazon.ungraph and web-Google, the modularity of isolate-set-based method is lower than the sequential method by 0.01%. Among the datasets, com-dblp, amazon, and com-orkut have the ground-truths. We compare the NMI of the three methods on these datasets. The results show that there is a slight difference between these three methods.
However, on the datesets as-skitter and com-lj.ungraph, our methods’ improvements are respectively 4.60% and 4.76% than the sequential method. What’s more, our method can improve the quality of community detection in most cases.
Discussion
To further accelerate Louvain method of community detection method, we propose the definition of isolate sets in a graph, and prove several useful properties of the isolate sets.
Additionally, a graph partition algorithm is proposed, which partitions vertices of a graph into a series of isolate sets.
We propose a parallel Louvain method based on the isolate set partition algorithm. The isolate-set-based PLM takes advantage of the properties of the isolate set to synchronize and update information efficiently in parallel computing without latency.
After the first stage of the Louvain method, two vertices belonging to different communities join the communities that the other vertex is in, which is called community swap.
In the sequential Louvain method, only one vertex is computed and moved at a time. By contrast, several vertices are moved at the same time in PLMs. Existing studies solved the problem by the minimum label heuristic method, which restricts the direction of movement of vertices and decreases the search space. In our method, because of the properties of isolate sets, the vertices and their neighbors fail to fall in the same isolate set. A vertex and its neighbor cannot be moved at the same time. Therefore, the community swap problem is avoided.
Our method requires no extra computation and memory overhead and increases the searching spaces of the method and improves the quality of community detection.
The limitation of our method is that partitioning isolate sets needs extra time. And we will improve the efficiency of the partition algorithm.
To verify the efficiency of our method, we use 18 graph datasets and conduct comparisons with state-of-the-art methods. The experiments results show that our method obtains 4.62 speedup on the personal computer with 8 threads and improves the modularity of communities detection in most cases. However, our method degrades a little on a small graph, because the partition algorithm occupies a constant time.
Theoretically, the method depends on the statistical mode of degrees of vertices in the graph, which means the majority of vertices are connected strongly or weakly. When most vertices are connected strongly, the “tail” of the distribution of isolate sets is long, and there are plenty of isolate sets containing few vertices.
In the future, we will improve the efficiency of our method algorithm and implement our method on multicore architecture for community detection on large-scale graphs.
Methods
We observe that the two challenges mentioned in the last section are related to the topology of the graphs.
The parallel computing vertices are expected to be relatively independent of each other, and the relatively independent vertices reduce the latency in synchronization and thus avoid communities swap.
Therefore, we propose an isolate sets partition algorithm, which divides the graph to isolate sets.
The vertices in the same isolate set are relatively independent, which means that they have no common adjacent vertices. And our partition method has a computation complexity equivalently to the breadth-first search (BFS).
Definition and properties of isolate sets
In order to help to propose and describe our isolate partition algorithm, we give several definitions and lemmas. We define the dependency set, isolate set29–32, and maximum isolate set. Based on the definitions, we prove that the maximum isolate set is non-unique and that an undirected graph can be covered by a series of maximum isolate sets.
Definition 1
Given an undirected graph network G(V, E), , . The set is defined as the dependency set of vertex v.
In a graph G(V, E), the union of a vertex v and the neighborhoods of v( N(v)) is defined as the dependency set of vertex v. Obviously, the dependency set of vertex v consists of vertex v and all adjacent vertices of vertex v.
Definition 2
In a graph network G(V, E), is called an isolate set, if and , .
In a graph network G(V, E), the set s is a subset of V. Vertices and are arbitrary two vertices in the set s, and sets and are the dependency sets of and . If the intersection of these two dependency sets is empty set, the subset s is called an isolate set of graph G.
According to Definition 2, intersections of the dependency sets of vertices in an isolate set are empty.
Sometimes, the isolate set is similar to the independent set, in which the vertices have no common edges. What distinguishes is that two arbitrary vertices in an isolate set have no common adjacent vertices. Especially, the sets of the single vertex are isolate sets.
Definition 3
Given an undirected graph network G(V, E), s is an isolate set of G. , , , the isolate set s is defined as an maximum isolate set of graph G.
In a graph G(V, E), s is an isolate set of G. Two arbitrary vertices and the vertex exist, which cannot make the intersection of these two dependency sets and empty set. The isolate set s is an maximum isolate set of the graph G. That is to say, there is no vertex in set that can be divided to the isolate set s.
Lemma 1
The maximum isolate set is non-unique. Except for the graph G(V, E) including one vertex, the maximum isolate set of G is unique, and the isolate set of G is V.
Proof 1
Suppose there is a graph G including 2 vertices at least, and the isolate set s is the only maximum isolate set of G. There is an arbitrary vertex v located in the complementary set of graph G (). The vertex v forms a set containing itself (). According to the Definition 2, the set is another isolate set of graph G. Hence, if the set is a maximum isolate set, it conflicts with the former assumption that the maximum isolate set is unique. If the set is not a maximum isolate set, there must be a maximum isolate set including the set , which is different from the set s and also conflicts with the assumption.
Lemma 2
Given an undirected graph G(V, E), ( is isolate), .
Proof 2
Given an undirected graph G(V, E), we can find a series of isolate sets . The graph G can be covered with union of these isolate sets.
Suppose the graph G cannot be covered with the union of isolate sets , and a vertex .
According to the Lemma 1, we divide the vertex into a new isolate set . The union of isolate set covers the graph G, which conflicts with the former assumption. Therefore, we can find a series of isolate sets to cover the graph G.
Theorem 1
For and , there exists a set , , where and are in the same isolate set.
In an undirected graph G(V, E), an arbitrary vertex and the neighborhood vertices are included in the set . The adjacent vertices of are included in the set . The union of set and sets admits set . And an arbitrary vertex in the complementary set of G () is in the same isolate set as the vertex .
Proof 3
In an undirected graph G(V, E), vertex is an arbitrary vertex in isolate set . According to the Definition 2, vertices (, the neighborhood vertices of ) are not in the isolate set . And the adjacent vertices of (vertices in ) are not in the isolate set , either due to that these vertices and the vertex have common adjacent vertices of . The set is union of the set and the set . Then, all the vertices are in the set , in which the vertices either are adjacent vertices of or have common adjacent vertices with . Therefore, an arbitrary vertex in complementary set of G () is in the same isolate set with the vertex .
The Lemmas 1 and 2 indicate that the maximum isolate sets can be found by the graph search algorithm. And we propose an algorithm for partitioning the graph into maximum isolate sets.
Isolate sets partition algorithm
According to the definition of isolate sets, in an isolate set the neighborhood of a vertex are totally different from the neighborhood of another vertex, which means that these vertices have been decoupled. The decoupling vertices can be parallelly computed without waiting for information synchronization, and the vertices cannot swap with each other in the movement. Therefore, the latency in the information synchronization is reduced without computing and memory overhead. At the same time, the communities swap is avoided.
According to the Lemma 2, an undirected graph can be divided into several isolate sets. The union of these isolate sets contains the whole vertices. In the first stage of the Louvain method, isolate sets are computed serially, and then vertices in the same isolate set are calculated in parallel to accelerate the Louvain method. However, the intersection of these isolate sets may not be empty. Such a fact means these isolate sets may share the same vertices, which are computed more than one time, unreasonably.
This part proposes a novel graph partition algorithm based on breadth-first search. Our algorithm enjoys the advantage of the avoidance of the repeat computation for the intersections. The algorithm divides the whole vertices of an undirected graph to several isolate sets. The union of these isolate sets covers vertices V of the graph G, and the intersections of these sets are empty, that is, we find such that and . The pseudocodes are displayed in Algorithm 1.
Our algorithm contains 3 steps:
In the first step, the set N is initialized with vertices set V. In other words, the set N includes all vertices in the graph.
In the second step, we search an isolate set from the set N.
Firstly, a set is initialized with the set N.
Secondly, the two-level breadth-first search is implemented from an arbitrary vertex in the set . After searching, these searched vertices form the set B. That is to say, the set B is the union of adjacent vertices of and the neighbor vertices of adjacent vertices of .
Thirdly, the vertex is moved into the isolate set , and the other vertices in the set B are moved out of the set . These three processes are implemented repeatedly until the set is an empty set.
When the set becomes an empty set, the isolate set is found out.
In the third step, the vertices in the isolate sets are moved out of the set N. And the same operation as step 2 and step 3 is implemented alternatively until the set N becomes an empty set. When the set N is empty, we get the desired non-intersected isolate sets whose union keeps all vertices.
What surprised is that our algorithm enjoys quite low computation complexity from the experimental observation. Although it is quite hard to prove such a phenomenon rigorously, several explanations may help the understanding: Let m be number of the edges and n be the number of vertices, respectively. In the process of generating an isolate set, all the edges in the graph are traversed by breadth-first search only once. And the vertices of the graph are traversed by breadth-first search once. The computation complexity of this part is equal to the breadth-first search, which is . Then the traversed vertices are moved once, which has the computation complexity of O(n). The computation complexity of generating an isolate set is . These steps are implemented iteratively, the total computation complexity of our partition algorithm is , where k is the iteration number of the algorithm. In the experiments, we found that k is always small. Therefore, the isolate set partition algorithm does not degrade to the breadth-first search algorithm too much in the perspective of computation complexity. How to bound k theoretically will be left as future work.
Isolate-set-based parallel louvain method
According to the timing of information synchronization, prior works on synchronization latency indicate two types: non-real-time synchronization and real-time synchronization.
The non-real-time synchronization method utilizes the former information to implement the calculation and does not synchronize vertices information immediately after vertices calculation.
Many PLMs with a non-real-time method have been proposed, among which different synchronization opportunities are selected. Therefore, the latencies of these methods are different.
In some studies, the vertices information is updated at the end of stage 1 of the Louvain method, and the latency is the entire iteration time.
The speedup of these methods is from 3 to 6 based on OpenMP14 and 12 based on GPUs33.
To reduce the delay of synchronization, in some studies25,34–38, the graph is partitioned into subgraphs. During an iteration, information is updated when a subgraph has finished computing.
The real-time synchronization method was proposed by Que et al.15. They utilize thread-safe hash tables to manage the vertices’information.
Parallel computing vertices in different threads read and update information in the hash table in parallel by Compare and Swap (CAS) operations, which guarantees the updated information is accessed to the other vertices (threads).
This work achieves a speedup of 49.8 in the“Giant Blue” supercomputer.
Naim et al.39 use two hash tables to manage the vertices information and communities information, which is different from the previous studies.
The authors implement their method on GPUs, and their work ultimately reaches the highest speedup of 270 on several medium graphs.
However, the hash tables have massive storage overhead and computation overhead, which is unaffordable for personal computers.
Moreover, the hash-table-based methods cannot eliminate the latency entirely, and it is difficult for hash-table-based methods to deal with large complex graphs on personal computers, which usually have less memory than supercomputers.
Information synchronization and vertices movement
In the first stage of Louvain method, every vertex is traversed. When traversed, the vertex utilizes information about itself and its neighbors for the calculation to update. Unfortunately, latency always exists in the updating, which limits the power of parallelism. Among the current PLMs, one popular methodology uses the hash tables, in which vertices’ information is organized by hash tables. When different vertices utilize and update the information of the same vertex at the same time, the CAS operation (compare-and-swap is an atomic instruction) guarantees the correct operation sequence of writing first and then reading. The computed information can be used to update other vertices. In this way, the vertices are computed parallelly.
Nevertheless, two bottlenecks trouble hash tables synchronizing information. The first one is that hash tables need additional memory and computation overhead. On a graph with hundreds of millions of vertices, methods based on hash tables require huge memory, which may overdrive personal computers’ memory. The second one is that the likelihood of collision increases. When several parallel computing vertices modify the information of the same location, a significant waiting time is needed for completing these operations.
What’s more, state-of-the-art PLMs deal with the communities swap by minimum label heuristic method. The minimum label heuristic method labels communities and utilize the notation to guide vertices movements, which restricts vertices movements and decreases the modularity of community detection.
To this end, we propose a parallel Louvain method based on isolate sets. Vertices in the same isolate set are decoupled. In our method, the parallel computing vertices are in the same isolate set. That is to say, these vertices have completely different neighbors. The parallel computing vertices in an isolate set can synchronize information in time without memory and computation overhead. In the first stage of the Louvain method, the computation of these vertices utilize information of their neighbor vertices without waiting for other vertices synchronization. After computation, these vertices update their information, which has no influence on other parallel computing vertices. Because of the properties of isolate sets, the vertices and their neighbors fail to fall in the same isolate set. A vertex and its neighbor cannot be moved at the same time. Therefore, the communities swap is avoided.
An example is shown in the Fig. 7. Vertices 3, 6, and 9 belong to isolate set , which are computed parallelly. The computation of vertex 3 requires the information of vertices 7 and 8. The computation of vertex 6 requires the information of vertices 1, 2, and 5. The computation of vertex 9 requires the information of vertex 4. The parallel computations of vertices 3, 6, and 9 are independent of each other. After computing, these three vertices synchronize information to their neighbor without waiting, because the neighbor vertices are occupied by these three vertices exclusively. And the movement target of vertex 3, 6, and 9 is one of its neighbor vertices, which are not in the parallel computing vertices. The communities swap is avoided.
We implement our method in OpenMP and C++ program language. Due to the shared memory programming of OpenMP, vertices in an isolate set are forked to different threads, and these threads carry out calculations and information synchronization independently.
Implementation of the algorithm
From the definition, traversing these isolate sets is equal to traversing all the vertices. The existing PLMs traverse the vertices in order of their index. Different from the existing Louvain methods, our method traverses the vertices in order of the isolate sets. Our method computes vertices in the same isolate set parallelly. During the parallel computing of vertices, the information is synchronized in time, and the vertices are moved parallelly. In this way, the method utilizes the property of isolate sets to automatically synchronize information in an isolate set and update community information without relying on other information synchronization methods, such as hash tables. Therefore, all vertices in the graph are computed without latency and communities swap in the first stage of Louvain method.
The isolate-set-based parallel Louvain method involves three stages and the pseudocodes are displayed in Algorithm 1:
The first step is to partition the graph into a series of isolate sets. These isolate sets can cover all the vertices in the graph, and the intersection of these isolate sets is an empty set.
The second step is to iteratively traverse these isolate sets and calculate the community information of the vertices. The first time of the second stage of the method being executed, the communities’ information of all vertices needs to be initialized, and each vertex in the graph is divided into a different community. After the initialization is completed, these isolate sets are traversed in turn. When the isolate set is traversed, the vertices in this isolate set are computed parallelly. After computation, these vertices are moved in parallel to the communities of their largest , and synchronize their information. Then this stage is implemented iteratively until the modularity of the entire graph no longer changes.
The third step is to restructure the graph, which merge vertices belonging to the same community into a new vertex, according to the updated vertices information. After the second stage of calculation, the vertices in the graph are moved to the neighbor vertices of the largest increase in modularity. And the communities information of vertices has been changed. The vertices belonging to the same community are merged into a new vertex, and the edges between these vertices are ignored. The edges between different communities are reserved.
These three steps are applied alternatively on the reconstructed graph until the modularity no longer changes or the change of modularity is less than a certain threshold. The threshold is a small quantity, which improves the robustness of the algorithm and ensures that the algorithm ends properly. What’s more, the threshold avoids the extreme cases where all communities are merged into one community. And the final community detection result is obtained.
Author contributions
H.Q. performed research; H.Q. and Y.D. designed research; all authors participated to internal revision and wrote the paper.
Data availability
The datasets analysed during the current study are available in the SNAP repository, https://snap.stanford.edu/data/index.html.
Competing interests
The authors declare no competing interests.
Footnotes
Publisher's note
Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.
References
- 1.Girvan M, Newman MEJ. Community structure in social and biological networks. Proce. Natl. Acad. Sci. 2002;99(12):7821–7826. doi: 10.1073/pnas.122653799. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 2.Flake, G.W., Lawrence, S., & Lee Giles, C. Efficient identification of web communities. In Proceedings of the Sixth ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, pp. 150–160 (2000).
- 3.Flake, G.W., Lawrence, S., Giles, C.L., & Coetzee, F.M. Self-organization and identification of web communities. Computer35(3), 66–70 (2002). 10.1109/2.989932.
- 4.Airoldi, E.M., Blei, D.M., Fienberg, S.E., & Xing, E.P. Mixed membership stochastic blockmodels. J. Mach. Learn. Res.. 9(Sep), 1981–2014 (2008). [PMC free article] [PubMed]
- 5.Mehta, N., Carin, L., & Rai, P. Stochastic blockmodels meet graph neural networks. arXiv:1905.05738 (2019).
- 6.Gopalan, P.K., & Blei, D.M. Efficient discovery of overlapping communities in massive networks. Proc. Natl. Acad. Sci.110(36), 14534–14539 (2013). 10.1073/pnas.1221839110. [DOI] [PMC free article] [PubMed]
- 7.Clauset, A., Newman, M.E.J., & Moore, C. Finding community structure in very large networks. Phys. Rev. E70(6), 066111 (2004). 10.1103/PhysRevE.70.066111. [DOI] [PubMed]
- 8.Eustace J, Wang X, Li J. Approximating web communities using subspace decomposition. Knowl.-Based Syst. 2014;70:118–127. doi: 10.1016/j.knosys.2014.06.017. [DOI] [Google Scholar]
- 9.Li J, Wang X, Cui Y. Uncovering the overlapping community structure of complex networks by maximal cliques. Phys. A. 2014;415:398–406. doi: 10.1016/j.physa.2014.08.025. [DOI] [Google Scholar]
- 10.Fortunato S. Community detection in graphs. Phys. Rep. 2010;486(3–5):75–174. doi: 10.1016/j.physrep.2009.11.002. [DOI] [Google Scholar]
- 11.Eustace J, Wang X, Cui Y. Community detection using local neighborhood in complex networks. Phys. A. 2015;436:665–677. doi: 10.1016/j.physa.2015.05.044. [DOI] [Google Scholar]
- 12.Midoun MA, Wang X, Talhaoui MZ. A Jungle Community Detection Algorithm Based on New Weighted Similarity. Arab. J. Sci. Eng. 2021;46:8493–8507. doi: 10.1007/s13369-021-05514-w. [DOI] [Google Scholar]
- 13.Blondel, V.D., Guillaume, J.L., Lambiotte, R., & Lefebvre, E. Fast unfolding of communities in large networks. J. Stat. Mech.10:155–168 (2008). 10.1088/1742-5468/2008/10/P10008.
- 14.Hao L, Halappanavar M, Kalyanaraman A. Parallel heuristics for scalable community detection. Parallel Comput. 2015;47:19–37. doi: 10.1016/j.parco.2015.03.003. [DOI] [Google Scholar]
- 15.Que, X., Checconi, F., Petrini, F., & Gunnels, J.A. Scalable community detection with the louvain algorithm. In 2015 IEEE 29th International Parallel and Distributed Processing Symposium (IPDPS), May 2015, pp. 28-3-7. 10.1109/IPDPS.2015.59.
- 16.Staudt, C.L., & Meyerhenke, H. Engineering parallel algorithms for community detection in massive networks. IEEE Trans. Parallel Distrib. Syst.27(1), 171–184 (2015). 10.1109/TPDS.2015.2390633.
- 17.Fazlali M, Moradi E, Malazi HT. Adaptive parallel louvain community detection on a multicore platform. Microprocess. Microsyst. 2017;54:26–34. doi: 10.1016/j.micpro.2017.08.002. [DOI] [Google Scholar]
- 18.Gao Y-J, Li C, Chen G-C, Chen L, Jiang X-T, Chen C. Efficient K-nearest-neighbor search algorithms for historical moving object trajectories. J. Comput. Sci. Technol. 2007;22(2):232–244. doi: 10.1007/s11390-007-9030-x. [DOI] [Google Scholar]
- 19.Shen WYG-W, Wang W, Gong L-Y, Miao Yu, Dong G-Z. Anomaly detection in microblogging via co-clustering. J. Comput. Sci. Technol. 2015;30(5):1097–1108. doi: 10.1007/s11390-015-1585-3. [DOI] [Google Scholar]
- 20.Rosvall, M., & Bergstrom, C.T. Maps of random walks on complex networks reveal community structure. Proc. Natl. Acad. Sci.105(4), 1118–1123 (2008). 10.1073/pnas.0706851105. [DOI] [PMC free article] [PubMed]
- 21.Rosvall, M., Axelsson, D., & Bergstrom, C.T. The map equation. Eur. Phys. J. Spec. Top.178(1), 13–23 (2009). 10.1140/epjst/e2010-01179-1.
- 22.Kernighan, B.W., & Lin, S. An efficient heuristic procedure for partitioning graphs. Bell Syst. Tech. J.49(2), 291–307 (1970).
- 23.MacQueen, J. Some methods for classification and analysis of multivariate observations. In Proceedings of the Fifth Berkeley Symposium on Mathematical Statistics and Probability21(4), 407 (1969).
- 24.Barnes, E.R. An algorithm for partitioning the nodes of a graph. SIAM J. Algebraic Disc. Methods3(4), 541–550 (1982).
- 25.Ghosh, S., Halappanavar, M., Tumeo, A., Kalyanaraman, A., Lu, H., Chavarria-Miranda, D., Khan, A., & Gebremedhin, A. Distributed louvain algorithm for graph community detection. In 2018 IEEE International Parallel and Distributed Processing Symposium (IPDPS), May 2018, pp. 885–895. 10.1109/IPDPS.2018.00098.
- 26.Konect, K.J. The koblenz network collection. In Proceedings of the 22nd International Conference on World Wide Web, pp. 1343–1350 (2013).
- 27.Leskovec, J., & Krevl, A. Snap datasets: Stanford large network dataset collection. http://snap.stanford.edu/data, pp. 49 (2014).
- 28.Boldi, P. The laboratory for web algorithmics (lwa) datasets. http://law.di.unimi.it/daatasets (2017).
- 29.Duckworth W, Zito M. Large 2-Independent Sets of Regular Graphs. Electron. Notes Theor. Comput. Sci. 2003;78:223–235. doi: 10.1016/S1571-0661(04)81015-6. [DOI] [Google Scholar]
- 30.Blidia, M., Chellali, M., Favaron, O., & Meddah, N. Maximal k-independent sets in graphs. Discussiones Mathematicae Graph Theory28(1), 151–163 (2008).
- 31.Chen R, Shi J-X, Chen H-B, Zang B-Y. Bipartite-oriented distributed graph partitioning for big learning. J. Comput. Sci. Technol. 2015;30(1):20–29. doi: 10.1007/s11390-015-1501-x. [DOI] [Google Scholar]
- 32.Wang D-W, Cui W-Q, Qin B. CK-modes clustering algorithm based on node cohesion in labeled property graph. J. Comput. Sci. Technol. 2019;34(5):1152–1166. doi: 10.1007/s11390-019-1966-0. [DOI] [Google Scholar]
- 33.Forster, R. Louvain community detection with parallel heuristics on gpus. In 2016 IEEE 20th Jubilee International Conference on Intelligent Engineering Systems (INES), June 2016, pp. 227–232.
- 34.Zeng, J., & Yu, H. A scalable distributed louvain algorithm for large-scale graph community detection. In 2018 IEEE International Conference on Cluster Computing, pp. 268–278 (2018). 10.1109/CLUSTER.2018.00044.
- 35.Wickramaarachchi, C., Frincu, M., Small, P., & Prasanna, V.K. Fast parallel algorithm for unfolding of communities in large graphs. In 2014 IEEE High Performance Extreme Computing Conference (HPEC), pp. 1–6 (2014).
- 36.Sattar, N.S., & Arifuzzaman, S. Parallelizing louvain algorithm: distributed memory challenges. In 2018 IEEE 16th Intl Conf on Dependable, Autonomic and Secure Computing, 16th Intl Conf on Pervasive Intelligence and Computing, 4th Intl Conf on Big Data Intelligence and Computing and Cyber Science and Technology Congress (DASC/PiCom/DataCom/CyberSciTech), pp. 695–701 (2018) 10.1109/DASC/PiCom/DataCom/CyberSciTec.2018.00122.
- 37.Zeng, J., & Yu, H. Parallel modularity-based community detection on large-scale graphs. In 2015 IEEE International Conference on Cluster Computing - Cluster 2015, pp. 1–10 (2015). 10.1109/CLUSTER.2015.11.
- 38.Cheong, C.Y., Huynh, H.P., Lo, D., & Mong Goh, R.S. Hierarchical parallel algorithm for modularity-based community detection using gpus. In European Conference on Parallel Processing, pp. 775–787 (2013).
- 39.Naim, M., Manne, F., Halappanavar, M., & Tumeo, A. Community detection on the gpu. In 2017 IEEE International Parallel and Distributed Processing Symposium (IPDPS), pp. 625–634 (2017). 10.1109/IPDPS.2017.16.
- 40.Cui Y, Wang X, Li J. Detecting overlapping communities in networks using the maximal sub-graph and the clustering coefficient. Phys. A. 2014;405:85–91. doi: 10.1016/j.physa.2014.03.027. [DOI] [Google Scholar]
- 41.Tao, S., Tianyi, C., & Dongsheng. I. Adaptive temporal difference learning with linear function approximation. IEEE Trans. Pattern Anal. Mach. Intell. (2021). 10.1109/TPAMI.2021.3119645. [DOI] [PubMed]
- 42.Tao, S., Dongsheng, L., & Wang, B. Decentralized Federated Averaging. arXiv preprint, 2020. arXiv:2002.08537. [DOI] [PubMed]
Associated Data
This section collects any data citations, data availability statements, or supplementary materials included in this article.
Data Availability Statement
The datasets analysed during the current study are available in the SNAP repository, https://snap.stanford.edu/data/index.html.