rank revealing factorizations and low rank approximations · rank revealing factorizations, and low...

85
Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Upload: others

Post on 22-Jul-2020

37 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Rank revealing factorizations, and low rankapproximations

L. Grigori

Inria Paris, UPMC

February 2017

Page 2: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Plan

Low rank matrix approximation

Rank revealing QR factorization

LU CRTP: Truncated LU factorization with column and row tournamentpivoting

Experimental results, LU CRTP

Randomized algorithms for low rank approximation

2 of 73

Page 3: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Plan

Low rank matrix approximation

Rank revealing QR factorization

LU CRTP: Truncated LU factorization with column and row tournamentpivoting

Experimental results, LU CRTP

Randomized algorithms for low rank approximation

3 of 73

Page 4: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Low rank matrix approximation

� Problem: given m × n matrix A, compute rank-k approximation ZW T ,where Z is m × k and W T is k × n.

� Problem with diverse applications� from scientific computing: fast solvers for integral equations, H-matrices� to data analytics: principal component analysis, image processing, ...

Ax → ZW T x

Flops 2mn→ 2(m + n)k

4 of 73

Page 5: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Singular value decomposition

Given A ∈ Rm×n, m ≥ n its singular value decomposition is

A = UΣV T =(U1 U2 U3

Σ1 00 Σ2

0 0

· (V1 V2

)Twhere

� U is m ×m orthogonal matrix, the left singular vectors of A ,U1 is m × k, U2 is m × n − k , U3 is m ×m − n

� Σ is m × n, its diagonal is formed by σ1(A) ≥ . . . ≥ σn(A) ≥ 0Σ1 is k × k, Σ2 is n − k × n − k

� V is n × n orthogonal matrix, the right singular vectors of A,V1 is n × k , V2 is n × n − k

5 of 73

Page 6: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Norms

||A||F =

√√√√ m∑i=1

n∑j=1

|aij |2 =√σ2

1(A) + . . . σ2n(A)

||A||2 = σmax(A) = σ1(A)

Some properties:

||A||2 ≤ ||A||F ≤√

min(m, n)||A||2

Orthogonal Invariance: If Q ∈ Rm×m and Z ∈ Rn×n are orthogonal, then

|QAZ ||F = ||A||F||QAZ ||2 = ||A||2

6 of 73

Page 7: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Low rank matrix approximation

� Best rank-k approximation Ak = UkΣkVk is rank-k truncated SVD of A[Eckart and Young, 1936]

minrank(Ak )≤k

||A− Ak ||2 = ||A− Ak ||2 = σk+1(A) (1)

minrank(Ak )≤k

||A− Ak ||F = ||A− Ak ||F =

√√√√ n∑j=k+1

σ2j (A) (2)

Original image of size

919× 707

Rank-38 approximation,

SVD

Rank-75 approximation,

SVD

� Image source: https:

//upload.wikimedia.org/wikipedia/commons/a/a1/Alan_Turing_Aged_16.jpg7 of 73

Page 8: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Large data sets

Matrix A might not exist entirely at a given time, rows or columns are addedprogressively.

� Streaming algorithm: can solve an arbitrarily large problem with one passover the data (a row or a column at a time).

� Weakly streaming algorithm: can solve a problem with O(1) passes overthe data.

Matrix A might exist only implicitly, and it is never formed explicitly.

8 of 73

Page 9: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Low rank matrix approximation: trade-offs

9 of 73

Page 10: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Plan

Low rank matrix approximation

Rank revealing QR factorization

LU CRTP: Truncated LU factorization with column and row tournamentpivoting

Experimental results, LU CRTP

Randomized algorithms for low rank approximation

10 of 73

Page 11: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Rank revealing QR factorization

Given A of size m × n, consider the decomposition

APc = QR = Q

[R11 R12

R22

], (3)

where R11 is k × k , Pc and k are chosen such that ||R22||2 is small and R11

is well-conditioned.

� By the interlacing property of singular values [Golub, Van Loan, 4thedition, page 487],

σi (R11) ≤ σi (A) and σj(R22) ≥ σk+j(A)

for 1 ≤ i ≤ k and 1 ≤ j ≤ n − k .

� σk+1(A) ≤ σmax(R22) = ||R22||

11 of 73

Page 12: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Rank revealing QR factorization

Given A of size m × n, consider the decomposition

APc = QR = Q

[R11 R12

R22

]. (4)

If ||R22||2 is small,

� Q(:, 1 : k) forms an approximate orthogonal basis for the range of A,

a(:, j) =

min(j,k)∑i=1

rijQ(:, i) ∈ span{Q(:, 1), . . .Q(:, k)}

ran(A) ∈ span{Q(:, 1), . . .Q(:, k)}

� Pc

[−R−1

11 R12

I

]is an approximate right null space of A.

12 of 73

Page 13: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Rank revealing QR factorization

The factorization from equation (4) is rank revealing if

1 ≤ σi (A)

σi (R11),σj(R22)

σk+j(A)≤ q1(n, k),

for 1 ≤ i ≤ k and 1 ≤ j ≤ min(m, n)− k , where

σmax(A) = σ1(A) ≥ . . . ≥ σmin(A) = σn(A)

It is strong rank revealing [Gu and Eisenstat, 1996] if in addition

||R−111 R12||max ≤ q2(n, k)

� Gu and Eisenstat show that given k and f , there exists a Pc such thatq1(n, k) =

√1 + f 2k(n − k) and q2(n, k) = f .

� Factorization computed in 4mnk (QRCP) plus O(mnk) flops.

13 of 73

Page 14: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

QR with column pivoting [Businger and Golub, 1965]

Idea:

� At first iteration, trailing columns decomposed into parallel part to firstcolumn (or e1) and orthogonal part (in rows 2 : m).

� The column of maximum norm is the column with largest componentorthogonal to the first column.

Implementation:

� Find at each step of the QR factorization the column of maximum norm.

� Permute it into leading position.

� If rank(A) = k, at step k + 1 the maximum norm is 0.

� No need to compute the column norms at each step, but just updatethem since

QT v = w =[w1 w(2 : n)

], ||w(2 : n)||22 = ||v ||22 − w 2

1

14 of 73

Page 15: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

QR with column pivoting [Businger and Golub, 1965]

Sketch of the algorithmcolumn norm vector: colnrm(j) = ||A(:, j)||2, j = 1 : n.for j = 1 : n do

Find column p of largest normif colnrm[p] > ε then

1. Pivot: swap columns j and p in A and modify colnrm.2. Compute Householder matrix Hj s.t.

HjA(j : m, j) = ±||A(j : m, j)||2e1.3. Update A(j : m, j + 1 : n) = HjA(j : m, j + 1 : n).4. Norm downdate colnrm(j + 1 : n)2− = A(j , j + 1 : n)2.

else Breakend if

end for

If algorithm stops after k steps

σmax(R22) ≤√

n − k max1≤j≤n−k

||R22(:, j)||2 ≤√

n − kε

15 of 73

Page 16: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Strong RRQR [Gu and Eisenstat, 1996]

Since

det(R11) =k∏

i=1

σi (R11) =√

det(ATA)/n−k∏i=1

σi (R22)

a stron RRQR is related to a large det(R11). The following algorithminterchanges columns that increase det(R11), given f and k.

Compute a strong RRQR factorization, given k :

Compute AΠ = QR by using QRCPwhile there exist i and j such that det(R11)/det(R11) > f , where

R11 = R(1 : k , 1 : k), Πi,j+k permutes columns i and j + k,

RΠi,j+k = QR, R11 = R(1 : k , 1 : k) doFind i and jCompute RΠi,j+k = QR and Π = ΠΠi,j+k

end while

16 of 73

Page 17: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Strong RRQR (contd)

It can be shown that

det(R11)

det(R11)=

√(R−1

11 R12

)2

i,j+ ω2

i (R11)χ2j (R22) (5)

for any 1 ≤ i ≤ k and 1 ≤ j ≤ n − k (the 2-norm of the j-th column of A isχj(A), and the 2-norm of the j-th row of A−1 is ωj(A) ).

Compute a strong RRQR factorization, given k :

Compute AΠ = QR by using QRCP

while max1≤i≤k,1≤j≤n−k

√(R−1

11 R12

)2

i,j+ ω2

i (R11)χ2j (R22) > f do

Find i and j such that√(

R−111 R12

)2

i,j+ ω2

i (R11)χ2j (R22) > f

Compute RΠi,j+k = QR and Π = ΠΠi,j+k

end while

17 of 73

Page 18: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Strong RRQR (contd)

� det(R11) strictly increases with every permutation, no permutationrepeats, hence there is a finite number of permutations to be performed.

18 of 73

Page 19: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Strong RRQR (contd)

Theorem[Gu and Eisenstat, 1996] If the QR factorization with column pivoting as inequation (4) satisfies inequality√(

R−111 R12

)2

i,j+ ω2

i (R11)χ2j (R22) < f

for any 1 ≤ i ≤ k and 1 ≤ j ≤ n − k , then

1 ≤ σi (A)

σi (R11),σj(R22)

σk+j(A)≤√

1 + f 2k(n − k),

for any 1 ≤ i ≤ k and 1 ≤ j ≤ min(m, n)− k .

19 of 73

Page 20: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Sketch of the proof ([Gu and Eisenstat, 1996])

Assume A is full column rank. Let α = σmax(R22)/σmin(R11), and let

R =

[R11

R22/α

] [Ik R−1

11 R12

αIn−k

]= R1W1.

We haveσi (R) ≤ σi (R1)||W1||2, 1 ≤ i ≤ n.

Since σmin(R11) = σmax(R22/α), then σi (R1) = σi (R11), for 1 ≤ i ≤ k.

||W1||22 ≤ 1 + ||R−111 R12||22 + α2 = 1 + ||R−1

11 R12||22 + ||R22||22||R−111 ||

22

≤ 1 + ||R−111 R12||2F + ||R22||2F ||R−1

11 ||2F

= 1 +k∑

i=1

n−k∑j=1

((R−1

11 R12)2i,j + ω2

i (R11)χ2j (R22)

)≤ 1 + f 2k(n − k)

We obtain,σi (A)

σi (R11)≤√

1 + f 2k(n − k)

20 of 73

Page 21: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Tournament pivoting [Demmel et al., 2015]

One step of CA RRQR, tournament pivoting used to select k columns

� Partition A = (A1,A2,A3,A4).

� Select k cols from each columnblock, by using QR with columnpivoting

� At each level i of the tree� At each node j do in parallel

� Let Av,i−1,Aw,i−1 be the colsselected by the children of node j

� Select k cols from(Av,i−1,Aw,i−1), by using QRwith column pivoting

� Permute Aji in leading positions,compute QR with no pivoting

APc1 = Q1

(R11 ∗

)21 of 73

Page 22: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Tournament pivoting [Demmel et al., 2015]

One step of CA RRQR, tournament pivoting used to select k columns

� Partition A = (A1,A2,A3,A4).

� Select k cols from each columnblock, by using QR with columnpivoting

� At each level i of the tree� At each node j do in parallel

� Let Av,i−1,Aw,i−1 be the colsselected by the children of node j

� Select k cols from(Av,i−1,Aw,i−1), by using QRwith column pivoting

� Permute Aji in leading positions,compute QR with no pivoting

APc1 = Q1

(R11 ∗

)21 of 73

Page 23: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Tournament pivoting [Demmel et al., 2015]

One step of CA RRQR, tournament pivoting used to select k columns

� Partition A = (A1,A2,A3,A4).

� Select k cols from each columnblock, by using QR with columnpivoting

� At each level i of the tree� At each node j do in parallel

� Let Av,i−1,Aw,i−1 be the colsselected by the children of node j

� Select k cols from(Av,i−1,Aw,i−1), by using QRwith column pivoting

� Permute Aji in leading positions,compute QR with no pivoting

APc1 = Q1

(R11 ∗

)21 of 73

Page 24: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Tournament pivoting [Demmel et al., 2015]

One step of CA RRQR, tournament pivoting used to select k columns

� Partition A = (A1,A2,A3,A4).

� Select k cols from each columnblock, by using QR with columnpivoting

� At each level i of the tree� At each node j do in parallel

� Let Av,i−1,Aw,i−1 be the colsselected by the children of node j

� Select k cols from(Av,i−1,Aw,i−1), by using QRwith column pivoting

� Permute Aji in leading positions,compute QR with no pivoting

APc1 = Q1

(R11 ∗

)21 of 73

Page 25: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Tournament pivoting [Demmel et al., 2015]

One step of CA RRQR, tournament pivoting used to select k columns

� Partition A = (A1,A2,A3,A4).

� Select k cols from each columnblock, by using QR with columnpivoting

� At each level i of the tree� At each node j do in parallel

� Let Av,i−1,Aw,i−1 be the colsselected by the children of node j

� Select k cols from(Av,i−1,Aw,i−1), by using QRwith column pivoting

� Permute Aji in leading positions,compute QR with no pivoting

APc1 = Q1

(R11 ∗

)21 of 73

Page 26: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Tournament pivoting [Demmel et al., 2015]

One step of CA RRQR, tournament pivoting used to select k columns

� Partition A = (A1,A2,A3,A4).

� Select k cols from each columnblock, by using QR with columnpivoting

� At each level i of the tree� At each node j do in parallel

� Let Av,i−1,Aw,i−1 be the colsselected by the children of node j

� Select k cols from(Av,i−1,Aw,i−1), by using QRwith column pivoting

� Permute Aji in leading positions,compute QR with no pivoting

APc1 = Q1

(R11 ∗

)21 of 73

Page 27: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Select k columns from a tall and skinny matrix

Given W of size m × 2k , m >> k , k columns are selected as:

W = QR02 using TSQRR02Pc = Q2R2 using QRCPReturn WPc(:, 1 : k)

22 of 73

Page 28: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Reduction trees

Any shape of reduction tree can be used during CA RRQR, depending onthe underlying architecture.

� Binary tree:

A00 A10 A20 A30

↓ ↓ ↓ ↓f (A00) f (A10) f (A20) f (A30)

↘ ↙ ↘ ↙f (A01) f (A11)

↘ ↙f (A02)

� Flat tree:

A00 A10 A20 A30

��)

