hierarchical matrices · 2008. 3. 30. · example: in analysis the set of functions is immediately...

37
Hierarchical Matrices Wolfgang Hackbusch Max-Planck-Institut f ur Mathematik in den Naturwissenschaften Inselstr. 22-26, D-04103 Leipzig, Germany [email protected] http://www.mis.mpg.de/scicomp/hackbusch e.html Harrachov, August 20, 2007

Upload: others

Post on 03-Sep-2020

0 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Hierarchical MatricesWolfgang Hackbusch

Max-Planck-Institut fur Mathematik in den Naturwissenschaften

Inselstr. 22-26, D-04103 Leipzig, Germany

[email protected]

http://www.mis.mpg.de/scicomp/hackbusch e.html

Harrachov, August 20, 2007

Page 2: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

1 Introductory Remarks

Aim

Treatment of large-scale linear systems of equations is a common need inmodern computations

Large-scale systems: size n = 105; 106 or larger, depending on the available

storage size.

The use of matrices and matrix operations lead in general to diculties

Storage of O(n2) for fully populated matrices is usually not available.

Usual approach: Explicit use of matrices avoided, instead indirect matrix-vector

multiplications (FFT, sparse matrices).

Here: Direct representation of matrices (dense matrices included).

Page 3: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Remark: Analysis vs. Linear Algebra

Traditionally, Analysis and Linear Algebra have dierent viewpoints concerning

topology.

Example: In Analysis the set of functions is immediately restricted to certain

subsets of dierent smoothness: L2; C, Ck etc. A tool like a nite Taylor series

can only be applied to the subset Ck.

In Linear Algebra, algorithms are usually required to work for all matrices (or

symmetric or pos. def. matrices, etc.).

For large-scale problems, matrices are discretisations of operators. Hence, the

topology of Functional Analysis is needed.

Consequence: Algorithms are considered to work for matrices with sucient

\smoothness".

Page 4: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Remark: Approximation

Matrices arise after a discretisation process. Therefore, a further approxi-mation error of similar (or smaller) size does not matter.

Under certain \smoothness conditions" nn-matrices can be approximatedby O(n) or O(n log n) data (! N -term approximation with

N = O(n); O(n log n)).

TASK: One has to construct \data-sparse" representations of matrices involving

only N data.

A typical size is

N = O(n logn logd 1");

d: spatial dimension, ": accuracy of the approximation.

If " nconst; then logd 1" = O(logd n):

Page 5: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Remark: Matrix Operations

Low storage cost for matrices is only one aspect. The data-sparse representation

must also support the relevant operations:

matrix-vector multiplication

transposition A! A>

matrix-matrix addition

matrix-matrix multiplication

matrix inversion

LU decomposition

The results may be again approximations! Cost: O(n log n).

Page 6: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Typical Fields of Application:

Boundary Element Method (BEM):Formulation of homogeneous elliptic boundary value problems by integral equa-

tion formulations

) System matrices are fully populated matrices

Finite Element Method (FEM):Elliptic boundary value problems lead to sparse matrices A, but for instance A1

is full.

Sometimes Schur complements

A11 A12A122 A21

are needed, which are also full.

Further Applications: matrix equations, matrix functions

Page 7: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

2 Construction of Hierarchical Matrices

Decompose the matrix into suitable subblocks.

Approximate the matrix in each subblock by a rank-k-matrix

subblock =kXi=1

aib>i

(for suitably small local rank k).

Illustration:

k is upper bound. The true rank may be smaller.

Page 8: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Example for Demonstration

Let n = 2p; p = 0; 1; : : : The H-matrix format is chosen as follows:

All subblocks are lled by rank-k-matrices (here k = 1).

number of blocks: 3n 2;

storage cost: n+ 2n log2 n;

cost of matrix-vector multiplication: 4n log2 n n+ 2:

Page 9: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Matrix Addition

Diculty:

Addition of two rank-k submatrices yields rank 2k:

Remedy:

Truncation to rank k (via SVD) yields a result in the same H-matrix format.

Notation:

Ak B is the true sum truncated to rank k:

Cost for Rank-1-addition 1 is 18n log2 n+O(n):

Page 10: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Matrix-Matrix Multiplication

Recursion:

H H =

"H RR H

#"H RR H

#

=

"H H +R R H R+R HR H +H R H H +R R

#:

The approximate multiplication of two H-matrices requires

13n log22 n+ 65n log2 n 51n+ 52

operations.

Page 11: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Matrix Inversion

The (exact) inverse of A is"A111 +A111 A12S

1A21A111 A111 A12S1

S1A21A111 S1

#

with the Schur complement S = A22 A21A111 A12:

