Download Class slides.

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Location arithmetic wikipedia , lookup

Addition wikipedia , lookup

Fundamental theorem of algebra wikipedia , lookup

Mathematics of radio engineering wikipedia , lookup

Volume and displacement indicators for an architectural structure wikipedia , lookup

Proofs of Fermat's little theorem wikipedia , lookup

Four color theorem wikipedia , lookup

Factorization of polynomials over finite fields wikipedia , lookup

Transcript
CS 290H Lecture 2
Permutations, fill, and complexity
• Homework 0 due Thursday 30 Sep by 3pm
turnin hw0@gilbert file1 file2 file3 … Makefile
• Homework 1 will be on web site Thursday, but …
• No class Thursday 30 Sep – go to the CS Dept bbq!
• Class time will henceforth be 3:15 to 4:30
• Read GLN chap 1 & 2 and sec 3.1–3.4 & 4.1–4.2
Graphs and Sparse Matrices: Cholesky factorization
Fill: new nonzeros in factor
3
1
6
8
4
9
7
G(A)
2
4
9
7
6
8
10
5
3
1
10
5
G+(A)
[chordal]
2
Symmetric Gaussian elimination:
for j = 1 to n
add edges between j’s
higher-numbered neighbors
Sparse Cholesky factorization to solve Ax = b
1. Preorder: replace A by PAPT and b by Pb
•
Independent of numerics
2. Symbolic Factorization: build static data structure
•
•
•
•
Elimination tree
Nonzero counts
Supernodes
Nonzero structure of L
3. Numeric Factorization: A = LLT
•
•
Static data structure
Supernodes use BLAS3 to reduce memory traffic
4. Triangular Solves: solve Ly = b, then LTx = y
Complexity measures for sparse Cholesky
• Space:
• Measured by fill, which is nnz(G+(A))
• Number of off-diagonal nonzeros in Cholesky factor;
really you need to store n + nnz(G+(A)) real numbers.
• ~ sum over vertices of G+(A) of (# of larger neighbors).
• Time:
• Measured by number of multiplicative flops (* and /)
• ~ sum over vertices of G+(A) of (# of larger neighbors)^2
Path lemma (GLN Theorem 4.2.2)
Let G = G(A) be the graph of a symmetric, positive definite
matrix, with vertices 1, 2, …, n, and let G+ = G+(A) be
the filled graph.
Then (v, w) is an edge of G+ if and only if G contains a
path from v to w of the form (v, x1, x2, …, xk, w) with
xi < min(v, w) for each i.
(This includes the possibility k = 0, in which case (v, w) is an edge of
G and therefore of G+.)
Fill-reducing permutations in Matlab
• Nonsymmetric approximate minimum degree:
• p = colamd(A);
• column permutation: lu(A(:,p)) often sparser than lu(A)
• also for QR factorization
• Symmetric approximate minimum degree:
• p = symamd(A);
• symmetric permutation: chol(A(p,p)) often sparser than chol(A)
• Reverse Cuthill-McKee
• p = symrcm(A);
• A(p,p) often has smaller bandwidth than A
• similar to Sparspak RCM