������) ���������)

f (A00)

↓f (A01)

↓f (A02)

↓f (A03)

Notation: at each node of the reduction tree, f (Aij) returns the first b columns

obtained after performing (strong) RRQR of Aij .

23 of 73

Page 29: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Rank revealing properties of CA-RRQR

It is shown in [Demmel et al., 2015] that the column permutation computedby CA-RRQR satisfies

χ2j

(R−1

11 R12

)+ (χj (R22) /σmin(R11))2 ≤ F 2

TP , for j = 1, . . . , n − k . (6)

where FTP depends on k , f , n, the shape of reduction tree used duringtournament pivoting, and the number of iterations of CARRQR.

24 of 73

Page 30: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

CA-RRQR - bounds for one tournament

Selecting k columns by using tournament pivoting reveals the rank of A withthe following bounds:

1 ≤ σi (A)

σi (R11),σj(R22)

σk+j(A)≤√

1 + F 2TP(n − k),

||R−111 R12||max ≤ FTP

� Binary tree of depth log2(n/k),

FTP ≤1√2k

(n/k)log2(√

2fk) . (7)

The upper bound is a decreasing function of k when k >√

n/(√

2f ).

� Flat tree of depth n/k ,

FTP ≤1√2k

(√2fk)n/k

. (8)