The approximate inversion of an H-matrix requires

13n log22 n+ 47n log2 n 109n+ 110 operations,

cost of approximate LU decomposition: 112 n log22 n+25n log2 n 28n+28:

Page 12: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Remarks to the Introductory Example

At least, the rank 1 is to be replaced by a larger rank k:

Moreover, in general, the simple format is to be replaced by a

more rened format like

Page 13: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

General Construction of Hierarchical MatricesPartition of the Matrix

How to partition the matrix in subblocks?

I: index set of matrix rows; J : index set of matrix columns.

Block: b = with I; J:

Cluster Tree:

The cluster tree T (I) contains a collection of subsets I (similarly: T (J)).

Block Cluster Tree T (I J):

Collection of (small and large) blocks b = with 2 T (I); 2 T (J):Criterion for selection: b as large as possible and admissible, i.e.,

min fdiam(); diam()g dist(; ):

Page 14: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Cluster TreeI: index set containing the row indices i of the matrix A =

Aij

:

We partition I recursively into (e.g.) two subsets.

This process ends if the subsets of I have a suciently small cardinality.

The resulting tree T (I) is called the cluster tree.

Ω

τΩ

σ

REMARK: For usual discretisations, an index i 2 I is associated to annodal point xi 2 Rd or the support supp(i) Rd of a basis function i:The practical performance uses bounding boxes:

Page 15: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Block-Cluster Tree

NOTATION: T (I J) is the block-cluster tree. Elements: blocks b = .

τσb

Let 2 T (I J) be a block (=) 2 T (I), 2 T (J)). 0; 00 2 T (I) sons of ; i.e., = 0 [ 00: Similarly, 0; 00 2 T (J) sons of

2 T (J): Then the four sons of 2 T (I J) are 00; 000; 000; 00 00 2 T (I J). If either of is a leaf, is not further partitioned.

1

2

3

4

5

6

7

1 2 3 4 5 6 7

0

0

7!

1

2

3

4

5

6

7

1 2 3 4 5 6 7

0

0

7!

1

2

3

4

5

6

7

1 2 3 4 5 6 7

0

0

7! 7!green blocks: admissible, red: non-admissible

Page 16: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

DEFINITION (admissible block) Fix some > 0: A block 2 T (I J) is

called admissible if

min fdiam(); diam()g dist( ;)

or is a leaf. 2 T (I J) is called maximally admissible if the fatherof is non-admissible.

Ω

Ω

τ

σ

DEFINITION (Partition P ): P T (I J) is dened by: 1) dierent b 2 P

are disjoint, 2) their unionSb2P p = I J is complete, 3) they are maximally

admissible.

Page 17: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

3 Application to BEM

Example: (Au) (x) :=Z 10log jx yju(y)dy for x 2 [0; 1]:

Discretisation: collocation with piecewise constant elements in

[xi1; xi]; xi = ih; i = 1; : : : ; n; h = 1=n;

Midpoints xi1=2 = (i 1=2)h are the collocation points:

A = (aij)i;j=1;:::;n with aij =Z xjxj1

logxi1=2 y

dy:Replace the kernel function (x; y) = log jx yj in a certain range of x; y by anapproximation ~(x; y) of separable form

~(x; y) =X

2KX(x)Y(y):

Page 18: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

~(x; y) =X

2KX(x)Y(y):

Simple choice: Taylor's formula applied with respect to y:

K = f0; 1; : : : ; k 1g;X(x) = derivatives of (x; ) evaluated at y = y;

Y(y) = (y y):

The kernel (x; y) = log jx yj leads to the error estimate

j(x; y) ~(x; y)j jy yjk=k(jx yj jy yj)k

for jx yj jy yj:

If is replaced by ~; the integral aij =R xjxj1 (xi1=2; y)dy becomes

~aij =X2K

X(xi1=2)Z xjxj1

Y(y)dy: ()

Let b be a block and restrict i; j in () to b: Then () describes a block matrix~Ajb: Each term of the sum in () is an rank-1 matrix ab> with

ai = X(xi1=2); bj =Z xjxj1

Y(y)dy:

Since #K = k, the block ~Ajb is of rank-k type.

Page 19: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Furthermore, one can check that

j(x; y) ~(x; y)j 1

k

1

2

k; kA ~Ak1 2k=k:

Discretisation error h; where the step size h is related to n = #I by h 1n:

Hence k should be chosen such that

2k 1

n

:

Hence,

k = O(logn)

is the required rank.

NOTE: a) The construction of the cluster and block-cluster tree is automatic

(black-box).

b) Similarly, the construction of the approximation ~A is black-box (usually by

interpolation instead of Taylor expansion).

