A High Performance Implementation of Spectral Clustering on CPU-GPU Platforms

Total Page:16

File Type:pdf, Size:1020Kb

A High Performance Implementation of Spectral Clustering on CPU-GPU Platforms A High Performance Implementation of Spectral Clustering on CPU-GPU Platforms Yu Jin Joseph F. JaJa Institute for Advanced Computer Studies Institute for Advanced Computer Studies Department of Electrical and Computer Engineering Department of Electrical and Computer Engineering University of Maryland, College Park, USA University of Maryland, College Park, USA Email: [email protected] Email: [email protected] Abstract—Spectral clustering is one of the most popular graph CPUs, further boost the overall performance and are able clustering algorithms, which achieves the best performance for to achieve very high performance on problems whose sizes many scientific and engineering applications. However, existing grow up to the capacity of CPU memory [6, 7, 8, 9, 10, implementations in commonly used software platforms such as Matlab and Python do not scale well for many of the emerging 11]. In this paper, we present a hybrid implementation of the Big Data applications. In this paper, we present a fast imple- spectral clustering algorithm which significantly outperforms mentation of the spectral clustering algorithm on a CPU-GPU the known implementations, most of which are purely based heterogeneous platform. Our implementation takes advantage on multi-core CPUs. of the computational power of the multi-core CPU and the There have been reported efforts on parallelizing the spec- massive multithreading and SIMD capabilities of GPUs. Given the input as data points in high dimensional space, we propose tral clustering algorithm. Zheng et al. [12] presented both a parallel scheme to build a sparse similarity graph represented CUDA and OpenMP implementations of spectral clustering. in a standard sparse representation format. Then we compute However, the implementation was targeted for a much smaller the smallest k eigenvectors of the Laplacian matrix by utilizing data size than the work in this paper, and moreover, their the reverse communication interfaces of ARPACK software and implementation achieve a relatively limited speedup. Matam cuSPARSE library, where k is typically very large. Moreover, we implement a very fast parallelized k-means algorithm on GPUs. et al. [13] implemented a special case of spectral clustering, Our implementation is shown to be significantly faster compared namely the spectral bisection algorithm, which was shown to the best known Matlab and Python implementations for each to achieve high speed-ups compared to Matlab and Intel step. In addition, our algorithm scales to problems with a very MKL implementations. Chen et al. [14, 15] implemented large number of clusters. the spectral clustering algorithm on a distributed environment Index Terms—CPU-GPU platform; spectral clustering; sparse using Message Passing Interface (MPI), which is targeted similarity graph;reverse communication interface; k-means clus- tering for problems whose sizes that could not fit in the memory of a single machine. Tsironis and Sozio [16] proposed an implementation of spectral clustering based on MapReduce. I. INTRODUCTION Both implementations were targeted for clusters, and involve Spectral clustering algorithm has recently gained popularity frequent data communications which will clearly constrain the in handling many graph clustering tasks such as those reported overall performance. in [1, 2, 3]. Compared to traditional clustering algorithms, In this paper, we present a hybrid implementation of spec- such as k-means clustering and hierarchical clustering, spectral tral clustering on a CPU-GPU heterogeneous platform which clustering has a very well formulated mathematical framework significantly outperforms all the best implementations we are arXiv:1802.04450v1 [cs.DC] 13 Feb 2018 and is able to discover non-convex regions which may not aware of, which are based on existing parallel platforms. We be detected by other clustering algorithms. Moreover, spectral highlight the main contributions of our paper as follows: clustering can be conveniently implemented by linear algebra • Our algorithm is the first work to comprehensively ex- operations using popular scientific software environments such plore the hybrid implementation of spectral clustering as Matlab and Python. Most of the available software imple- algorithm on CPU-GPU platforms. mentations are built upon CPU-optimized Basic Linear Al- • Our implementation makes use of sparse representation gebra Subprograms (BLAS), usually accelerated using multi- of the corresponding graphs and can handle extremely thread programming. However, such implementations scale large input sizes and generate a very large number of poorly as the problem size or the number of clusters grow clusters. very large. Recent results show that GPU accelerated BLAS • The hybrid implementation is highly efficient and is significantly outperforms multi-threaded BLAS libraries such shown to make a very good use of available resources. as the Intel MKL package, LAPACK and Goto BLAS [4, 5]. • Our experimental results show superior performance rel- Moreover, hybrid computing environments, which collabora- ative to the common scientific software implementations tively combine the computational advantages of GPUs and on multicore CPUs. The rest of the paper is organized as follows. Section TABLE I. CPU and GPU specifics II gives an overview of the spectral clustering algorithm, CPU Model Intel Xeon E5-2690 while describing the important steps in some detail. Section CPU Cores 8 III describes the operating environment and the necessary DRAM Size 128GB GPU Model Tesla K20c software dependencies. Section IV provides a description of Device Memory Size 5GB GDDR5 our parallel implementation, while Section V evaluates the SMs and SPs 13 and 192 performance of our algorithm with a comparison with Matlab Compute Capability 3.5 CUDA SDK 7.5 and Python implementations on both synthetic and real-world PCIe Bus PCIe x16 Gen2 datasets. The codes are available on https://github.com/yuj- umd/fastsc. k ¯ 1 X W (Ai; Ai) Ncut(A ;A ;A ) = ; (4) II. OVERVIEW OF SPECTRAL CLUSTERING ALGORITHM 1 2 k 2 vol(A ) i=1 i Spectral clustering was first introduced in 1973 to study the graph partition problem [17]. Later, the algorithm was In our implementation, we focus on the problem of minimizing extended in [18, 19], and generalized to a wide range of the Ncut which has an equivalent algebraic formulation as applications, such as computational biology [20, 21], medical defined next. image analysis [2, 3], social networks [22, 23] and informa- 0 0 min trace(H LH) subject to H DH = I (5) tion retrieval [24, 25]. A standard procedure of the spectral H clustering algorithm to compute k clusters is described next That is, we need to determine a matrix H 2 Rn×k whose [26], columns are indicator vectors, which minimizes the objective d • Step 1: Given a set of data points x1; x2; :::; xn 2 R and function introduced above. some similarity measure s(xi; xj), construct a sparse sim- Since this problem is NP-hard, we relax the discrete con- ilarity matrix W that captures the significant similarities straints on H are removed, thereby allowing H to be any between the pairs of points. matrix in Rn×k. Note that there is no theoretical guarantee on • Step 2: Compute the normalized graph Laplacian matrix the quality of the solution of the relaxed problem compared to −1 as Ln = D L where L is the unnormalized graph the exact solution of the discrete version. It turns out that the Laplacian matrix defined as L = D − W and D is the relaxed problem is a well-known trace minimization problem, Pn diagonal matrix with each element Di;i = j=1 Wi;j. which can be exactly solved by taking H as the eigenvectors • −1 Step 3: Compute the k eigenvectors of the normalized with the smallest k eigenvalues of the matrix Ln = D L graph Laplacian matrix Ln corresponding to the smallest or equivalently the k generalized eigenvectors corresponding k nonzero eigenvalues. to the smallest k eigenvalues of Lx = λDx. The k-means • Step 4: Apply the k-means clustering algorithm on the clustering is then applied on the rows of H to obtain the rows of the matrix whose columns are the k eigenvectors desired clustering. to obtain the final clusters. The algorithm described above begins with a set of d- Given the similarity graph defined by the similarity matrix dimensional data points and builds the similarity graph explic- W , the basic idea behind spectral clustering is to partition itly from the pair-wise similarity metric. The similarity graph the graph into k partitions such that some measure of the cut is usually stored in a sparse matrix representation, which often between the partitions is minimized. The traditional graph cut reduces the memory requirement and computational cost to is defined as follows: linear instead of quadratic. For the general graph clustering whose input is specified as a graph, our spectral clustering k 1 X algorithm starts directly in Step 2. Otherwise, we build our Cut(A ;A ; :::; A ) = W (A ; A¯ ); (1) 1 2 k 2 i i sparse graph representation from the given set of data points. i=1 III. ENVIRONMENT SETUP X W (A; A¯) := w (2) ij A. The Heterogeneous System i2A;j2A¯ The CPU-GPU heterogeneous system used in our imple- To ensure that the each partition represents a meaningful mentation is specified in Table I. cluster of reasonable size, two alternative cut measures are The CPU and the GPU communicate through the PCIe often used, namely RatioCut and normalized cut Ncut. Note bus whose theoretical peak bandwidth is 8 GB/s. The cost that we use below jAij as the number of nodes in A and of data communication can be quite significant for large- vol(A) as the sum of the degrees of all the nodes in A. scale problems. To achieve the best overall performance, our implementation leverages the GPU to compute the most k ¯ 1 X W (Ai; Ai) computationally expensive part while minimizing the data RatioCut(A ;A ;A ) = ; (3) 1 2 k 2 jA j transfer between the host and the device.
Recommended publications
  • CUDA 6 and Beyond
    MUMPS USERS DAYS JUNE 1ST / 2ND 2017 Programming heterogeneous architectures with libraries: A survey of NVIDIA linear algebra libraries François Courteille |Principal Solutions Architect, NVIDIA |[email protected] ACKNOWLEDGEMENTS Joe Eaton , NVIDIA Ty McKercher , NVIDIA Lung Sheng Chien , NVIDIA Nikolay Markovskiy , NVIDIA Stan Posey , NVIDIA Steve Rennich , NVIDIA Dave Miles , NVIDIA Peng Wang, NVIDIA Questions: [email protected] 2 AGENDA Prolegomena NVIDIA Solutions for Accelerated Linear Algebra Libraries performance on Pascal Rapid software development for heterogeneous architecture 3 PROLEGOMENA 124 NVIDIA Gaming VR AI & HPC Self-Driving Cars GPU Computing 5 ONE ARCHITECTURE BUILT FOR BOTH DATA SCIENCE & COMPUTATIONAL SCIENCE AlexNet Training Performance 70x Pascal [CELLR ANGE] 60x 16nm FinFET 50x 40x CoWoS HBM2 30x 20x [CELLR ANGE] NVLink 10x [CELLR [CELLR ANGE] ANGE] 0x 2013 2014 2015 2016 cuDNN Pascal & Volta NVIDIA DGX-1 NVIDIA DGX SATURNV 65x in 3 Years 6 7 8 8 9 NVLINK TO CPU IBM Power Systems Server S822LC (codename “Minsky”) DDR4 DDR4 2x IBM Power8+ CPUs and 4x P100 GPUs 115GB/s 80 GB/s per GPU bidirectional for peer traffic IB P8+ CPU P8+ CPU IB 80 GB/s per GPU bidirectional to CPU P100 P100 P100 P100 115 GB/s CPU Memory Bandwidth Direct Load/store access to CPU Memory High Speed Copy Engines for bulk data movement 1615 UNIFIED MEMORY ON PASCAL Large datasets, Simple programming, High performance CUDA 8 Enable Large Oversubscribe GPU memory Pascal Data Models Allocate up to system memory size CPU GPU Higher Demand
    [Show full text]
  • LARGE-SCALE COMPUTATION of PSEUDOSPECTRA USING ARPACK and EIGS∗ 1. Introduction. the Matrices in Many Eigenvalue Problems
    SIAM J. SCI. COMPUT. c 2001 Society for Industrial and Applied Mathematics Vol. 23, No. 2, pp. 591–605 LARGE-SCALE COMPUTATION OF PSEUDOSPECTRA USING ARPACK AND EIGS∗ THOMAS G. WRIGHT† AND LLOYD N. TREFETHEN† Abstract. ARPACK and its Matlab counterpart, eigs, are software packages that calculate some eigenvalues of a large nonsymmetric matrix by Arnoldi iteration with implicit restarts. We show that at a small additional cost, which diminishes relatively as the matrix dimension increases, good estimates of pseudospectra in addition to eigenvalues can be obtained as a by-product. Thus in large- scale eigenvalue calculations it is feasible to obtain routinely not just eigenvalue approximations, but also information as to whether or not the eigenvalues are likely to be physically significant. Examples are presented for matrices with dimension up to 200,000. Key words. Arnoldi, ARPACK, eigenvalues, implicit restarting, pseudospectra AMS subject classifications. 65F15, 65F30, 65F50 PII. S106482750037322X 1. Introduction. The matrices in many eigenvalue problems are too large to allow direct computation of their full spectra, and two of the iterative tools available for computing a part of the spectrum are ARPACK [10, 11]and its Matlab counter- part, eigs.1 For nonsymmetric matrices, the mathematical basis of these packages is the Arnoldi iteration with implicit restarting [11, 23], which works by compressing the matrix to an “interesting” Hessenberg matrix, one which contains information about the eigenvalues and eigenvectors of interest. For general information on large-scale nonsymmetric matrix eigenvalue iterations, see [2, 21, 29, 31]. For some matrices, nonnormality (nonorthogonality of the eigenvectors) may be physically important [30].
    [Show full text]
  • A High Performance Block Eigensolver for Nuclear Configuration Interaction Calculations Hasan Metin Aktulga, Md
    1 A High Performance Block Eigensolver for Nuclear Configuration Interaction Calculations Hasan Metin Aktulga, Md. Afibuzzaman, Samuel Williams, Aydın Buluc¸, Meiyue Shao, Chao Yang, Esmond G. Ng, Pieter Maris, James P. Vary Abstract—As on-node parallelism increases and the performance gap between the processor and the memory system widens, achieving high performance in large-scale scientific applications requires an architecture-aware design of algorithms and solvers. We focus on the eigenvalue problem arising in nuclear Configuration Interaction (CI) calculations, where a few extreme eigenpairs of a sparse symmetric matrix are needed. We consider a block iterative eigensolver whose main computational kernels are the multiplication of a sparse matrix with multiple vectors (SpMM), and tall-skinny matrix operations. We present techniques to significantly improve the SpMM and the transpose operation SpMMT by using the compressed sparse blocks (CSB) format. We achieve 3–4× speedup on the requisite operations over good implementations with the commonly used compressed sparse row (CSR) format. We develop a performance model that allows us to correctly estimate the performance of our SpMM kernel implementations, and we identify cache bandwidth as a potential performance bottleneck beyond DRAM. We also analyze and optimize the performance of LOBPCG kernels (inner product and linear combinations on multiple vectors) and show up to 15× speedup over using high performance BLAS libraries for these operations. The resulting high performance LOBPCG solver achieves 1.4× to 1.8× speedup over the existing Lanczos solver on a series of CI computations on high-end multicore architectures (Intel Xeons). We also analyze the performance of our techniques on an Intel Xeon Phi Knights Corner (KNC) processor.
    [Show full text]
  • Slepc Users Manual Scalable Library for Eigenvalue Problem Computations
    Departamento de Sistemas Inform´aticos y Computaci´on Technical Report DSIC-II/24/02 SLEPc Users Manual Scalable Library for Eigenvalue Problem Computations https://slepc.upv.es Jose E. Roman Carmen Campos Lisandro Dalcin Eloy Romero Andr´es Tom´as To be used with slepc 3.15 March, 2021 Abstract This document describes slepc, the Scalable Library for Eigenvalue Problem Computations, a software package for the solution of large sparse eigenproblems on parallel computers. It can be used for the solution of various types of eigenvalue problems, including linear and nonlinear, as well as other related problems such as the singular value decomposition (see a summary of supported problem classes on page iii). slepc is a general library in the sense that it covers both Hermitian and non-Hermitian problems, with either real or complex arithmetic. The emphasis of the software is on methods and techniques appropriate for problems in which the associated matrices are large and sparse, for example, those arising after the discretization of partial differential equations. Thus, most of the methods offered by the library are projection methods, including different variants of Krylov and Davidson iterations. In addition to its own solvers, slepc provides transparent access to some external software packages such as arpack. These packages are optional and their installation is not required to use slepc, see x8.7 for details. Apart from the solvers, slepc also provides built-in support for some operations commonly used in the context of eigenvalue computations, such as preconditioning or the shift- and-invert spectral transformation. slepc is built on top of petsc, the Portable, Extensible Toolkit for Scientific Computation [Balay et al., 2021].
    [Show full text]
  • Comparison of Numerical Methods and Open-Source Libraries for Eigenvalue Analysis of Large-Scale Power Systems
    applied sciences Article Comparison of Numerical Methods and Open-Source Libraries for Eigenvalue Analysis of Large-Scale Power Systems Georgios Tzounas , Ioannis Dassios * , Muyang Liu and Federico Milano School of Electrical and Electronic Engineering, University College Dublin, Belfield, Dublin 4, Ireland; [email protected] (G.T.); [email protected] (M.L.); [email protected] (F.M.) * Correspondence: [email protected] Received: 30 September 2020; Accepted: 24 October 2020; Published: 28 October 2020 Abstract: This paper discusses the numerical solution of the generalized non-Hermitian eigenvalue problem. It provides a comprehensive comparison of existing algorithms, as well as of available free and open-source software tools, which are suitable for the solution of the eigenvalue problems that arise in the stability analysis of electric power systems. The paper focuses, in particular, on methods and software libraries that are able to handle the large-scale, non-symmetric matrices that arise in power system eigenvalue problems. These kinds of eigenvalue problems are particularly difficult for most numerical methods to handle. Thus, a review and fair comparison of existing algorithms and software tools is a valuable contribution for researchers and practitioners that are interested in power system dynamic analysis. The scalability and performance of the algorithms and libraries are duly discussed through case studies based on real-world electrical power networks. These are a model of the All-Island Irish Transmission System with 8640 variables; and, a model of the European Network of Transmission System Operators for Electricity, with 146,164 variables. Keywords: eigenvalue analysis; large non-Hermitian matrices; numerical methods; open-source libraries 1.
    [Show full text]
  • Solving Applied Graph Theory Problems in the Juliagraphs Ecosystem
    Solving Applied Graph Theory Problems in the JuliaGraphs Ecosystem James P Fairbanks Oct 24, 2018 Georgia Tech Research Institute 1 Introduction The Julia Programming Language • 1.0 stable release in Aug 2018 • Multiple dispatch • Dynamic Type system • JIT Compiler • Metaprogramming • Single machine, GPU, and distributed parallelism • Open Source (MIT License) 2 Julia Performance Benchmarks Figure 1: Benchmark times relative to C (smaller is better, C performance = 1.0) (Source: julialang.org) 3 My path to Julia • Started in pure math (chalk), • Intro programming class (Java) • Grad school in CSE, Cray XMT (C) C++ was too modern • Numpy/Pandas bandwagon (Python) • Numerical Graph Algorithms (Julia) 4 Outline • LightGraphs.jl • Spectral Clustering • 2 language problem • Fake News • Future Directions 5 LightGraphs.jl 6 LightGraphs.jl is a central vertex 7 Generic Programing in LightGraphs.jl Interface for subtypes of AbstractGraph. • edges • Base.eltype • has edge • has vertex • inneighbors • ne • nv • outneighbors • vertices • is directed 8 Numerical Analysis for Spectral Partitioning Spectral Clustering is Graphs + FP Figure 2: A graph with four natural clusters. 9 Spectral Graph Matrices Graphs and Linear Algebra 1, if vi ∼ vj Adjacency Matrix Aij = 0, otherwise Degrees Dii = di = deg(vi ) all other entries 0. Combinatorial Laplacian L = D − A Normalized Laplacian Lˆ = I − D−1/2AD−1/2 Normalized Adjacency Aˆ = D−1/2AD−1/2 10 Spectral Graph Types 11 Spectral Graph Types 11 Spectral Graph Types NonBacktracking operator B(s,t),(u,v) = Ast ∗ Auv ∗ δtu ∗ (1 − δsv ) 11 Graph Clustering is Finding Block Structure Adjacency Matrix of Scrambled Block Graph Adjacency Matrix of Block Graph 0 500 1000 1500 2000 2500 0 500 1000 1500 2000 2500 0 0 500 500 1000 1000 1500 1500 destination destination 2000 2000 2500 2500 source source Figure 3: A Stochastic Block Model graph showing the recovery of clusters.
    [Show full text]
  • Eigenvalues and Eigenvectors for 3×3 Symmetric Matrices: an Analytical Approach
    Journal of Advances in Mathematics and Computer Science 35(7): 106-118, 2020; Article no.JAMCS.61833 ISSN: 2456-9968 (Past name: British Journal of Mathematics & Computer Science, Past ISSN: 2231-0851) Eigenvalues and Eigenvectors for 3×3 Symmetric Matrices: An Analytical Approach Abu Bakar Siddique1 and Tariq A. Khraishi1* 1Department of Mechanical Engineering, University of New Mexico, USA. Authors’ contributions This work was carried out in collaboration between both authors. ABS worked on equation derivation, plotting and writing. He also worked on the literature search. TK worked on equation derivation, writing and editing. Both authors contributed to conceptualization of the work. Both authors read and approved the final manuscript. Article Information DOI: 10.9734/JAMCS/2020/v35i730308 Editor(s): (1) Dr. Serkan Araci, Hasan Kalyoncu University, Turkey. Reviewers: (1) Mr. Ahmed A. Hamoud, Taiz University, Yemen. (2) Raja Sarath Kumar Boddu, Lenora College of Engineering, India. Complete Peer review History: http://www.sdiarticle4.com/review-history/61833 Received: 22 July 2020 Accepted: 29 September 2020 Original Research Article Published: 21 October 2020 _______________________________________________________________________________ Abstract Research problems are often modeled using sets of linear equations and presented as matrix equations. Eigenvalues and eigenvectors of those coupling matrices provide vital information about the dynamics/flow of the problems and so needs to be calculated accurately. Analytical solutions are advantageous over numerical solutions because numerical solutions are approximate in nature, whereas analytical solutions are exact. In many engineering problems, the dimension of the problem matrix is 3 and the matrix is symmetric. In this paper, the theory behind finding eigenvalues and eigenvectors for order 3×3 symmetric matrices is presented.
    [Show full text]
  • Geeng Started with Trilinos
    Geng Started with Trilinos Michael A. Heroux Photos placed in horizontal position Sandia National with even amount of white space Laboratories between photos and header USA Sandia National Laboratories is a multi-program laboratory managed and operated by Sandia Corporation, a wholly owned subsidiary of Lockheed Martin Corporation, for the U.S. Department of Energy’s National Nuclear Security Administration under contract DE-AC04-94AL85000. SAND NO. 2011-XXXXP Outline - Some (Very) Basics - Overview of Trilinos: What it can do for you. - Trilinos Software Organization. - Overview of Packages. - Package Management. - Documentation, Building, Using Trilinos. 1 Online Resource § Trilinos Website: https://trilinos.org § Portal to Trilinos resources. § Documentation. § Mail lists. § Downloads. § WebTrilinos § Build & run Trilinos examples in your web browser! § Need username & password (will give these out later) § https://code.google.com/p/trilinos/wiki/TrilinosHandsOnTutorial § Example codes: https://code.google.com/p/trilinos/w/list 2 WHY USE MATHEMATICAL LIBRARIES? 3 § A farmer had chickens and pigs. There was a total of 60 heads and 200 feet. How many chickens and how many pigs did the farmer have? § Let x be the number of chickens, y be the number of pigs. § Then: x + y = 60 2x + 4y = 200 § From first equaon x = 60 – y, so replace x in second equaon: 2(60 – y) + 4y = 200 § Solve for y: 120 – 2y + 4y = 200 2y = 80 y = 40 § Solve for x: x = 60 – 40 = 20. § The farmer has 20 chickens and 40 pigs. 4 § A restaurant owner purchased one box of frozen chicken and another box of frozen pork for $60. Later the owner purchased 2 boxes of chicken and 4 boxes of pork for $200.
    [Show full text]
  • Arxiv:1805.03380V3 [Cs.MS] 21 Oct 2019 a Specific Set of Operations (Eg., Matrix Multiplication Vs
    A User-Friendly Hybrid Sparse Matrix Class in C++ Conrad Sanderson1;3;4 and Ryan Curtin2;4 1 Data61, CSIRO, Australia 2 Symantec Corporation, USA 3 University of Queensland, Australia 4 Arroyo Consortium ? Abstract. When implementing functionality which requires sparse matrices, there are numerous storage formats to choose from, each with advantages and disadvantages. To achieve good performance, several formats may need to be used in one program, requiring explicit selection and conversion between the for- mats. This can be both tedious and error-prone, especially for non-expert users. Motivated by this issue, we present a user-friendly sparse matrix class for the C++ language, with a high-level application programming interface deliberately similar to the widely used MATLAB language. The class internally uses two main approaches to achieve efficient execution: (i) a hybrid storage framework, which automatically and seamlessly switches between three underlying storage formats (compressed sparse column, coordinate list, Red-Black tree) depending on which format is best suited for specific operations, and (ii) template-based meta-programming to automatically detect and optimise execution of common expression patterns. To facilitate relatively quick conversion of research code into production environments, the class and its associated functions provide a suite of essential sparse linear algebra functionality (eg., arithmetic operations, submatrix manipulation) as well as high-level functions for sparse eigendecompositions and linear equation solvers. The latter are achieved by providing easy-to-use abstrac- tions of the low-level ARPACK and SuperLU libraries. The source code is open and provided under the permissive Apache 2.0 license, allowing unencumbered use in commercial products.
    [Show full text]
  • Augmented Block Householder Arnoldi Method
    AUGMENTED BLOCK HOUSEHOLDER ARNOLDI METHOD JAMES BAGLAMA∗ Abstract. Computing the eigenvalues and eigenvectors of a large sparse nonsymmetric matrix arises in many applications and can be a very computationally challenging problem. In this paper we propose the Augmented Block Householder Arnoldi (ABHA) method that combines the advantages of a block routine with an augmented Krylov routine. A public domain MATLAB code ahbeigs has been developed and numerical experiments indicate that the code is competitive with other publicly available codes. Key words. partial eigenvalue value decomposition, restarted iterative method, implicit shifts, augmentation, Krylov, householder. AMS subject classifications. 65F15, 15A18 1. Introduction. Finding the extreme eigenvalues and associated eigenvectors of a large-scale eigenvalue problem (1.1) Ax = λx A ∈ Rn×n is one of the most computationally challenging and commonly occurring problems to date. Applications can be found in almost all scientific disciplines, e.g. computational fluid dynamics, electrical engineering, oceanography, and quantum chemistry. See Bai et al [13] for a description of some applications, references, and collection of matrices. Many algorithms are based on the Arnoldi process [2]. For a given starting vector x, the Arnoldi process builds an orthonormal basis for the Krylov subspace 2 m−1 (1.2) Km(A, x) = span{x, Ax, A x, . , A x}. The orthonormal basis yields a projection matrix and a relationship that is often referred to as the Arnoldi decomposition. The eigenvalues and eigenvectors of the projection matrix are then used as an approximation to the eigenvalues and eigenvec- tors of A. However, in order to get an acceptable approximation to the eigenpairs, m must typically be large.
    [Show full text]
  • Scipy 1.0—Fundamental Algorithms for Scientific Computing in Python
    SciPy 1.0—Fundamental Algorithms for Scientific Computing in Python Pauli Virtanen1, Ralf Gommers2,*, Travis E. Oliphant3,4,5,6,2, Matt Haberland7,8,*, Tyler Reddy9,*, David Cournapeau10, Evgeni Burovski11, Pearu Peterson12,13, Warren Weckesser10, Jonathan Bright14, Stefan´ J. van der Walt15, Matthew Brett16, Joshua Wilson10, K. Jarrod Millman15,17, Nikolay Mayorov18, Andrew R. J. Nelson19, Eric Jones5, Robert Kern5, Eric Larson20, CJ Carey21, ˙Ilhan Polat10, Yu Feng22, Eric W. Moore23, Jake VanderPlas24, Denis Laxalde10, Josef Perktold10, Robert Cimrman25, Ian Henriksen26, E. A. Quintero10, Charles R Harris10, Anne M. Archibald27, Antonioˆ H. Ribeiro28, Fabian Pedregosa29, Paul van Mulbregt30, and SciPy 1.0 Contributors 1University of Jyvaskyl¨ a,¨ FI-40014 University of Jyvaskyl¨ a,¨ Finland 2Quansight LLC, Austin, TX, USA 3Ultrasound Imaging, Mayo Clinic, Rochester, MN 55902, USA 4Electrical Engineering, Brigham Young University, Provo, UT 84604, USA 5Enthought, Inc., Austin, TX 78701, USA 6Anaconda Inc, Austin, TX 78701, USA 7BioResource and Agricultural Engineering Department, California Polytechnic State University, San Luis Obispo, CA 93407, USA 8Department of Mathematics, University of California, Los Angeles, CA 90025, USA 9Los Alamos National Laboratory, Los Alamos, NM 87544 10Independent Researcher 11Higher School of Economics, Myasnitskaya 20, Moscow 101000 Russia 12Independent Researcher, Saue, Estonia 13Department of Mechanics and Applied Mathematics, Institute of Cybernetics at Tallinn Technical University, Akadeemia Rd
    [Show full text]
  • Libraries Compilers
    Products are organized using following categories: Applications Tools Graphics Parallel Libraries Compilers Typographic conventions: Software displayed with a specific background color are subject to usage restriction. Applications Name Module(s) Description ABINIT is a package whose main program allows one to find the total energy, charge density and electronic structure of systems made of ABINIT abinit electrons and nuclei (website) keywords: chemistry materials-science molecular-dynamics particle-physics plasma- physics quantum The Amber Molecular Dynamics Package (website, documentation) Amber amber keywords: chemistry molecular-dynamics language Flow modeling simulation software (website) ANSYS ansys keywords: cfd engineering solver CP2K performs atomistic and molecular simulations of solid state, CP2K cp2k liquid, molecular and biological systems (website) keywords: materials-science molecular-dynamics quantum The CPMD code is a parallelized plane wave/pseudopotential implementation of Density Functional Theory, particularly designed CPMD cpmd for ab-initio molecular dynamics. (website) keywords: chemistry materials-science molecular-dynamics particle-physics quantum Quantum ESPRESSO is an integrated suite of computer codes for electronic-structure calculations and materials modeling at the nanoscale. It is based on density-functional theory, plane waves, ESPRESSO espresso and pseudopotentials (both norm-conserving and ultrasoft). (website) keywords: chemistry materials-science molecular-dynamics particle-physics plasma- physics quantum
    [Show full text]