Incremental Streaming Graph Partitioning

Total Page:16

File Type:pdf, Size:1020Kb

Incremental Streaming Graph Partitioning Incremental Streaming Graph Partitioning Lisa Durbeck Peter Athanas Virginia Tech Virginia Tech Dept. of ECE Dept. of ECE ldurbeck @ vt.edu athanas @ vt.edu Abstract—Graph partitioning is an NP-hard problem its contributions is a set of graphs along with vertex whose efficient approximation has long been a subject group labels with which researchers can develop of interest. The I/O bounds of contemporary computing new algorithms and validate results. This also fa- environments favor incremental or streaming graph parti- cilitates comparisons among competing approaches tioning methods. Methods have sought a balance between latency, simplicity, accuracy, and memory size. In this in terms of their computational and memory cost paper, we apply an incremental approach to streaming versus their accuracy of results. Facilitating this partitioning that tracks changes with a lightweight proxy further is a graph generator, and a baseline algorithm to trigger partitioning as the clustering error increases. and scoring functions against which researchers can We evaluate its performance on the DARPA/MIT Graph benchmark their progress, and a code base in C++ Challenge streaming stochastic block partition dataset, and or Python with which to begin. Within the larger find that it can dramatically reduce the invocation of partitioning, which can provide an order of magnitude DGC, which contains several challenges since 2017, speedup. this work focuses on the Streaming Graph Chal- Index Terms—Computation (stat.CO); Graph partition; lenge (SGC), a challenge for graph partitioning that graph sparsification; spectral graph theory; LOBPCG; includes both static and streaming datasets of syn- spectral graph partitioning; stochastic blockmodels; incre- thetic stochastic blockmodel-based (SBM) graphs. mental partitioning; community detection This paper reports on efforts to advance progress further within the SGC by augmenting the fastest I. INTRODUCTION approach demonstrated to date by incorporating Graphs are a species of big data that is partic- recent and complementary progress in incremental ularly suited for representing relationships between partition for time-varying graphs by Charisopoulos entities. For example, a graph of a social network [2]. Partitioning is an expensive operation; we seek describes friendships and kinship. A graph partition to reduce calls to the partitioner without impacting is a more compact encoding of the data, in which the the partition quality. The approach takes advantage community structure of the graph is preserved, with of intrinsic properties of the graph to track graph a several-fold reduction in edges. Graph partition is edge insertions and deletions, and indicate when among NP-hard problems for which exact solutions the set of updates may cause a change to the are too expensive to obtain because no polynomial- community structure of the graph. When it does not, time solution is known; instead, people have devel- we retain the group labels from the prior partition— oped heuristics to find clusters that approximate the conserving partition cycles while tracking the opti- optimal solution sufficiently well. mal group assignments within an error tolerance . Today’s phenomenal data production rates make To better pinpoint the source of speedup we it desirable to have a simple, fast and accurate derive an expression for the rate of consumption of graph partitioner along with convenient tools for edge updates by the enhanced partitioning pipeline graph analysis. The DARPA/MIT Graph Challenge and show that under certain conditions it can pro- (DGC) was envisioned as a way to accelerate duce an impressive speedup over the work/time of progress in graph structure assessments such as the partitioner, especially as the number of batches graph isomorphism and graph partition [9]. One of of updates increases. We experimentally verify these in IEEE High Performance Extreme Computing Conference HPEC 2020, © 2020 IEEE estimates for SGC SBM graphs with known parti- or LOBPCG by Zhuzhunashvili and Knyazev [17]. tion labels. LOBPCG is a spectral method particularly suited The paper is organized as follows. The Back- for sparse matrices and sparse graphs like those of ground section outlines related work in graph par- the DGC stochastic block challenges [17]. LOBPCG titioning motivating the approach used here, as has a faster time-order than the baseline of O(N ·k), described in the Approach and Methods section. The where N is the number of nodes in the graph, and Experiments and Results section describes specifics k is the number of groups, or clusters. on the datasets and computing environment, and the We confirmed these earlier-reported time-orders performance of the approach relative to the baseline for both the Peixoto and Knyazev methods in the and to the most relevant related work. Discussion course of our experiments with SGC static graphs and Future Work summarizes the work and suggests of sizes ranging from 50 nodes to 5 million nodes how it could be extended. that were released for the challenge in 2017 or 2020. Since LOBPCG’s time-order is a significant II. BACKGROUND improvement over the baseline and gives similar Many common development frameworks use the accuracies, at least for the low-block-size, low- most rudimentary of the lightweight streaming par- variation graphs within SGC, we based our exper- titioning techniques pioneered by Stanton and Kliot, iments on seeing whether these ideas improve the still, such as hashing on node index [16]. Yet there performance of LOBPCG further. are many potential benefits to approaches that trade LOBPCG is an efficient spectral clustering some simplicity for greater computational or storage method. Other methods of spectral partitioning may efficiency. A summary of approaches can be found be desirable in other situations. Spielman and Teng in Fortunato [7]. present a single-pass, local partitioning algorithm Global approaches to graph partition rely on also based on spectral clustering using the eigen- properties of the entire graph. The most common values of the graph Lapacian [15]. Their method examples are spectral partitioning, which derives uses O(N + E) storage and O(E) time where E a partition from approximate eigenvectors of the is the number of edges of the graph, and N the adjacency matrix [8], and spectral clustering, which number of nodes. LOBPCG has a smaller time- derives it using the eigen-decomposition of the order and space-order due to the advantage of being graph Laplacian matrix [1], [14]. These were first a matrix-free method that does not require storing developed in the 1960s and 70s, and took their the graph coefficient matrix explicitly; instead, it modern form in the 1990s. Their major drawback can access the matrix by evaluating matrix-vector is that the necessary access to information about products [10]. the full graph may not be possible in practice for To our knowledge, incremental partitioning was very large graphs—a drawback addressed to some first introduced by Ou and Ranka, within the context degree in the current work by the use of a matrix- of adaptive finite element meshing [12]. They ob- free method by Knyazev that does not require the served that, for a class of problems such as adaptive explicit storage of the adjacency matrix [10]. finite element meshing, where continuous updates to The DGC baseline for streaming graph partition the graph are occurring, the number of updates to for stochastic block models (SBM) is a sequen- the partition assignment at any given time is small tial implementation of a parallelizable Bayesian relative to the size of the graph. They called this statistics-based stochastic block partitioning method the incremental graph partitioning problem. They of Peixoto [9], [13]. The baseline partitioner is assigned partitions to graph updates using a simple accurate in its group assignments, but slow: its time- local graph-distance-based metric. order is O(E · log2E), where E is the number of A similar observation motivates Charisopoulos edges in the graph. within the context of evolution of time-varying One of the winners in the 2017 SGC compe- SBM graphs [2]. They developed a proxy for the tition is a partitioner based on Locally Optimal Davis–Kahan bound on the subspace distance within Block Preconditioned Conjugate Gradient Method, updates to a graph adjacency matrix that serves 2 to characterize graph updates succinctly in terms of distance from a spectrum threshold, within an incremental approach to spectral estimation, using subspace iteration for block Krylov methods. This provides a bound on the error for the accuracy of the subspace used to make the partition assignments. We use a relevant distance metric for SBMs they derived and proved that requires access to degree information from the prior partition, and degree information within the current batch of graph Fig. 1. State machine representation of algorithm as a process. The updates [2]. algorithm from a data view is encapsulated in Equation 5. Our partitioning algorithm is depicted in Figure 1 as a state machine. It functions similarly to Algorithm 3.1 in Charisopoulos [2]. The system for all symmetric adjacency matrices [11]. We use has two states and three transitions; first, an ac- this fact to set d = 1 and solve Equation 7 for α. cumulation state in which the low-cost distance metric corresponding with Equation 6 is periodically III. APPROACHES &METHODS checked, and second, transition to a partitioning To define the partitioning problem in general, state in which the eigenvalues and eigenvectors given a graph with no group labels associated with are recalculated, after which the system returns to any node, the goal is to produce accurate group the accumulation state until the proxied-subspace label assignments for each node in the graph. An distance is further than a distance of from the additional assumption for the present work is that subspace generated in the prior partition cycle. In the problem is an incremental partition problem. In this way the partition label assignments remain such a case, the graph is revealed to the algorithm within an error distance of from their true current over time; it does not possess all the information values.
Recommended publications
  • 16.6 Graph Partition 541
    16.6 GRAPH PARTITION 541 INPUT OUTPUT 16.6 Graph Partition Input description: A (weighted) graph G =(V,E) and integers k and m. Problem description: Partition the vertices into m roughly equal-sized subsets such that the total edge cost spanning the subsets is at most k. Discussion: Graph partitioning arises in many divide-and-conquer algorithms, which gain their efficiency by breaking problems into equal-sized pieces such that the respective solutions can easily be reassembled. Minimizing the number of edges cut in the partition usually simplifies the task of merging. Graph partition also arises when we need to cluster the vertices into logical components. If edges link “similar” pairs of objects, the clusters remaining after partition should reflect coherent groupings. Large graphs are often partitioned into reasonable-sized pieces to improve data locality or make less cluttered drawings. Finally, graph partition is a critical step in many parallel algorithms. Consider the finite element method, which is used to compute the physical properties (such as stress and heat transfer) of geometric models. Parallelizing such calculations requires partitioning the models into equal-sized pieces whose interface is small. This is a graph-partitioning problem, since the topology of a geometric model is usually represented using a graph. Several different flavors of graph partitioning arise depending on the desired objective function: 542 16. GRAPH PROBLEMS: HARD PROBLEMS Figure 16.1: The maximum cut of a graph • Minimum cut set –Thesmallest set of edges to cut that will disconnect a graph can be efficiently found using network flow or randomized algorithms.
    [Show full text]
  • Tensor Spectral Clustering for Partitioning Higher-Order Network Structures
    Tensor Spectral Clustering for Partitioning Higher-order Network Structures Austin R. Benson∗ David F. Gleichy Jure Leskovecz Abstract normalized) number of first-order structures (i.e., edges) that Spectral graph theory-based methods represent an important need to be cut in order to split the graph into two parts. In a class of tools for studying the structure of networks. Spec- similar spirit, a higher-order generalization of spectral clus- tral methods are based on a first-order Markov chain de- tering would try to minimize cutting higher-order structures rived from a random walk on the graph and thus they cannot that involve multiple nodes (e.g., triangles). take advantage of important higher-order network substruc- Incorporating higher-order graph information (that is, tures such as triangles, cycles, and feed-forward loops. Here network motifs/graphlets) into the partitioning process can we propose a Tensor Spectral Clustering (TSC) algorithm significantly improve our understanding of the underlying that allows for modeling higher-order network structures in a network. For example, triangles (three-dimensional network graph partitioning framework. Our TSC algorithm allows the structures involving three nodes) have proven fundamental to user to specify which higher-order network structures (cy- understanding social networks [14, 21] and their community cles, feed-forward loops, etc.) should be preserved by the structure [10, 26, 29]. Most importantly, higher-order spec- network clustering. Higher-order network structures of in- tral clustering would allow for greater modeling flexibility terest are represented using a tensor, which we then partition as the application would drive which higher-order network by developing a multilinear spectral method.
    [Show full text]
  • Preconditioned Spectral Clustering for Stochastic Block Partition
    Preconditioned Spectral Clustering for Stochastic Block Partition Streaming Graph Challenge (Preliminary version at arXiv.) David Zhuzhunashvili Andrew Knyazev University of Colorado Mitsubishi Electric Research Laboratories (MERL) Boulder, Colorado 201 Broadway, 8th Floor, Cambridge, MA 02139-1955 Email: [email protected] Email: [email protected], WWW: http://www.merl.com/people/knyazev Abstract—Locally Optimal Block Preconditioned Conjugate The graph partitioning problem can be formulated in terms Gradient (LOBPCG) is demonstrated to efficiently solve eigen- of spectral graph theory, e.g., using a spectral decomposition value problems for graph Laplacians that appear in spectral of a graph Laplacian matrix, obtained from a graph adjacency clustering. For static graph partitioning, 10–20 iterations of LOBPCG without preconditioning result in ˜10x error reduction, matrix with non-negative entries that represent positive graph enough to achieve 100% correctness for all Challenge datasets edge weights describing similarities of graph vertices. Most with known truth partitions, e.g., for graphs with 5K/.1M commonly, a multi-way graph partitioning is obtained from (50K/1M) Vertices/Edges in 2 (7) seconds, compared to over approximated “low frequency eigenmodes,” i.e. eigenvectors 5,000 (30,000) seconds needed by the baseline Python code. Our corresponding to the smallest eigenvalues, of the graph Lapla- Python code 100% correctly determines 98 (160) clusters from the Challenge static graphs with 0.5M (2M) vertices in 270 (1,700) cian matrix. Alternatively and, in some cases, e.g., normalized seconds using 10GB (50GB) of memory. Our single-precision cuts, equivalently, one can operate with a properly scaled graph MATLAB code calculates the same clusters at half time and adjacency matrix, turning it into a row-stochastic matrix that memory.
    [Show full text]
  • Big Graph Processing: Partitioning and Aggregated Querying
    Big Graph Processing : Partitioning and Aggregated Querying Ghizlane Echbarthi To cite this version: Ghizlane Echbarthi. Big Graph Processing : Partitioning and Aggregated Querying. Databases [cs.DB]. Université de Lyon, 2017. English. NNT : 2017LYSE1225. tel-01707153 HAL Id: tel-01707153 https://tel.archives-ouvertes.fr/tel-01707153 Submitted on 12 Feb 2018 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. No d’ordre NNT : 2017LYSE1225 THESEDEDOCTORATDEL’UNIVERSIT` EDELYON´ op´er´ee au sein de l’Universit´e Claude Bernard Lyon 1 Ecole´ Doctorale ED512 Infomath Sp´ecialit´e de doctorat : Informatique Soutenue publiquement le 23/10/2017, par : Ghizlane ECHBARTHI Big Graph Processing: Partitioning and Aggregated Querying Devant le jury compos´ede: Nom Pr´enom, grade/qualit´e, ´etablissement/entreprise Pr´esident(e) Karine Zeitouni, Professeur, Universit´e de Versaille Rapporteure Raphael Couturier, Professeur, Universit´e de Franche-Comt´e Rapporteur Angela Bonifati, Professeur, Universit´e Lyon 1 Examinatrice Mohand Boughanem, Professeur, Universit´e Paul Sabatier Examinateur Hamamache Kheddouci, Professeur, Universit´e Lyon 1 Directeur de th`ese Remerciements Tout d’abord je tiens `a remercier mon directeur de th`ese Hamamache KHEDDOUCI, de m’avoir acceuilli au sein de l’´equipe GOAL, d’avoir constamment veill´e sur la qualit´e de mon travail et de m’avoir apport´e un soutien scientifique et morale d’une grande importance.
    [Show full text]
  • Recent Advances in Graph Partitioning
    Recent Advances in Graph Partitioning Aydın Buluç1, Henning Meyerhenke2, Ilya Safro3, Peter Sanders2, and Christian Schulz2 1 Computational Research Division, Lawrence Berkeley National Laboratory, Berkeley, USA 2 Institute of Theoretical Informatics, Karlsruhe Institute of Technology (KIT), Karlsruhe, Germany 3 School of Computing, Clemson University, Clemson SC, USA Abstract. We survey recent trends in practical algorithms for balanced graph partitioning, point to applications and discuss future research directions. 1 Introduction Graphs are frequently used by computer scientists as abstractions when modeling an appli- cation problem. Cutting a graph into smaller pieces is one of the fundamental algorithmic operations. Even if the final application concerns a different problem (such as traversal, find- ing paths, trees, and flows), partitioning large graphs is often an important subproblem for complexity reduction or parallelization. With the advent of ever larger instances in applica- tions such as scientific simulation, social networks, or road networks, graph partitioning (GP) therefore becomes more and more important, multifaceted, and challenging. The purpose of this paper is to give a structured overview of the rich literature, with a clear emphasis on explaining key ideas and discussing recent work that is missing in other overviews. For a more detailed picture on how the field has evolved previously, we refer the interested reader to a number of surveys. Bichot and Siarry [BS11] cover studies on GP within the area of numerical analysis. This includes techniques for GP, hypergraph partitioning and parallel methods. The book discusses studies from a combinatorial viewpoint as well as several ap- plications of GP such as the air traffic control problem.
    [Show full text]
  • Solving the Max-Cut Problem Using Eigenvalues
    DISCRETE APPLIED MATHEMATICS Discrete Applied Mathematics 62 (1995) 2499278 Solving the max-cut problem using eigenvalues Svatopluk Poljak”, Franz Rendlbq* “FakultlitJiir Mathematik und Informatik, Universitiit Passau, 94030 Passau, Germany bTechnische Universitiit Graz, Institut fir Mathematik, Kopernikusgasse 24, A-8010 Gras Austria Received 2 April 1992; revised 10 April 1994 Abstract We present computational experiments for solving the max-cut problem using an eigenvalue relaxation. Our motivation is twofold - we are interested both in the quality of the bound, and in developing an efficient code to compute it. We describe the theoretical background of the method, an implementation of the algorithm, and its practical performance. The experiments have been done for various data sets, including random graphs of different densities, clustering problems, problems arising from quadratic O-l optimization, and some graphs taken from the literature. The basic algorithm is used to compute an upper and lower bound on the max-cut. The relative gap between these bounds is typically much less than 10%. We also present results where the basic algorithm is used in a “branch and bound” setting to find the exact value of the max-cut. The largest problems solved to optimality are dense geometric graphs with up to 100 nodes. Keywords: The max-cut problem; Eigenvalues; Subdifferential optimization 1. Introduction The max-cut problem consists of finding a decomposition of vertices of a weighted undirected graph into two parts (of not necessarily equal size) such that the sum of the weights on the edges between the parts is maximum. We denote by mc(G,w) the max-cut of a graph G with weights w.
    [Show full text]
  • Some Applications of Eigenvalues of Graphs
    Chapter 14 Some Applications of Eigenvalues of Graphs Sebastian M. Cioaba˘ Abstract The main goal of spectral graph theory is to relate important structural properties of a graph to its eigenvalues. In this chapter, we survey some old and new applications of spectral methods in graph partitioning, ranking, epidemic spreading in networks and clustering. Keywords Eigenvalues Graph Partition Laplacian MSC2000: Primary 15A18; Secondary 68R10, 05C99 14.1 Introduction The study of eigenvalues of graphs is an important part of combinatorics. His- torically, the first relation between the spectrum and the structure of a graph was discovered in 1876 by Kirchhoff when he proved his famous matrix-tree theorem. The key principle dominating spectral graph theory is to relate important invariants of a graph to its spectrum. Often, such invariants such as chromatic number or in- dependence number, for example, are difficult to compute so comparing them with expressions involving eigenvalues is very useful. In this chapter, we present some connections between the spectrum of a graph and its structure and some applications of these connections in fields such as graph partitioning, ranking, epidemic spread- ing in networks, and clustering. For other applications of eigenvalues of graphs we recommend the surveys [44] (expander graphs), [51] (pseudorandom graphs), or [61, 62] (spectral characterization of graphs). To an undirected graph G of order n, one can associate the following matrices: The adjacency matrix A D A.G/. S.M. Cioab˘a() Department of Mathematical Sciences, University of Delaware, 501 Ewing Hall, Newark, DE 19716-2553, USA e-mail: [email protected] M.
    [Show full text]
  • Sphynx: a Parallel Multi-GPU Graph Partitioner for Distributed-Memory Systems
    Sphynx: a parallel multi-GPU graph partitioner for distributed-memory systems Seher Acer1,∗, Erik G. Boman1,∗, Christian A. Glusa1, Sivasankaran Rajamanickam1 Center for Computing Research, Sandia National Laboratories, Albuquerque, NM, U.S.A. Abstract Graph partitioning has been an important tool to partition the work among several processors to minimize the communication cost and balance the workload. While accelerator-based supercomputers are emerging to be the standard, the use of graph partitioning becomes even more important as applications are rapidly moving to these architectures. However, there is no distributed-memory- parallel, multi-GPU graph partitioner available for applications. We developed a spectral graph partitioner, Sphynx, using the portable, accelerator-friendly stack of the Trilinos framework. In Sphynx, we allow using different preconditioners and exploit their unique advantages. We use Sphynx to systematically evaluate the various algorithmic choices in spectral partitioning with a focus on the GPU performance. We perform those evaluations on two distinct classes of graphs: regular (such as meshes, matrices from finite element methods) and irregular (such as social networks and web graphs), and show that different settings and preconditioners are needed for these graph classes. The experimental results on the Summit supercomputer show that Sphynx is the fastest alternative on irregular graphs in an application-friendly setting and obtains a partitioning quality close to ParMETIS on regular graphs. When compared to nvGRAPH on a single GPU, Sphynx is faster and obtains better balance and better quality partitions. Sphynx provides a good and robust partitioning method across a wide range of graphs for applications looking for a GPU-based partitioner.
    [Show full text]
  • Graph Partitioning
    Technische Universitt Chemnitz Ulrich Elsner Graph Partitioning A survey MASSIV PARALLEL M SIMULATION S SFB 393 Sonderforschungsbereich Numerische Simulation auf massiv parallelen Rechnern Preprint SFB Dec Contents Contents i Notation iii The problem Introduction Graph Partitioning Examples Partial Dierential Equations Sparse MatrixVector Multiplication Other Applications Time vs Quality Miscellaneous Algorithms Introduction Recursive Bisection Partitioning with geometric information Co ordinate Bisection Inertial Bisection Geometric Partitioning Partitioning without geometric information Introduction Graph Growing and Greedy Algorithms KerniganLin Algorithm Sp ectral Bisection Sp ectral Bisection for weighted graphs Sp ectral Quadri and Octasection Multilevel Sp ectral Bisection Algebraic Multilevel Multilevel Partitioning Coarsening the graph i Contents Partitioning the smallest graph Pro jecting up and
    [Show full text]
  • Parallel and External High Quality Graph Partitioning
    Parallel and External High Quality Graph Partitioning zur Erlangung des akademischen Grades eines Doktors der Naturwissenschaften von der KIT-Fakultät für Informatik des Karlsruher Instituts für Technologie (KIT) genehmigte Dissertation von Yaroslav Akhremtsev aus Rostow am Don Tag der mündlichen Prüfung: 29.05.2019 Erster Gutachter: Herr Prof. Dr. Peter Sanders Zweiter Gutachter: Herr Prof. Dr. Henning Meyerhenke Dedication to my mother, my grandmother, and my father. ii Abstract Partitioning graphs into k blocks of roughly equal size such that few edges run between the blocks is a key tool for processing and analyzing large complex real-world networks. The graph partitioning problem has multiple practical applications in parallel and distributed computations, data storage, image processing, VLSI physical design and many more. Furthermore, recently, size, variety, and structural complexity of real- world networks has grown dramatically. Therefore, there is a demand for efficient graph partitioning algorithms that fully utilize computational power and memory capacity of modern machines. A popular and successful heuristic to compute a high-quality partitions of large networks in reasonable time is multi-level graph partitioning approach which contracts the graph preserving its structure and then partitions it using a complex graph partitioning algorithm. Specifically, the multi-level graph partitioning approach consists of three main phases: coarsening, initial partitioning, and uncoarsening. During the coarsening phase, the graph is recursively contracted preserving its structure and properties until it is small enough to compute its initial partition during the initial partitioning phase. Afterwards, during the uncoarsening phase the partition of the contracted graph is projected onto the original graph and refined using, for example, local search.
    [Show full text]
  • Preconditioned Spectral Clustering for Stochastic Block Partition Streaming Graph Challenge
    MITSUBISHI ELECTRIC RESEARCH LABORATORIES http://www.merl.com Preconditioned Spectral Clustering for Stochastic Block Partition Streaming Graph Challenge Zhuzhunashvili, D.; Knyazev, A. TR2017-131 September 25, 2017 Abstract Locally Optimal Block Preconditioned Conjugate Gradient (LOBPCG) is demonstrated to efficiently solve eigenvalue problems for graph Laplacians that appear in spectral clustering. For static graph partitioning, 10-20 iterations of LOBPCG without preconditioning result in - 10x error reduction, enough to achieve 100% correctness for all Challenge datasets with known truth partitions, e.g., for graphs with 5K/.1M (50K/1M Vertices/Edges in 2 (7) seconds, compared to over 5,000 (30,000) seconds needed by the baseline Python code. Our Python code 100% correctly determines 98 (160) clusters from the Challenge static graphs with 0.5M (2M) vertices in 270 (1,700) seconds using 10GB (50GB) of memory. Our single-precision MATLAB code calculates the same clusters at half time and memory. For streaming graph partitioning, LOBPCG is initiated with approximate eigenvectors of the graph Laplacian already computed for the previous graph, in many cases reducing 2-3 times the number of required LOBPCG iterations, compared to the static case. Our spectral clustering is generic, i.e. assuming nothing specific of the block model or streaming, used to generate the graphs for the Challenge, in contrast to the base code. Nevertheless, in 10-stage streaming comparison with the base code for the 5K graph, the quality of our clusters is similar or better starting at stage 4 (7) for emerging edging (snowballing) streaming, while the computing time is 100-1000 smaller.
    [Show full text]
  • Multi-Level Spectral Graph Partitioning Method Community Detection Jianjun Cheng, Longjie Li, Mingwei Leng Et Al
    Journal of Statistical Mechanics: Theory and Experiment PAPER: INTERDISCIPLINARY STATISTICAL MECHANICS Related content - A divisive spectral method for network Multi-level spectral graph partitioning method community detection Jianjun Cheng, Longjie Li, Mingwei Leng et al. To cite this article: Muhammed Fatih Talu J. Stat. Mech. (2017) 093406 - Motif-based embedding for graph clustering Sungsu Lim and Jae-Gil Lee - Complex eigenvectors of network matrices View the article online for updates and enhancements. give better insight into the communitystructure Mina Zarei, Keivan Aghababaei Samani and Gholam Reza Omidi This content was downloaded from IP address 193.140.142.195 on 20/08/2019 at 11:59 IOP Journal of Statistical Mechanics: Theory and Experiment J. Stat. Mech. 2017 ournal of Statistical Mechanics: Theory and Experiment 2017 J © 2017 IOP Publishing Ltd and SISSA Medialab srl PAPER: Interdisciplinary statistical mechanics JSMTC6 Multi-level spectral graph partitioning 093406 method M F Talu J. Stat. Mech. Mech. Stat. J. Muhammed Fatih Talu Multi-level spectral graph partitioning method Computer Science Department, Inonu University, Malatya, Turkey Printed in the UK E-mail: [email protected] Received 29 March 2017 JSTAT Accepted for publication 31 July 2017 Published 27 September 2017 10.1088/1742-5468/aa85ba Online at stacks.iop.org/JSTAT/2017/093406 https://doi.org/10.1088/1742-5468/aa85ba Abstract. In this article, a new method for multi-level and balanced division of non-directional graphs (MSGP) is introduced. Using the eigenvectors of 1742-5468 the Laplacian matrix of graphs, the method has a spectral approach which ( has superiority over local methods (Kernighan–Lin and Fiduccia-Mattheyses) 2017 with a global division ability.
    [Show full text]