Page 20: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

4 Application to FEM

REMARK: a) A FEM system matrix is an H-matrix. Non-trivial blocks = 0.b) For a uniformly elliptic dierential operator with L1-coecients, the in-verse of the FEM-matrix can be exponentially well approximated by an H-matrix[Bebendorf - Hackbusch 2003].

When solving a linear system of equations Ax = b; one can make use of the LU

decomposition. The particular advantage of the LU decomposition for sparse

matrices A is that the factors L and U contain many zero block (ll-in is not

complete!). Example of an factor L :

8

84 4 4

8

84 4 4

1 0 1 0 1 0

8

84 4 4

8

84 4 4

1 0 1 0 1 0

15 1 0

1 0 1 0

15 15 1 0

1 0 1 0

151 0 1 0

8

84 4 4

8

84 4 4

1 0 1 0 1 0

8

84 4 4

8

84 4 4

1 0 1 0 1 0

15 1 0

1 0 1 0

15 15 1 0

1 0 1 0

151 0 1 0

15 151 0 1 0

15 151 0 1 0

151 0 1 0

8

84 4 4

8

84 4 4

1 0 1 0 1 0

8

84 4 4

8

84 4 4

1 0 1 0 1 0

15 1 0

1 0 1 0

15 15 1 0

1 0 1 0

151 0 1 0

8

84 4 4

8

84 4 4

1 0 1 0 1 0

8

84 4 4

8

84 4 4

1 0 1 0 1 0

15 1 0

1 0 1 0

15 15 1 0

1 0 1 0

151 0 1 0

15 151 0 1 0

15 151 0 1 0

151 0 1 0

15 151 0 1 0 16

4 4 6

15 15 9

10 1 0

10 7

15 151 0 1 0 16

15 15 6

15 15 9 17

151 0 1 0

1115

15 158

84 4 4

8

84 4 4

1 0 1 0 1 0

8

84 4 4

8

84 4 4

1 0 1 0 1 0

15 1 0

1 0 1 0

15 15 1 0

1 0 1 0

151 0 1 0

8

84 4 4

8

84 4 4

1 0 1 0 1 0

8

84 4 4

8

84 4 4

1 0 1 0 1 0

15 1 0

1 0 1 0

15 15 1 0

1 0 1 0

151 0 1 0

1 0 1 0

15 15

1 0 1 0

15 15

1 0

1 0 158

84 4 4

8

84 4 4

1 0 1 0 1 0

8

84 4 4

8

84 4 4

1 0 1 0 1 0

15 1 0

1 0 1 0

15 15 1 0

1 0 1 0

151 0 1 0

8

84 4 4

8

84 4 4

1 0 1 0 1 08

84 4 4

8

84 4 4

1 0 1 0 1 0

15 1 0

1 0 1 0

15 15 1 0

1 0 1 0

151 0 1 0

1 0 1 0

15 15

1 0 1 0

15 15

1 0

1 0 151 0 1 0

15 15 164 4 6

15 15 9

1 0 10

7 10

1 0 1 0

15 15 1615 15 6

15 15 9 17

1 0

1 0 15

1115

15 15

15 1 0

1 0 1 0 25 164 4 1 0

15 15 1 0 25 13 1 0 3615 1 0

15 15 1 0 25 168 4

8 41 0

4

8 4

8 41 0 25 13 1 0

13 1 0 8

8 30

15 15 1 0

1 0 1 0 25 16

30 25 17

16 8

8 2015 1 0

15 1 0 25 168 4

8 41 0

8 4

8 41 0 25 17

17 8

8 21

151 0 1 0

1115

15 15

11 7

7 13

15

15 15

14

9

9 9

9 7

6 9

9

9 9

Page 21: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

EXAMPLE (inverse Problem):

Given: electric/magnetic eld at 400 sensor positions on the head surface.What is the current distribution in the brain ? Where are the sources (epileptic

t) ?

PDE: div (x)ru(x) = f(x); x 2 R3, @nu = 0 on @: and (x) determined from EEG,MEG. The boundary value problem has to be

solved for 400 right-hand sides.

Triangulation with

N = 147287 tetraeder conductivity

Page 22: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

- Galerkin discretisation Ax = b

- The system has to be solved for 400 right-hand sides b- Stopping criterion: kAx bk= kbk 108

- Machine: SUNFire, 900 MHz, single processor

Pardisoy LUH; " = 106 PEBBLESz

Setup 237 468 13Solve 2.4 1.0 10Total 1197 868 4013

yPardiso (direct solver by Schenk & Co)zPEBBLES (algebraic multigrid code by Langer/Haase)

