forked from jedbrown/talks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
20120730-CIG.tex
228 lines (193 loc) · 6.76 KB
/
20120730-CIG.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
% \documentclass[handout]{beamer}
\documentclass{beamer}
\mode<presentation>
{
\usetheme{default}
\usefonttheme[onlymath]{serif}
% \usetheme{Singapore}
% \usetheme{Warsaw}
% \usetheme{Malmoe}
% \useinnertheme{circles}
% \useoutertheme{infolines}
% \useinnertheme{rounded}
\setbeamercovered{transparent=100}
}
\usepackage[english]{babel}
\usepackage[latin1]{inputenc}
\usepackage{alltt,listings,multirow,ulem,siunitx}
\usepackage[absolute,overlay]{textpos}
\TPGrid{1}{1}
\usepackage{pdfpages}
\usepackage{multimedia}
\newcommand\hmmax{0}
\newcommand\bmmax{0}
\usepackage{bm}
% font definitions, try \usepackage{ae} instead of the following
% three lines if you don't like this look
\usepackage{mathptmx}
\usepackage[scaled=.90]{helvet}
% \usepackage{courier}
\usepackage[T1]{fontenc}
\usepackage{tikz}
\usetikzlibrary[shapes,shapes.arrows,arrows,shapes.misc,fit,positioning,trees,mindmap,backgrounds]
% \usepackage{pgfpages}
% \pgfpagesuselayout{4 on 1}[a4paper,landscape,border shrink=5mm]
\usepackage{JedMacros}
\title{Multilevel Stokes flow solvers}
\subtitle{Adapting to heterogeneity and rheology}
\author{{\bf Jed Brown}}
% - Use the \inst command only if there are several affiliations.
% - Keep it simple, no one is interested in your street address.
\institute
{
{Mathematics and Computer Science Division, Argonne National Laboratory} \\
}
\date{CIG Mantle/Lithosphere 2012-07-30}
% This is only inserted into the PDF information catalog. Can be left
% out.
\subject{Talks}
% If you have a file called "university-logo-filename.xxx", where xxx
% is a graphic format that can be processed by latex or pdflatex,
% resp., then you can add a logo as follows:
% \pgfdeclareimage[height=0.5cm]{university-logo}{university-logo-filename}
% \logo{\pgfuseimage{university-logo}}
% Delete this, if you do not want the table of contents to pop up at
% the beginning of each subsection:
% \AtBeginSubsection[]
% {
% \begin{frame}<beamer>
% \frametitle{Outline}
% \tableofcontents[currentsection,currentsubsection]
% \end{frame}
% }
\AtBeginSection[]
{
\begin{frame}<beamer>
\frametitle{Outline}
\tableofcontents[currentsection]
\end{frame}
}
% If you wish to uncover everything in a step-wise fashion, uncomment
% the following command:
% \beamerdefaultoverlayspecification{<+->}
\begin{document}
\lstset{language=C}
\normalem
\begin{frame}
\titlepage
\end{frame}
\begin{frame}{Intent of this talk}
\begin{itemize}
\item observation: solver scalability is the bottleneck at scale
\item ``black box'' solvers are not sustainable
\begin{itemize}
\item optimal solvers must accurately handle all scales
\item optimality is crucial for large-scale problems
\item hardware puts up a spirited fight to abstraction
\end{itemize}
\item introduce multilevel solver concepts
\item outline ingredients that discretizations can provide to solvers
\item discuss algorithmic trade-offs
\item current state of solver software and what we are working on
\end{itemize}
\end{frame}
\begin{frame}{Outline}
\tableofcontents
\end{frame}
\section{Introduction}
\begin{frame}
\includegraphics[width=1.05\textwidth]{figures/KeyesAllAboutAlgorithms}
\end{frame}
\begin{frame}{Challenges for elliptic solvers}
\begin{itemize}
\item multiscale material coefficients
\begin{itemize}
\item long, thin high viscosity: transmit stresses long distances
\item ``jelly sandwich'': release long-range stresses locally
\end{itemize}
\item nonlinearity
\begin{itemize}
\item plasticity: creates ``jelly sandwich''
\item Newton linearization produces local anisotropy
\item heating: localization
\item coupling to other physical processes
\end{itemize}
\item multilevel methods
\begin{itemize}
\item need accurate coarse grids
\item need effective smoothers
\end{itemize}
\end{itemize}
\end{frame}
\begin{frame}{Multigrid separates scales, feedback between scales}
\includegraphics[width=\textwidth]{figures/YangAMGSummary} \\
\end{frame}
\input{slides/MonolithicOrSplit.tex}
\section{Multiscale Toolbox}
\input{slides/MG/ThreeSchools.tex}
\subsection{Coarse grids}
\input{slides/MG/CoarseGridComputableConvergenceMeasures.tex}
\input{slides/MG/CompatibleRelaxation.tex}
\input{slides/MG/CoarseBasisFunctionsOverview.tex}
\input{slides/MG/BDDCCoarseBasisFunctions.tex}
\input{slides/MG/CoarseGridWhyILikeSubdomainProblems.tex}
\input{slides/MG/CoarseGridComplicationForSaddlePoint.tex}
\subsection{Smoothing}
\input{slides/MG/SmoothingNonlinearProblems.tex}
\input{slides/MG/SmoothingSaddlePoint.tex}
\input{slides/MG/VankaBlockSmoothers.tex}
\input{slides/PETSc/DistributiveSmoothing.tex}
\input{slides/Stokes/CoupledMGOptions.tex}
\section{Software and performance}
\subsection{Coupling software}
\input{slides/PETSc/Coupling.tex}
\input{slides/FieldSplit.tex}
\input{slides/PETSc/LocalSpaces.tex}
\input{slides/SNES/MultiphysicsAssemblyJacobians.tex}
% \input{slides/PETSc/MatGetLocalSubMatrix.tex}
% \input{slides/Stokes/OptionsTour.tex}
% \input{slides/SNES/MonolithicFASMultistage.tex}
% \input{slides/SNES/NonlinearSolversList.tex}
\input{slides/SNES/QuasiNewtonRevisited.tex}
% \input{slides/DrunkenSeaman.tex}
% \setbeamertemplate{background canvas}{}
% \includepdf[pages=1-3]{davemay.pdf}
% \input{slides/VHTEquationsSimple.tex}
% \input{slides/VHTSolvers.tex}
% %\input{slides/VHTSolverOptions.tex}
\subsection{Performance considerations}
\input{slides/Dohp/TensorVsAssembly.tex}
\begin{frame}{Coarse levels may not be cheaper than fine levels}
\begin{center}
\includegraphics[width=0.6\textwidth]{figures/YangAMGLevelCost} \\
{\scriptsize [Gahvari, Schulz, Yang, Jordan, Gropp 2011]}
\end{center}
\begin{itemize}
\item latency for longer-range communication outweighs smaller data
\item very aggressive coarsening important to limit number of levels
\item alternatives: additive multigrid, redundant coarse grids
\end{itemize}
\end{frame}
\begin{frame}{Multilevel Solvers are a \emph{Way of Life}}
\begin{itemize}
\item ingredients that discretizations can provide
\begin{itemize}
\item identify ``fields''
\item topological coarsening, possibly for fields
\item near-null space information
\item ``natural'' subdomains
\item subdomain integration, face integration
\item element or subdomain assembly/matrix-free smoothing
\end{itemize}
\item solver composition
\begin{itemize}
\item most splitting methods accessible from command line
\item energy optimization for tentative coarse basis functions
\item algebraic form of distributive relaxation
\item generic assembly for large systems and components
\item working on flexibile ``library-assisted'' nonlinear multigrid
\item adding support for interactive eigenanalysis
\end{itemize}
\end{itemize}
\end{frame}
\end{document}