Presentation is loading. Please wait.

Presentation is loading. Please wait.

1 Combinatorial Scientific Computing: Experiences, Directions, and Challenges John R. Gilbert University of California, Santa Barbara DOE CSCAPES Workshop.

Similar presentations


Presentation on theme: "1 Combinatorial Scientific Computing: Experiences, Directions, and Challenges John R. Gilbert University of California, Santa Barbara DOE CSCAPES Workshop."— Presentation transcript:

1 1 Combinatorial Scientific Computing: Experiences, Directions, and Challenges John R. Gilbert University of California, Santa Barbara DOE CSCAPES Workshop June 11, 2008 Support: DOE Office of Science, DARPA, SGI, MIT Lincoln Labs

2 2 Combinatorial Scientific Computing “I observed that most of the coefficients in our matrices were zero; i.e., the nonzeros were ‘sparse’ in the matrix, and that typically the triangular matrices associated with the forward and back solution provided by Gaussian elimination would remain sparse if pivot elements were chosen with care” - Harry Markowitz, describing the 1950s work on portfolio theory that won the 1990 Nobel Prize for Economics

3 3 Combinatorial Scientific Computing “The emphasis on mathematical methods seems to be shifted more towards combinatorics and set theory – and away from the algorithm of differential equations which dominates mathematical physics.” - John von Neumann & Oskar Morgenstern, 1944

4 4 “Combinatorial problems generated by challenges in data mining and related topics are now central to computational science. Finally, there’s the Internet itself, probably the largest graph-theory problem ever confronted.” Combinatorial Scientific Computing - Isabel Beichl & Francis Sullivan, 2008

5 5 A few directions in CSC Hybrid discrete & continuous computations Multiscale combinatorial computation Analysis, management, and propagation of uncertainty Economic & game-theoretic considerations Computational biology & bioinformatics Computational ecology Knowledge discovery & machine learning Relationship analysis Web search and information retrieval Sparse matrix methods Geometric modeling...

6 6 Ten Challenges in Combinatorial Scientific Computing

7 7 #1: The Parallelism Challenge LANL / IBM Roadrunner > 1 PFLOPS Two Nvidia 8800 GPUs > 1 TFLOPS Intel 80- core chip > 1 TFLOPS  Different programming models  Different levels of fit to irregular problems & graph algorithms

8 8 #2: The Architecture Challenge  The memory wall: Most of memory is hundreds or thousands of cycles away from the processor that wants it.  Computations that follow the edges of irregular graphs are unavoidably latency-limited.  Speed of light: “You can buy more bandwidth, but you can’t buy less latency.”  Some help from encapsulating coarse-grained primitives in carefully-tuned library routines... ... but the difficulty is intrinsic to most graph computations, hence can likely only be addressed by machine architecture.

9 9 An architectural approach: Cray MTA / XMT Hide latency by massive multithreading Per-tick context switching Slower clock rate Uniform (sort of) memory access time But the economic case is less than completely clear….

10 10 #3: The Algorithms Challenge  Efficient sequential algorithms for combinatorial problems often follow long sequential dependencies.  Example: Assefaw’s talk on graph coloring  Several parallelization strategies exist, but no silver bullet:  Partitioning (e.g. for coloring)  Pointer-jumping (e.g. for connected components)  Sometimes it just depends on the graph....

11 11 Sample kernel: Sort logically triangular matrix Used in sparse linear solvers (e.g. Matlab’s) Simple kernel, abstracts many other graph operations (see next) Sequential: linear time; greedy topological sort; no locality Parallel: very unbalanced; one DAG level per step; possible long sequential dependencies Original matrix Permuted to upper triangular form

12 12 Matching in bipartite graph Perfect matching: set of edges that hits each vertex exactly once Matrix permutation to put nonzeros on diagonal Variant: Maximum-weight matching 15234 1 5 2 3 4 A 1 5 2 3 4 1 5 2 3 4 15234 4 2 5 3 1 PA

13 13 1524736 1 5 2 4 7 3 6 Strongly connected components Symmetric permutation to block triangular form Diagonal blocks are strong Hall (irreducible / strongly connected) Sequential: linear time by depth-first search [Tarjan] Parallel: divide & conquer algorithm, performance depends on input [Fleischer, Hendrickson, Pinar] 1 2 3 4 7 6 5 PAP T G(A)

14 14 Strong components of 1M-vertex RMAT graph

15 15 Coloring for parallel nonsymmetric preconditioning [Aggarwal, Gibou, G] Level set method for multiphase interface problems in 3D. Nonsymmetric-structure, second-order-accurate octree discretization. BiCGSTAB preconditioned by parallel triangular solves. 263 million DOF

16 16 By analogy to numerical linear algebra, What would the combinatorial BLAS look like? #4: The Primitives Challenge BLAS 3 BLAS 2 BLAS 1 BLAS 3 (n-by-n matrix-matrix multiply) BLAS 2 (n-by-n matrix-vector multiply) BLAS 1 (sum of scaled n-vectors) Peak