Page 23: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Comparisons

0

1000

2000

3000

4000

5000

6000

7000

8000

0 5000 10000 15000 20000 25000 30000

SPAISuperLUc N**5/2

Page 24: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

0

500

1000

1500

2000

2500

3000

0 10000 20000 30000 40000 50000 60000

SuperLUPARDISO

c N**2

Page 25: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

0

5000

10000

15000

20000

25000

0 200000 400000 600000 800000 1e+06

PARDISOc*N**2

DD­H­MatrixC*N*log**4 N

Page 26: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

5 Matrix Equations

Lyapunov: AX +XA> = C

Sylvester AX XB = C

Riccati: AX +XA> XFX = C

Given: A;B;C; F ; desired matrix-valued solution: X:

Applications: optimal control problems for elliptic / parabolic pdes.

Low rank C;F ) low rank X

H-matrix C, low rank F ) H-matrix X

Computation via H-arithmetic, possibly combined with multi-grid methods.

Page 27: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Matrix-Riccati Equation

A>X +XAXFX +G = O (A < O):

LEMMA: The solution X satises

X = (M>M)1M>N;

where hM N

i:= sign

"A> GF A

#!"I OO I

#:

LEMMA: Assume that <e 6= 0 for all eigenvalues 2 (S):Start: S(0) := S: Then the iteration

S(i+1) :=1

2

S(i) +

S(i)

1converges quadratically to sign(S):

Page 28: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Example of a matrix-Riccati equation: A = h (1D)

The following table shows the relative error ~X X

2= kXk2 :

n = 101 256 1024 65 536k = 1 8.810-3 1.510-1 1.310-1 -k = 2 2.410-4 2.610-4 4.210-4 6.710-4k = 4 7.710-8 9.110-8 1.110-7 6.210-7k = 6 1.910-10 3.710-10 2.410-10 1.710-9

Number of iterations 12 14 17 26time [sec] 2.2 8.5 67 18263

*) k=2, Sun Quasar 450 MHz, computation by Dr. L. Grasedyck

In the last case, the matrix X has 4; 294; 967; 296 entries.

Page 29: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

6 Matrix-Valued Functions f(A)

EXAMPLE: Matrix-exponential function etA.

Cauchy-Dunford representation

etA =1

2i

Zezt (zI A)1 dt

using a parabola :

ΩCS

CP

After parametrisation and quadrature:

TN(t) :=NX

`=N `e

`t (z`I A)1 ; z` 2 :

Error estimate for t t0 > 0 : TN(t) etA . ecN2=3:

) N logn: Total cost: O(n log n).

Page 30: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

7 Beyond Hierarchical Matrices:

Tensor Systems as Higher-dimensional Analogue

Tensor space V := V1 V2 : : : Vd:

DEFINITION: A rank-k-tensor is of the form

kX=1

v()1 v

()2 : : : v

()d with v

()j 2 Vj:

QUESTION: Given v 2 V, are there rank-k-approximations ~v ?How can they be computed?

Vi = Rnimi ) denotes the Kronecker product of matrices.

QUESTION: Given M =PkM=1M

()1 M ()

2 : : :M ()d . Under what condi-

tions can the eigenvectors be approximated by rank-k-tensors?

Page 31: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Example from the electronic Schrodinger equation

Hartree-Fock equation F b(y) = b b(y) involves the Hartree potential

VH(x) = 2N=2Xb=1

Z b(y) b(y)

jx yjdy =

Z(y)

jx yjdy; (1)

where (y) = 2PN=2b=1 b(y)

b(y) is the electron density.

Standard approaches use Gaussians g(j)k (yj) = (yj A

(j)k )`k ek(yjA

(j)k )2 to

represent the orbital (wavefunction) by

b(y) K Xk=1

g(1)k (y1) g

(2)k (y2) g

(3)k (y3): (2)

Here, K = tensor rank. We start with a representation (2) produced by the

MOLPRO program package using the MATROP program for matrix operations.

Eq. (2) yields (y) = b(y) b(y) with K := K (K + 1)=2 terms.

Page 32: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Optimising the tensor representation reduces the tensor rank to a much smaller

rank while almost keeping the same order of accuracy:

(y) Xk=1

%(1)k (y1) %

(2)k (y2) %

(3)k (y3); K:

The computational work for evaluating the Hartree potential (1) depends essen-

tially on the tensor rank.

EXAMPLE CH4: The MOLPRO program yields K = 1540; which can be

reduced by our approach to = 45: The computing time for evaluating VH for

the tensor representation with = 45 is 8 hours, while the estimated time for

K = 1540 is 190 hours.