25 of 73

Page 31: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Cost of CA-RRQR

Cost of CA-RRQR vs QR with column pivoting

n × n matrix on√

P ×√

P processor grid, block size k

Flops : 4n3/P + O(n2klogP/√

P) vs (4/3)n3/P

Bandwidth : O(n2 log P/√

P) vs sameLatency : O(n log P/k) vs O(n log P)

Communication optimal, modulo polylogarithmic factors, by choosing

k =1

2log 2P

n√P

26 of 73

Page 32: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Numerical results

� Stability close to QRCP for many tested matrices.

� Absolute value of diagonals of R, L referred to as R-values, L-values.

� Methods compared

� RRQR: QR with column pivoting

� CA-RRQR-B with tournament pivoting based on binary tree

� CA-RRQR-F with tournament pivoting based on flat tree

� SVD

27 of 73

Page 33: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Numerical results - devil’s stairs

Devil’s stairs (Stewart), a matrix with multiple gaps in the singular values.

Matlab code:Length = 20; s = zeros(n,1); Nst = floor(n/Length);for i = 1 : Nst do

s(1+Length*(i-1):Length*i) = -0.6*(i-1);end fors(Length ∗ Nst : end) = −0.6 ∗ (Nst − 1);s = 10. ∧ s;A = orth(rand(n)) * diag(s) * orth(randn(n));

QLP decomposition (Stewart)

APc1 = Q1R1 using ca rrqr

RT1 = Q2R2

0 20 40 60 80 100 12010

−3

10−2

10−1

100

Column No. i

R−

valu

es &

sin

gula

r valu

es

QRCP

CARRQR−B

CARRQR−F

SVD

0 20 40 60 80 100 120

1

2

3

4

5

6

7

8

9

10x 10

−16

Tru

stw

ort

hin

ess c

heck

0 20 40 60 80 100 120

1

2

3

4

5

6

7

8

9

10x 10

−16

28 of 73

Page 34: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Numerical results - devil’s stairs

Devil’s stairs (Stewart), a matrix with multiple gaps in the singular values.

Matlab code:Length = 20; s = zeros(n,1); Nst = floor(n/Length);for i = 1 : Nst do

s(1+Length*(i-1):Length*i) = -0.6*(i-1);end fors(Length ∗ Nst : end) = −0.6 ∗ (Nst − 1);s = 10. ∧ s;A = orth(rand(n)) * diag(s) * orth(randn(n));

QLP decomposition (Stewart)

APc1 = Q1R1 using ca rrqr

RT1 = Q2R2

0 20 40 60 80 100 12010

−3

10−2

10−1

100

Column No. i

R−

valu

es &

sin

gula

r valu

es

QRCP

CARRQR−B

CARRQR−F

SVD

0 20 40 60 80 100 120

1

2

3

4

5

6

7

8

9

10x 10

−16

Tru

stw

ort

hin

ess c

heck

0 20 40 60 80 100 120

1

2

3

4

5

6

7

8

9

10x 10

−16

0 20 40 60 80 100 12010

−3

10−2

10−1

100

Column No. i

