forked from jedbrown/talks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
20100521-NOTUR.tex
156 lines (124 loc) · 4.24 KB
/
20100521-NOTUR.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
%\documentclass[handout]{beamer}
\documentclass{beamer}
\mode<presentation>
{
%\usetheme{Singapore}
%\usetheme{Warsaw}
\usetheme{Malmoe}
\useinnertheme{circles}
\useoutertheme{infolines}
% \useinnertheme{rounded}
\setbeamercovered{transparent}
}
\usepackage[english]{babel}
\usepackage[latin1]{inputenc}
\usepackage{bm,textpos,alltt,listings,multirow,ulem}
% 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.arrows,arrows,shapes.misc]
% \usepackage{pgfpages}
% \pgfpagesuselayout{4 on 1}[a4paper,landscape,border shrink=5mm]
\input{JedMacros.tex}
\title[PETSc]{The Portable Extensible Toolkit for Scientific computing}
\subtitle{New developments, memory performance, and algorithmic experimentation}
\author{Jed Brown}
% - Use the \inst command only if there are several affiliations.
% - Keep it simple, no one is interested in your street address.
\institute[ETH Z\"urich]
{
Laboratory of Hydrology, Hydraulics, and Glaciology \\
ETH Zürich
}
\date{NOTUR 2010-05-21, Bergen}
% 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}
% }
% 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}
\frametitle{Outline}
\tableofcontents
% You might wish to add the option [pausesections]
\end{frame}
\section{Introduction}
\input{slides/PETSc/About.tex}
\input{slides/PETSc/Timeline.tex}
\section[Memory]{Memory performance for sparse kernels}
\input{slides/JFNKBottlenecks.tex}
\input{slides/CPUArchitecture.tex}
\input{slides/HardwareCapability.tex}
%\input{OlikerSpMVOptimization.tex}
\subsection{Sparse Matrix-Vector products}
\input{slides/SpMVPerformanceModel.tex}
\input{slides/StreamTriad-XT5-BGP.tex}
\input{slides/OptimizingSpMV.tex}
\input{slides/OptimizingSpMVUnassembled.tex}
\subsection{Triangular solves}
\input{slides/StoringFactors.tex}
\input{slides/FactorImprovement.tex}
\section{Time Integration}
\subsection{Differential Algebraic Equations}
\input{slides/StiffIntegrators.tex}
\input{slides/StiffBarriers.tex}
\input{slides/DAEIRKS.tex}
\subsection{Strong stability preserving methods}
\input{slides/SSPIntegrators.tex}
\section{Preconditioning using splitting methods}
\input{slides/FieldSplit.tex}
\input{slides/SplittingStrongCoupling.tex}
\section{Hydrostatic Ice}
\input{slides/THI/Equations.tex}
\input{slides/THI/X5kmClip.tex}
\input{slides/THI/WhatAboutSplitting.tex}
\input{slides/ThoughtsOnMultigrid.tex}
\begin{frame}{Wrap-up}
\begin{itemize}
\item PETSc can help you
\begin{itemize}
\item easily construct a code to experiment with ideas
\item scale an existing code base
\item incorporate more scalable or higher performance algorithms
\item attain high performance on a variety of architectures
\item debug and profile a parallel application (not discussed today)
\item package and distribute your code (e.g. graph algorithms, \\
domain decomposition and multilevel solvers), \code{-{}-download-xxx}
\end{itemize}
\item I will be around most of today, find me to discuss
\begin{itemize}
\item new and old features in PETSc
\item performance, scalability, and algorithms
\item design of new codes
\item integration with your existing application
\end{itemize}
\item \url{http://mcs.anl.gov/petsc}
\item \url{[email protected]} and \url{[email protected]}
\item \url{[email protected]}
\end{itemize}
\end{frame}
\end{document}