17 17 Primitives for HPC graph programming Visitor-based multithreaded – MTGL + XMT + search templates natural for many algorithms + relatively simple load balancing – complex thread interactions, race conditions – unclear how applicable to standard architectures Array-based data parallel – GAPDT + parallel Matlab / Python + relatively simple control structure + user-friendly interface – some algorithms hard to express naturally – load balancing not so easy Scan-based vectorized – NESL: something of a wild card We don’t really know the right set of primitives yet!

18 18 Graph algorithms study [Kepner, Fineman, Kahn, Robinson]

19 19 “Graph Algorithms in the Language of Linear Algebra” Graph Algorithms in the Language of Linear Algebra Jeremy Kepner and John R. Gilbert (editors) Editors: Kepner (MIT-LL) and Gilbert (UCSB) Contributors – Bader (GA Tech) – Buluc (UCSB) – Chakrabarti (CMU) – Dunlavy (Sandia) – Faloutsos (CMU) – Fineman (MIT-LL & MIT) – Gilbert (UCSB) – Kahn (MIT-LL & Brown) – Kegelmeyer (Sandia) – Kepner (MIT-LL) – Kleinberg (Cornell) – Kolda (Sandia) – Leskovec (CMU) – Madduri (GA Tech) – Robinson (MIT-LL & NEU) – Shah (ISC & UCSB)

20 20 Multiple-source breadth-first search X 1 2 3 4 7 6 5 ATAT

21 21 X ATAT ATXATX  1 2 3 4 7 6 5 Multiple-source breadth-first search

22 22 Sparse array representation => space efficient Sparse matrix-matrix multiplication => work efficient Load balance depends on SpGEMM implementation Not a panacea for the memory latency wall! X ATAT ATXATX  1 2 3 4 7 6 5 Multiple-source breadth-first search

23 23 Shortest path calculations (APSP) Betweenness centrality BFS from multiple source vertices Subgraph / submatrix indexing Graph contraction Cycle detection Multigrid interpolation & restriction Colored intersection searching Applying constraints in finite element computations Context-free parsing SpGEMM: Sparse Matrix x Sparse Matrix [Buluc, G]

24 24 Parallel dense case In the dense case, 2-D scales better with the number of processors Turns out to be same for the sparse case.... Parallel Efficiency: 1-D Layout: 2-D Layout: Should be zero for perfect efficiency p(0,0) p(0,1) p(0,2) p(1,0) p(1,1) p(1,2) p(2,0) p(2,1) p(2,2)

25 25 Upper bounds on speedup, sparse 1-D & 2-D [ICPP’08] 1-D algorithms do not scale beyond 40x Break-even point is around 50 processors. N P 1-D algorithm N P 2-D algorithm

26 26 * = i j A ik k k B kj C ij 2-D example: Sparse SUMMA  C ij += A ik * B kj  Based on dense SUMMA  Generalizes to nonsquare matrices, etc.

27 27 Submatrices are hypersparse (i.e. nnz << n) blocks Total Storage: nnz ’ = Average of c nonzeros per column A data structure or algorithm that depends on the matrix dimension n (e.g. CSR or CSC) is asymptotically too wasteful for submatrices

28 28 Complexity measure trends with increasing p Standard algorithm is O(nnz+ flops+n) flops nnz n

29 29 #5: The Libraries Challenge  The software version of the primitives challenge!  What languages, libraries, and environments will support combinatorial scientific computing?  Zoltan, (P)BGL, MTGL,....

30 30 SNAP [Bader & Madduri]

31 31 GAPDT: Toolbox for graph analysis and pattern discovery [G, Reinhardt, Shah] Layer 1: Graph Theoretic Tools Graph operations Global structure of graphs Graph partitioning and clustering Graph generators Visualization and graphics Scan and combining operations Utilities

32 32 Sample application stack Distributed Sparse Matrices Arithmetic, matrix multiplication, indexing, solvers (\, eigs) Graph Analysis & PD Toolbox Graph querying & manipulation, connectivity, spanning trees, geometric partitioning, nested dissection, NNMF,... Preconditioned Iterative Methods CG, BiCGStab, etc. + combinatorial preconditioners (AMG, Vaidya) Applications Computational ecology, CFD, data exploration

33 33 Landscape connectivity modeling Habitat quality, gene flow, corridor identification, conservation planning Pumas in southern California: 12 million nodes, < 1 hour Targeting larger problems: Yellowstone-to-Yukon corridor Figures courtesy of Brad McRae, NCEAS

34 34 #6: The Productivity Challenge “Once we settled down on it, it was sort of like digging the Panama Canal - one shovelful at a time.” - Ken Appel (& Wolfgang Haken), 1976

35 35 Productivity Raw performance isn’t always the only criterion. Other factors include: Seamless scaling from desktop to HPC Interactive response for exploration and visualization Rapid prototyping Usability by non-experts Just plain programmability

36 36 Interactive graph viz [Hollerer & Trethewey] Nonlinearly-scaled breadth-first search Distant vertices stay put, selected vertex moves to place Real-time click&drag for moderately large graphs