L−

valu

es &

sin

gula

r valu

es

QRCP + QLP

CARRQR−B + QLP

CARRQR−F + QLP

SVD

28 of 73

Page 35: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Numerical results (contd)

0 50 100 150 200 25010

−20

10−18

10−16

10−14

10−12

10−10

10−8

10−6

10−4

10−2

100

Column No. i

R−

va

lue

s,

sin

gu

lar

va

lue

s &

tru

stw

ort

hin

ess c

he

ck

QRCP

CARRQR−B

CARRQR−F

SVD

0 50 100 150 200 250

10−20

10−15

10−10

10−5

100

Column No. i

R−

va

lue

s,

sin

gu

lar

va

lue

s &

tru

stw

ort

hin

ess c

he

ck

QRCP

CARRQR−B

CARRQR−F

SVD

� Left: exponent - exponential Distribution, σ1 = 1, σi = αi−1 (i = 2, . . . , n),α = 10−1/11 [Bischof, 1991]

� Right: shaw - 1D image restoration model [Hansen, 2007]

εmin{||(AΠ0)(:, i)||2 , ||(AΠ1)(:, i)||2 , ||(AΠ2)(:, i)||2} (9)

εmax{||(AΠ0)(:, i)||2 , ||(AΠ1)(:, i)||2 , ||(AΠ2)(:, i)||2} (10)

where Πj (j = 0, 1, 2) are the permutation matrices obtained by QRCP, CARRQR-B, and

CARRQR-F, and ε is the machine precision.29 of 73

Page 36: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Numerical results - a set of 18 matrices

� Ratios |R(i , i)|/σi (R), for QRCP (top plot), CARRQR-B (second plot), andCARRQR-F (third plot).

� The number along x-axis represents the index of test matrices.

30 of 73

Page 37: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Plan

Low rank matrix approximation

Rank revealing QR factorization

LU CRTP: Truncated LU factorization with column and row tournamentpivoting

Experimental results, LU CRTP

Randomized algorithms for low rank approximation

31 of 73

Page 38: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

LU versus QR - filled graph G+(A)

� Consider A is SPD and A = LLT

� Given G (A) = (V ,E ), G +(A) = (V ,E +) is defined as:there is an edge (i , j) ∈ G +(A) iff there is a path from i to j in G (A)going through lower numbered vertices.

� G (L + LT ) = G +(A), ignoring cancellations.� Definition holds also for directed graphs (LU factorization).

1 2 3 4 5 6 7 8 9

A =

123456789

x x xx x x x

x x xx x x x

x x x x xx x x x

x x xx x x x

x x x

1 2 3 4 5 6 7 8 9

L + LT =

123456789

x x xx x x x x

x x x x xx x x x x x

x x x x x x xx x x x x x

x x x x xx x x x x

x x x

1 2 3

4 5 6

7 8 9

G(A)

1 2 3

4 5 6

7 8 9

G+(A)

32 of 73

Page 39: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

LU versus QR

Filled column intersection graph G+∩ (A)

� Graph of the Cholesky factor of ATA

� G (R) ⊆ G +∩ (A)

� ATA can have many more nonzeros than A

33 of 73

Page 40: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

LU versus QR

Numerical stability

� Let L and U be the computed factors of the block LU factorization. Then

LU = A + E , ‖E‖max ≤ c(n)ε(‖A‖max + ‖L‖max‖U‖max

). (11)

� For partial pivoting, ‖L‖max ≤ 1, ‖U‖max ≤ 2n‖A‖max

In practice, ‖U‖max ≤√

n‖A‖max

34 of 73

Page 41: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Low rank approximation based on LU factorization

� Given desired rank k, the factorization has the form

PrAPc =

(A11 A12

A21 A22

)=

(I

A21A−111 I

)(A11 A12

S(A11)

), (12)

where A ∈ Rm×n, A11 ∈ Rk,k , S(A11) = A22 − A21A−111 A12.

� The rank-k approximation matrix Ak is

Ak =

(I

A21A−111

)(A11 A12

)=

(A11

A21

)A−1

11

(A11 A12

). (13)

� A−111 is never formed, its factorization is used when Ak is applied to a

vector.

� In randomized algorithms, U = C +AR+, where C +,R+ areMoore-Penrose generalized inverses.

35 of 73

Page 42: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Design space

Non-exhaustive list for selecting k columns and rows:

1. Select k linearly independent columns of A (call result B), by using

1.1 (strong) QRCP/tournament pivoting using QR,1.2 LU / tournament pivoting based on LU, with some form of pivoting

(column, complete, rook),1.3 randomization: premultiply X = ZA where random matrix Z is short and

fat, then pick k rows from XT , by some method from 2) below,1.4 tournament pivoting based on randomized algorithms to select columns at

each step.

2. Select k linearly independent rows of B, by using

2.1 (strong) QRCP / tournament pivoting based on QR on BT , or on QT , therows of the thin Q factor of B,

2.2 LU / tournament pivoting based on LU, with pivoting (row, complete, rook)on B,

2.3 tournament pivoting based on randomized algorithms to select rows.

36 of 73

Page 43: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Select k cols using tournament pivoting

� Partition A = (A1,A2,A3,A4).

� Select k cols from each columnblock, by using QR with columnpivoting

� At each level i of the tree� At each node j do in parallel

� Let Av,i−1,Aw,i−1 be the colsselected by the children of node j

� Select k cols from(Av,i−1,Aw,i−1), by using QRwith column pivoting

� Return columns in Aji

37 of 73

Page 44: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Select k cols using tournament pivoting

� Partition A = (A1,A2,A3,A4).

� Select k cols from each columnblock, by using QR with columnpivoting

� At each level i of the tree� At each node j do in parallel

� Let Av,i−1,Aw,i−1 be the colsselected by the children of node j

� Select k cols from(Av,i−1,Aw,i−1), by using QRwith column pivoting

� Return columns in Aji

37 of 73

Page 45: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Select k cols using tournament pivoting

� Partition A = (A1,A2,A3,A4).

� Select k cols from each columnblock, by using QR with columnpivoting

� At each level i of the tree� At each node j do in parallel

� Let Av,i−1,Aw,i−1 be the colsselected by the children of node j

� Select k cols from(Av,i−1,Aw,i−1), by using QRwith column pivoting