molecule initial rank Kof (y) nal rank relative error error in energy (hartree)

CH4 1540 45 9.0106 6.0105C2H2 2346 50 1.3104 5.0104C2H6 4656 55 8.8105 4.0104

Page 33: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Separable PDE in [0; 1]d, d large

Let = (0; 1)d Rd; equidistant grid: h = (h; 2h; : : : ; nh) with

(n+ 1)h = 1:

Here: n = 1024:

Separable PDE: L =Pd=1 a(xv)

@2

@x2v; e.g., L = :

Discretisation of L by usual dierence formula:

A = Lh = dX

=1

a(xv)Dhxx (Dh

xx : 2nd dierence)

= A1 I : : : I + I A2 : : : I + : : :+ I I : : :Ad:

Goal: Approximation of L1h .

Numerical result (Grasedyck 2004):

For d = 2048; accuracy 105 to 106: 5 min computer time

Related dimension:

N = 10242048 = 1:24 106165:

Page 34: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

Underlying method

1=x can be approximated by exponential sumsPk=1 ! exp(x):

min!;

maxx2[x0;x1]

1x Xk

=1! exp(x)

O(eck); c > 0;

min!;

maxx2[x0;1)

1x Xk

=1! exp(x)

O(eck1=2); c > 0:

Let [x0; x1] or [x0;1) contain the spectrum of Lh: Then

L1h Xk

=1! exp(Lh):

The special tensor structure

Lh =dX

=1

I : : : I Lh; I : : : I

implies

exp(Lh) =dO

=1

exp(Lh;):

Approximation of exp(Lh;) by H-matrices (see above).

Page 35: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

8 Literature etc.

W.H.: A sparse matrix arithmetic based on H-matrices. Part I: Introduction to H-matrices.

Computing, 62:89108, 1999 (Report 98-27, Oct. 1998, Universitat Kiel)

W.H., B.Khoromskij, S.A.Sauter: On H2-matrices. In Lectures on applied mathematics, S.

929. Springer-Verlag, Berlin, 2000 (Munchen, June 1999)

W.H., B.Khoromskij: A sparse H-matrix arithmetic. Part II: Application to multi-dimensional

problems. Computing, 64:2147, 2000

I.P.Gavrilyuk, W.H., B.Khoromskij: H-matrix approximation for the operator exponential with

applications. Numer. Math., 92:83111, 2002.

W.H., S.Borm: Data-sparse approximation by adaptive H2-matrices. Computing, 69:135,

2002.

W.H., L.Grasedyck, S.Borm: An introduction to hierarchical matrices. Math. Bohem., 127:229

241, 2002

M.Bebendorf, W.H.: Existence of H-matrix approximants to the inverse FE-matrix of elliptic

operators with L1-coecients. Numer. Math., 95:128, 2003

Page 36: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

L.Grasedyck, W.H., B.Khoromskij: Solution of large scale algebraic matrix Riccati equations by

use of hierarchical matrices. Computing, 70:121165, 2003

L.Grasedyck, W.H.: Construction and arithmetics ofH-matrices. Computing 70:295334, 2003

L.Grasedyck, W.H., Sabine Le Borne. Adaptive geometrically balanced clustering ofH-matrices.

Computing, 73:123, 2004.

I.P.Gavrilyuk, W.H., B.Khoromskij: Hierarchical tensor-product approximation to the inverse

and related operators for high-dimensional elliptic problems. Computing 74:131157, 2005

W.H., B.Khoromskij, E.E.Tyrtyshnikov: Hierarchical Kronecker tensor-product approximations.

J. Numer. Math. 13:119156, 2005.

W.H., B.Khoromskij, and R.Kriemann: Direct Schur complement method by domain decompo-

sition based on H-matrix approximation. Comput. Vis. Sci., 8:179188, 2005.

W.H., B.Khoromskij: Low-rank Kronecker-product approximation to multi-dimensional nonlocal

operators. Part I. Separable approximation of multi-variate functions. Computing, 76:177-202,

2006 - Part II. HKT representation of certain operators. Computing 76 (2006) 203-225.

L. Banjai, W.H:H- andH2-matrices for low and high frequency Helmholtz equation. To appear

in IMA J. Numer. Anal.

Page 37: Hierarchical Matrices · 2008. 3. 30. · Example: In Analysis the set of functions is immediately restricted to certain subsets of di erent smoothness: L2;C, Cketc. A tool like a

For a complete list see

http://www.mis.mpg.de (!institute reports) or

http://www.mis.mpg.de/scicomp/hackbusch e.html

For scientic purposes a software library is freely available (licence form to be

signed),

for commercial applications: HLibPro