scalable numerical linear algebra for data...

7
Scalable Numerical Linear Algebra for Data Science Edgar Solomonik University of Illinois at Urbana-Champaign May 16, 2017 Edgar Solomonik Scalable Numerical Linear Algebra 1/7

Upload: truongque

Post on 17-Jul-2018

228 views

Category:

Documents


0 download

TRANSCRIPT

Scalable Numerical Linear Algebra for Data Science

Edgar Solomonik

University of Illinois at Urbana-Champaign

May 16, 2017

Edgar Solomonik Scalable Numerical Linear Algebra 1/7

Communication-avoiding algorithms

”Engineering FLOPs is not a design constraint – data movementpresents the most daunting engineering and computerarchitecture challenge.” – Shalf, Dosanjh, Morrison, VECPAR 2010

numerical computations are prevalent in all data sciences

Goal: design fundamental numerical algorithms that achieve betterscalability by avoiding data movement

Edgar Solomonik Scalable Numerical Linear Algebra 2/7

Solving triangular systems of equations

Solving triangular linear system with many right-hand sides (TRSM) is acritical subroutine in most linear system solvers

using selective inversion of diagonal blocks decreases number ofmessages by O(p2/3) on p processors with respect to known algorithms

Bachelor thesis work by Tobias Wicky, currently working on MS thesis

Tobias Wicky, ES, and Torsten Hoefler, Communication-avoiding parallel algorithms

for solving triangular systems of linear equations, IEEE International Parallel and

Distributed Processing Symposium (IPDPS), 2017.

Edgar Solomonik Scalable Numerical Linear Algebra 3/7

QR factorization (solving least-squares problems)

Extend CholeskyQR2 algorithm, obtaining ideal accuracy for wellconditioned matrices (κ = O(1/

√ε)), to a general parallel QR algorithm

new practical parallel algorithm reduces bandwidth cost by O(p1/6) withrespect to best-existing implementation

analysis and development by Edward Hutter (BS ECE 2017, startingPhD in CS at UIUC in Fall 2017)

Edgar Solomonik Scalable Numerical Linear Algebra 4/7

QR, Eigenvalue, and SVD factorizations

QR and SVD are critical to data-fitting and compression

new algorithms for QR factorization and eigenvalue computation forsymmetric matrices faster by O(p1/6) in communication cost

0

5

10

15

20

144 288 576 1152 2304 4608 9216

Tera

flops

#cores

QR weak scaling on Cray XE6 (n=15K to n=131K)

Two-Level CAQR-HRElemental QR

ScaLAPACK QR

ongoing work on SVD factorization via QR with pivoting andrandomized projections

Edgar Solomonik Scalable Numerical Linear Algebra 5/7

A stand-alone library for petascale tensor computations

Cyclops Tensor Framework (CTF)

distributed-memory symmetric/sparse tensors as C++ objects

Matrix <int > A(n, n, AS|SP, World(MPI_COMM_WORLD ));Tensor <float > T(order , is_sparse , dims , syms , ring , world);T.read(...); T.write(...); T.slice(...); T.permute(...);

parallel contraction/summation of tensors

Z["abij"] += V["ijab"];W["mnij"] += 0.5*W["mnef"]*T["efij"];M["ij"] += Function <>([]( double x){ return 1./x; })(v["j"]);

1

2 4

8 16

32 64

128 256

512

32 64 128 256 512 1024 2048 4096

Tera

flops

#nodes

Weak scaling on Edison

Aquarius-CTF CCSDAquarius-CTF CCSDT

Edgar Solomonik Scalable Numerical Linear Algebra 6/7

Ongoing and future work

Ongoing work and future directions in CTF

integration with faster parallel numerical solvers

development of new (sparse) tensor applications

algebraic multigridfinite/spectral element methodsFFT, bitonic sort, parallel scan, HSS matrix computationstensor factorizations and tensor networks

existing CTF applications

Aquarius (lead by Devin Matthews)QChem via Libtensor (lead by Evgeny Epifanovsky)QBall DFT for metallic systems (lead by Eric Draeger)CC4S (lead by Andreas Gruneis)early collaborations involving Lattice QCD and DMRGfaster methods for shortest-path and graph centrality computations

Edgar Solomonik Scalable Numerical Linear Algebra 7/7