� Return columns in Aji

37 of 73

Page 46: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Select k cols using tournament pivoting

� Partition A = (A1,A2,A3,A4).

� Select k cols from each columnblock, by using QR with columnpivoting

� At each level i of the tree� At each node j do in parallel

� Let Av,i−1,Aw,i−1 be the colsselected by the children of node j

� Select k cols from(Av,i−1,Aw,i−1), by using QRwith column pivoting

� Return columns in Aji

37 of 73

Page 47: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Select k cols using tournament pivoting

� Partition A = (A1,A2,A3,A4).

� Select k cols from each columnblock, by using QR with columnpivoting

� At each level i of the tree� At each node j do in parallel

� Let Av,i−1,Aw,i−1 be the colsselected by the children of node j

� Select k cols from(Av,i−1,Aw,i−1), by using QRwith column pivoting

� Return columns in Aji

37 of 73

Page 48: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Select k cols using tournament pivoting

� Partition A = (A1,A2,A3,A4).

� Select k cols from each columnblock, by using QR with columnpivoting

� At each level i of the tree� At each node j do in parallel

� Let Av,i−1,Aw,i−1 be the colsselected by the children of node j

� Select k cols from(Av,i−1,Aw,i−1), by using QRwith column pivoting

� Return columns in Aji

37 of 73

Page 49: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

LU CRTP factorization - one block step

One step of truncated block LU based on column/row tournament pivotingon matrix A of size m × n:

1. Select k columns by using tournament pivoting, permute them in front,bounds for s.v. governed by q1(n, k)

APc = Q

(R11 R12

R22

)=

(Q11 Q12

Q21 Q22

)(R11 R12

R22

)2. Select k rows from (Q11; Q21)T of size m × k by using tournament

pivoting,

PrQ =

(Q11 Q12

Q21 Q22

)such that ||Q21Q−1

11 ||max ≤ FTP and bounds for s.v. governed by q2(m, k).

38 of 73

Page 50: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Orthogonal matrices

Given orthogonal matrix Q ∈ Rm×m and its partitioning

Q =

(Q11 Q12

Q21 Q22

), (14)

the selection of k cols by tournament pivoting from (Q11; Q21)T leads tothe factorization

PrQ =

(Q11 Q12

Q21 Q22

)=

(I

Q21Q−111 I

)(Q11 Q12

S(Q11)

)(15)

where S(Q11) = Q22 − Q21Q−111 Q12 = Q−T22 .

39 of 73

Page 51: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Orthogonal matrices (contd)

The factorization

PrQ =

(Q11 Q12

Q21 Q22

)=

(I

Q21Q−111 I

)(Q11 Q12

S(Q11)

)(16)

satisfies:

ρj(Q21Q−111 ) ≤ FTP , (17)

1

q2(m, k)≤ σi (Q11) ≤ 1, (18)

σmin(Q11) = σmin(Q22) (19)

for all 1 ≤ i ≤ k , 1 ≤ j ≤ m − k , where ρj(A) is the 2-norm of the j-th row

of A, q2(m, k) =√

1 + F 2TP(m − k).

40 of 73

Page 52: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Sketch of the proof

PrAPc =

(A11 A12

A21 A22

)=

(I

A21A−111 I

)(A11 A12

S(A11)

)=

(I

Q21Q−111 I

)(Q11 Q12

S(Q11)

)(R11 R12

R22

)(20)

where

Q21Q−111 = A21A−1

11 ,

S(A11) = S(Q11)R22 = Q−T22 R22.

41 of 73

Page 53: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Sketch of the proof (contd)

A11 = Q11R11, (21)

S(A11) = S(Q11)R22 = Q−T22 R22. (22)

We obtain

σi (A) ≥ σi (A11) ≥ σmin(Q11)σi (R11) ≥ 1

q1(n, k)q2(m, k)σi (A),

We also have that

σk+j(A) ≤ σj(S(A11)) = σj(S(Q11)R22) ≤ ||S(Q11)||2σj(R22)

≤ q1(n, k)q2(m, k)σk+j(A),

where q1(n, k) =√

1 + F 2TP(n − k), q2(m, k) =

√1 + F 2

TP(m − k).

42 of 73

Page 54: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

LU CRTP factorization - bounds if rank = k

Given A of size m × n, one step of LU CRTP computes the decomposition

A = PrAPc =

(A11 A12

A21 A22

)=

(I

Q21Q−111 I

)(A11 A12

S(A11)

)(23)

where A11 is of size k × k and

S(A11) = A22 − A21A−111 A12 = A22 − Q21Q

−111 A12. (24)

It satisfies the following properties:

ρl(A21A−111 ) = ρl(Q21Q−1

11 ) ≤ FTP , (25)

||S(A11)||max ≤ min((1 + FTP

√k)||A||max ,FTP

√1 + F 2

TP(m − k)σk(A))

1 ≤ σi (A)

σi (A11),σj(S(A11))

σk+j(A)≤ q(m, n, k), (26)

for any 1 ≤ l ≤ m − k , 1 ≤ i ≤ k , and 1 ≤ j ≤ min(m, n)− k,q(m, n, k) =

√(1 + F 2

TP(n − k)) (1 + F 2TP(m − k)).

43 of 73

Page 55: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

LU CRTP factorization - bounds if rank = K = Tk

Consider T block steps of LU CRTP factorization

PrAPc =

IL21 I

......

. . .

LT1 LT2 . . . ILT+1,1 LT+1,2 . . . LT+1,T I

U11 U12 . . . U1T U1,T+1

U22 . . . U2T U2,T+1

. . ....

...UTT UT ,T+1

UT+1,T+1

(27)

where Utt is k × k for 1 ≤ t ≤ T , and UT+1,T+1 is (m − Tk)× (n − Tk). Then:

ρl(Li+1,j) ≤ FTP ,

||UK ||max ≤ min(

(1 + FTP

√k)K/k ||A||max , q2(m, k)q(m, n, k)K/k−1σK (A)

),

for any 1 ≤ l ≤ k. q2(m, k) =√

1 + F 2TP(m − k), and

q(m, n, k) =√

(1 + F 2TP(n − k)) (1 + F 2

TP(m − k)).

44 of 73

Page 56: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