37 37 Click, Drag, & Smooth

38 38 #7: The Data Size Challenge “Can we understand anything interesting about our data when we do not even have time to read all of it?” - Ronitt Rubinfeld

39 39 Issues in (many) large graph applications Where does the graph live? Disk or memory? Often want approximate answers from sampling Multiple simultaneous queries to same graph –Graph may be fixed, or slowly changing –Throughput and response time both important Dynamic subsetting –User needs to solve problem on “my own” version of the main graph –E.g. landscape data masked by geographic location, filtered by obstruction type, resolved by species of interest

40 40 Factoring network flow behavior [Karpinski, Almeroth, Belding, G]

41 41 NMF traffic analysis results

42 42 “Discrete” quantities may be probability distributions May want to manage and quantify uncertainty between multiple levels of modeling May want to statistically sample too-large data, or extrapolate probabilistically from incomplete data For example, in graph algorithms: –The graph itself may not be known with certainty –Vertex / edge labels may be stochastic –May want analysis of sensitivities or thresholds #8: The Uncertainty Challenge

43 43 Horizontal-vertical decomposition of dynamical systems [Mezic et al.]

44 44 Stable and unstable directions at multiple scales? How to identify functional vs regulatory components? Propagation of uncertainty

45 45 Approach: 1.Decompose networks 2.Propagate uncertainty through components 3.Iteratively aggregate component uncertainty Spectral graph decomposition technique combined with dynamical systems analysis leads to deconstruction of a possibly unknown network into inputs, outputs, forward and feedback loops and allows identification of a minimal functional unit (MFU) of a system. (node 4 and several connections pruned, with no loss of performance) H-V decomposition Output, execution Feedback loops Trim the network, preserve dynamics! Input, initiator Forward, production unit Additional functional requirements Minimal functional units: sensitive edges (leading to lack of production) easily identifiable Allows identification of roles of different feedback loops Level of output For MFU Level of output with feedback loops Mezic group, UCSB Model reduction and graph decomposition

46 46

47 47 Larval connectivity

48 48 Regional ocean modeling + particle advection

49 49 Connectivity matrix (conditional probabilities)

50 50 Future: Desired state

51 51 Parallel modeling of fish interaction [Barbaro, Trethewey, Youssef, Birnir, G] Capelin schools in seas around Iceland –Economic impact and ecological impact –Collapse of stock in several prominent fishing areas demonstrates the need for careful tracking of fish Limitations on modeling –Group-behavior phenomena missed by lumped models –Real schools contain billions of fish; thousands of iterations Challenges include dynamic load balancing and accurate multiscale modeling

52 52 #9: The Education Challenge  How do you teach this stuff?  Where do you go to take courses in  Graph algorithms …  … on massive data sets …  … in the presence of uncertainty …  … analyzed on parallel computers …  … applied to a domain science?  This another whole discussion, but a crucial one.

53 53 #10: The Foundations Challenge “Numerical analysis is the study of algorithms for the problems of continuous mathematics.” - L. Nick Trefethen

54 54 » Combinatorial Scientific Computing CS and CS&E (Hendrickson 2003) l What’s in the intersection? Computer Science Computational Science Algorithmics

55 55 NIST workshop 2007: “Foundations of Measurement Science for Information Systems” A few suggested research areas in measurement science for complex networks:  Measurement of global properties of networks: –Not just density, diameter, degree distribution, etc. –Connectivity, robustness –Spectral properties: Laplacian eigenvectors, Cheeger bounds, … –Other global measures of complexity? –Sensitivity analysis of all of the above –Stochastic settings for all of the above  Multiscale modeling of complex networks  Building useful reference data sets and generators  Fundamentals of high-performance combinatorial computing

56 56 Ten Challenges In CSC 1. Parallelism 2. Architecture 3. Algorithms 4. Primitives 5. Libraries 6. Productivity 7. Data size 8. Uncertainty 9. Education 10. Foundations

57 57 Morals (from Hendrickson, 2003) Things are clearer if you look at them from multiple perspectives Combinatorial algorithms are pervasive in scientific computing and will become more so Lots of exciting opportunities –High impact for discrete algorithms work –Enabling for scientific computing

58 58 Conclusion This is a great time to be doing research in combinatorial scientific computing!

59 59 Thanks … Vikram Aggarwal, David Bader, Alethea Barbaro, Jon Berry, Aydin Buluc, Alan Edelman, Jeremy Fineman, Frederic Gibou, Bruce Hendrickson, Tobias Hollerer, Crystal Kahn, Stefan Karpinski, Jeremy Kepner, Jure Leskovic, Brad McRae, Igor Mezic, Cleve Moler, Steve Reinhardt, Eric Robinson, Rob Schreiber, Viral Shah, Peterson Trethewey, James Watson, Lamia Youssef


Download ppt "1 Combinatorial Scientific Computing: Experiences, Directions, and Challenges John R. Gilbert University of California, Santa Barbara DOE CSCAPES Workshop."

Similar presentations


Ads by Google