LU CRTP factorization - bounds if rank = K = Tk

Consider T = K/k block steps of our LU CRTP factorization

PrAPc =

IL21 I

......

. . .

LT1 LT2 . . . ILT+1,1 LT+1,2 . . . LT+1,T I

U11 U12 . . . U1T U1,T+1

U22 . . . U2T U2,T+1

. . ....

...UTT UT ,T+1

UT+1,T+1

(28)

where Utt is k × k for 1 ≤ t ≤ T , and UT+1,T+1 is (m − Tk)× (n − Tk). Then:

1∏t−2v=0 q(m − vk, n − vk, k)

≤σ(t−1)k+i (A)

σi (Utt)≤ q(m − (t − 1)k, n − (t − 1)k, k),

1 ≤ σj(UT+1,T+1)

σK+j(A)≤

K/k−1∏v=0

q(m − vk, n − vk, k),

for any 1 ≤ i ≤ k, 1 ≤ t ≤ T , and 1 ≤ j ≤ min(m, n)− K . Here

q2(m, k) =√

1 + F 2TP(m − k), and

q(m, n, k) =√

(1 + F 2TP(n − k)) (1 + F 2

TP(m − k)).

45 of 73

Page 57: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Arithmetic complexity - arbitrary sparse matrices

� Let di be the number of nonzeros in column i of A, nnz(A) =∑n

i=1 di .

� A is permuted such that d1 ≤ . . . ≤ dn.

� A = [A00, . . . ,An/k,0] is partitioned into n/k blocks of columns.

At first step of TP:

� Pick k cols from A1 = [A00,A10]

nnz(A1) ≤ 2k∑2k

i=1 di ,

flopsQR(A1) ≤ 8k2∑2k

i=1 di .

At the second step of TP:

� Pick k cols from A2

nnz(A2) ≤ 2k∑3k

i=k+1 di

flopsQR(A2) ≤ 8k2∑3k

i=k+1 di

Bounds attained when:

A =

∗ 0 0

.

.

.

.

.

.

.

.

.∗ 0 00 ∗ 0

.

.

.

.

.

.

.

.

.0 ∗ 0

...

0 0 ∗...

.

.

.

.

.

.0 0 ∗

46 of 73

Page 58: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Arithmetic complexity - arbitrary sparse matrices (2)

nnzmax(TPFT ) ≤ 4dnk2

nnztotal(TPFT ) ≤ 2k

(2k∑i=1

di +3k∑

i=k+1

di + . . .+n∑

i=n−2k+1

di

)≤

≤ 4kn∑

i=1

di = 4nnz(A)k ,

flops(TPFT ) ≤ 16nnz(A)k2,

47 of 73

Page 59: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Tournament pivoting for sparse matrices

Arithmetic complexity

A has arbitrary sparsity structure

flops(TPFT ) ≤ 16nnz(A)k2

flops(TPBT ) ≤ 8nnz(A)

Pk2 log

n

k

G (ATA) is an n1/2- separable graph

flops(TPFT ) ≤ O(nnz(A)k3/2)

flops(TPBT ) ≤ O(nnz(A)

Pk3/2 log

n

k)

Randomized algorithm by Clarkson and Woodruff, STOC’13

� Given n × n matrix A, it computes LDW T , where D is k × k such thatwith failure probability 1/10||A− LDW T ||F ≤ (1 + ε)||A− Ak ||F , Ak is best rank-k approximation.

� The cost of this algorithm is

flops ≤ O(nnz(A)) + nk2ε−4logO(1)(nk2ε−4)

� Tournament pivoting is faster if ε ≤ 1(nnz(A)/n)1/4

or if ε = 0.1 and nnz(A)/n ≤ 104.48 of 73

Page 60: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Tournament pivoting for sparse matrices

Arithmetic complexity

A has arbitrary sparsity structure

flops(TPFT ) ≤ 16nnz(A)k2

flops(TPBT ) ≤ 8nnz(A)

Pk2 log

n

k

G (ATA) is an n1/2- separable graph

flops(TPFT ) ≤ O(nnz(A)k3/2)

flops(TPBT ) ≤ O(nnz(A)

Pk3/2 log

n

k)

Randomized algorithm by Clarkson and Woodruff, STOC’13

� Given n × n matrix A, it computes LDW T , where D is k × k such thatwith failure probability 1/10||A− LDW T ||F ≤ (1 + ε)||A− Ak ||F , Ak is best rank-k approximation.

� The cost of this algorithm is

flops ≤ O(nnz(A)) + nk2ε−4logO(1)(nk2ε−4)

� Tournament pivoting is faster if ε ≤ 1(nnz(A)/n)1/4

or if ε = 0.1 and nnz(A)/n ≤ 104.48 of 73

Page 61: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Plan

Low rank matrix approximation

Rank revealing QR factorization

LU CRTP: Truncated LU factorization with column and row tournamentpivoting

Experimental results, LU CRTP

Randomized algorithms for low rank approximation

49 of 73

Page 62: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Numerical results

Index of singular values

0 50 100 150 200 250 300

Sin

gula

r valu

e

10-20

10-15

10-10

10-5

100

Evolution of singular values for exponential

QRCP

LU-CRQRCP

LU-CRTP

SVD

Index of singular values

0 50 100 150 200 250 300

Sin

gula

r valu

e

10-25

10-20

10-15

10-10

10-5

100

Evolution of singular values for foxgood

QRCP

LU-CRQRCP

LU-CRTP

SVD

� Left: exponent - exponential Distribution, σ1 = 1, σi = αi−1 (i = 2, . . . , n),α = 10−1/11 [Bischof, 1991]

� Right: foxgood - Severely ill-posed test problem of the 1st kind Fredholm integralequation used by Fox and Goodwin

50 of 73

Page 63: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Numerical results

� Here k = 16 and the factorization is truncated at K = 128 (bars) or K = 240(red lines).

� LU CTP: Column tournament pivoting + partial pivoting

� All singular values smaller than machine precision, ε, are replaced by ε.

� The number along x-axis represents the index of test matrices.

51 of 73

Page 64: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Results for image of size 919× 707

Original image Rank-38 approx, SVD Singular value distribution

Rank-38 approx, LUPP Rank-38 approx, LU CRTP Rank-75 approx, LU CRTP

52 of 73

Page 65: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Results for image of size 691× 505

Original image Rank-105 approx, SVDSingular value distribution

Rank-105 approx, LUPP Rank-105 approx, LU CRTP Rank-209 approx, LU CRTP

53 of 73

Page 66: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Comparing nnz in the factors L,U versus Q,R

Name/size Nnz Rank K Nnz QRCP/ Nnz LU CRTP/A(:, 1 : K ) Nnz LU CRTP Nnz LUPP

gemat11 1232 128 2.1 2.24929 4895 512 3.3 2.6

9583 1024 11.5 3.2wang3 896 128 3.0 2.126064 3536 512 2.9 2.1

7120 1024 2.9 1.2Rfdevice 633 128 10.0 1.1

74104 2255 512 82.6 0.94681 1024 207.2 0.0

Parab fem 896 128 − 0.5525825 3584 512 − 0.3

7168 1024 − 0.2Mac econ 384 128 − 0.3

206500 1535 512 − 0.35970 1024 − 0.2

54 of 73

Page 67: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Performance results

Selection of 256 columns by tournament pivoting

� Edison, Cray XC30 (NERSC): 2x12-core Intel Ivy Bridge (2.4 GHz)

� Tournament pivoting uses SPQR (T. Davis) + dGEQP3 (Lapack), timein secs

Matrices: dimension at leaves on 32 procs

� Parab fem: 528825× 528825 528825× 16432

� Mac econ: 206500× 206500 206500× 6453

Time Time leaves Number of MPI processes2k cols 32procs 16 32 64 128 256 512 1024

SPQR + dGEQP3Parab fem 0.26 0.26 + 1129 46.7 24.5 13.7 8.4 5.9 4.8 4.4Mac econ 0.46 25.4 + 510 132.7 86.3 111.4 59.6 27.2 − −

55 of 73

Page 68: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Plan

Low rank matrix approximation

Rank revealing QR factorization

LU CRTP: Truncated LU factorization with column and row tournamentpivoting

Experimental results, LU CRTP

Randomized algorithms for low rank approximation

56 of 73

Page 69: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Randomized algorithms - main idea

� Construct a low dimensional subspace that captures the action of A.

� Restrict A to the subspace and compute a standard QR or SVDfactorization.

Obtained as follows:

1. Compute an approximate basis for the range of A (m × n)find Q (m × k) with orthonormal columns and approximate A by theprojection of its columns onto the space spanned by Q:

A ≈ QQTA

2. Use Q to compute a standard factorization of A

Source: Halko et al, Finding structure with randomness: probabilistic algorithms for

constructing approximate matrix decomposition, SIREV 2011.

57 of 73

Page 70: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Why a random projection works

Johnson-Lindenstrauss LemmaFor any 0 < ε < 1, and any set of vectors x1, .., .xn in Rm, letk ≥ 4(ε2/2− ε3/3)−1ln(n). Let F be a random kxm orthogonal matrixmultiplied by

√m/k. Then with probability at 1/n, for all 1 <= i , j <= n

(1− ε)||xi − xj ||2 <= ||F (xi − xj)||2 <= (1 + ε)||xi − xj ||2

� Any m-vector can be embedded in k = O(log(n)/ε2) dimensions whileincurring a distortion of at most 1± ε between all pairs of m-vectors.

� JL relies on F being uniformly distributed random orthonormal matrix.

� Such an F can be obtained by computing the QR factorization of anm × k matrix of i.i.d. N(0, 1) random variables.

Source: Theorem 2.1 and proof in S. Dasgupta, A. Gupta, 2003, An Elementary Proof of

a Theorem of Johnson and Lindenstrauss

58 of 73

Page 71: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Typical randomized truncated SVD

AlgorithmInput: m × n matrix A, desired rank k , l = p + k exponent q.1. Sample an n × l test matrix G with independent mean-zero,

unit-variance Gaussian entries.2. Compute Y = (AAT )qAG /* Y is expected to span the column space

of A */3. Construct Q ∈ Rm×l with columns forming an orthonormal basis for

the range of Y .4. Compute B = QTA5. Compute the SVD of B = UΣV T

Return the approximation Ak = QU · Σ · V T

59 of 73

Page 72: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Randomized truncated SVD (q = 0)

The best approximation is when Q equals the first k + p left singular vectorsof A. Given A = UΣV T ,

QQTA = U(1 : m, 1 : k + p)Σ(1 : k + p, 1 : k + p)(V (1 : n, 1 : k + p))T

||A− QQTA||2 = σk+p+1

Theorem 1.1 from Halko et al. If G is chosen to be i.i.d. N(0,1), k, p ≥ 2,q = 1, then the expectation with respect to the random matrix G is

E(||A− QQTA||2) ≤(

1 +4√

k + p

p − 1

√min(m, n)

)σk+1(A)

and the probability that the error satisfies

||A− QQTA||2 ≤(

1 + 11√

k + p ·√

min(m, n))σk+1(A)

is at least 1− 6/pp.For p = 6, the probability becomes .99.

60 of 73

Page 73: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Randomized truncated SVD

Theorem 10.6, Halko et al. Average spectral norm. Under the samehypotheses as Theorem 1.1 from Halko et al.,

E(||A− QQTA||2) ≤

(1 +

√k

p − 1

)σk+1(A) +

e√

k + p

p

n∑j=k+1

σ2j (A)

1/2

� Fast decay of singular values:

If(∑

j>k σ2j (A)

)1/2

≈ σk+1 then the approximation should be accurate.

� Slow decay of singular values:

If(∑

j>k σ2j (A)

)1/2

≈√

n − kσk+1 and n large, then the approximation

might not be accurate.

Source: G. Martinsson’s talk

61 of 73

Page 74: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Power iteration q ≥ 1

The matrix (AAT )qA has a faster decay in its singular values:

� has the same left singular vectors as A

� its singular values are:

σj((AAT )qA) = (σj(A))2q+1

62 of 73

Page 75: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Cost of randomized truncated SVD

� Randomized SVD requires 2q + 1 passes over the matrix.

� The last 3 steps of the algorithms cost:(2) Compute Y = (AAT )qAG : 2(2q + 1) · nnz(A) · (k + p)(3) Compute QR of Y : 2m(k + p)2

(4) Compute B = QTA: 2nnz(A) · (k + p)(5) Compute SVD of B: O(n(k + p)2)

� If nnz(A)/m ≥ k + p and q = 1, then (2) and (4) dominate (3).

� To be faster than deterministic approaches, the cost of (2) and (4) needto be reduced.

63 of 73

Page 76: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Fast Johnson-Lindenstrauss transform

Find sparse or structured G such that computing AG is cheap, e.g. asubsampled random Fourier trasnform (SRFT),

G =

√n

k + pD × F × S , where

� D is n × n diagonal with entries uniformly distributed on unit circle in C� F is n × n discrete Fourier transform, Fjk = 1√

ne−2πi(j−1)(k−1)/n

� S is n × (k + p) random subset of the columns of the identity (drawsk + p columns at random from DF ).

Computational cost(2) Compute AG in O(mn log(n)) or O(mn log(k + p)) via a subsampledFFT(4) Compute B = QTA still expensive ! – can be reduced by row sampling

References: Ailon and Chazelle (2006), Liberty, Rokhlin, Tygert and Woolfe

(2006).64 of 73

Page 77: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Summary of computation cost

Dense matrix A of size m × n

� QR with column pivoting: 4mnk

� Randomized SVD with a Gaussian matrix: O(mnk)

� Randomized SVD with an SRFT: O(mn log(k))

65 of 73

Page 78: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Results from image processing (from Halko et al)

� A matrix A of size 9025× 9025 arising from a diffusion geometryapproach.

� A is a graph Lapacian on the manifold of 3× 3 patches.� 95× 95 pixel grayscale image, intensity of each pixel is an integer ≤ 4095.� Vector x (i) ∈ R9 gives the intensities of the pixels in a 3× 3

neighborhood of pixel i .� W reflects similarities between patches, σ = 50 reflects the level of

sensitivity,

wij = exp{−||x (i) − x (j)||2/σ2},� Sparsify W , compute dominant eigenvectors of A = D−1/2WD−1/2.

66 of 73

Page 79: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Experimental results (from Halko et al)

� Approximation error : ||A− QQTA||2� Estimated eigenvalues for k = 100

67 of 73

Page 80: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Clarksson and Woodruff, STOC 2013

� Based on randomized sparse embedding

� Let S , of size poly(k/ε)× n be formed such that each column has onenon-zero, ±1, randomly chosen

S =

0 0 1 0 0 11 0 0 0 0 00 0 0 −1 1 00 −1 0 0 0 0

� Given A of size n × n and rank k , for certain poly(k/ε), with probability

at least 9/10, the column space of A is preserved, that is for all x ∈ Rn,

||SAx ||2 = (1± ε)||Ax ||2

� SA can be computed in nnz(A) time

Source: Woodruff’s talk, STOC 2013

68 of 73

Page 81: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Clarksson and Woodruff, STOC 2013

Main idea

� Let A be an n × n matrixS be an v × n sparse embedding matrix, v = Θ(ε−4k2 log6(k/ε))R an t × n sparse embedding matrix, t = O(kε−1 log(k/ε))

A′ = ART (SART )−1SA

� Extract low rank approximation from A′

� More details in Theorem 47 from STOC 2013

� Theorem 47 relies on S and R being the product of a sparse embeddingand a SRHT matrix

69 of 73

Page 82: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Clarkson and Woodruff, STOC 2013

� Given n × n matrix A, it computes LDW T , where D is k × k such thatwith failure probability 1/10||A− LDW T ||F ≤ (1 + ε)||A− Ak ||F , Ak is best rank-k approximation.

flops ≤ O(nnz(A)) + (nk2ε−4 + k3ε−5)logO(1)(nk2ε−4 + k3ε−5)

70 of 73

Page 83: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

More details on CA deterministic algorithms

� [Demmel et al., 2015] Communication avoiding rank revealing QRfactorization with column pivoting Demmel, Grigori, Gu, Xiang, SIAM J.Matrix Analysis and Applications, 2015.

� Low rank approximation of a sparse matrix based on LU factorizationwith column and row tournament pivoting, with S. Cayrols and J.Demmel, Inria TR 8910.

71 of 73

Page 84: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

References (1)

Bischof, C. H. (1991).

A parallel QR factorization algorithm with controlled local pivoting.SIAM J. Sci. Stat. Comput., 12:36–57.

Businger, P. A. and Golub, G. H. (1965).

Linear least squares solutions by Householder transformations.Numer. Math., 7:269–276.

Demmel, J., Grigori, L., Gu, M., and Xiang, H. (2015).

Communication-avoiding rank-revealing qr decomposition.SIAM Journal on Matrix Analysis and its Applications, 36(1):55–89.

Eckart, C. and Young, G. (1936).

The approximation of one matrix by another of lower rank.Psychometrika, 1:211–218.

Eisenstat, S. C. and Ipsen, I. C. F. (1995).

Relative perturbation techniques for singular value problems.SIAM J. Numer. Anal., 32(6):1972–1988.

Gu, M. and Eisenstat, S. C. (1996).

Efficient algorithms for computing a strong rank-revealing QR factorization.SIAM J. Sci. Comput., 17(4):848–869.

Hansen, P. C. (2007).

Regularization tools: A matlab package for analysis and solution of discrete ill-posed problems.Numerical Algorithms, (46):189–194.

72 of 73

Page 85: Rank revealing factorizations and low rank approximations · Rank revealing factorizations, and low rank approximations L. Grigori Inria Paris, UPMC February 2017

Results used in the proofs

� Interlacing property of singular values [Golub, Van Loan, 4th edition,page 487]Let A = [a1| . . . |an] be a column partitioning of an m × n matrix withm ≥ n. If Ar = [a1| . . . |ar ], then for r = 1 : n − 1

σ1(Ar+1) ≥ σ1(Ar ) ≥ σ2(Ar+1) ≥ . . . ≥ σr (Ar+1) ≥ σr (Ar ) ≥ σr+1(Ar+1).

� Given n × n matrix B and n × k matrix C , then([Eisenstat and Ipsen, 1995], p. 1977)

σmin(B)σj(C ) ≤ σj(BC ) ≤ σmax(B)σj(C ), j = 1, . . . , k .

73 of 73