forked from openmichigan/PSNM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ParallelNumericalMethods.tex
executable file
·97 lines (83 loc) · 2.64 KB
/
ParallelNumericalMethods.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
\documentclass[12pt]{report}
\usepackage{bm,amsmath,amsthm,amssymb,graphicx,listings,hyperref}
\usepackage{fullpage}
\usepackage{ccicons,xmpincl}
\usepackage[usenames,dvipsnames]{color}
\usepackage{mcode}
\newtheorem{theorem}{Theorem}[section]
\newtheorem{lemma}{Lemma}[section]
\newtheorem{corollary}{Corollary}[section]
\newtheorem{definition}{Definition}[section]
\newtheorem{proposition}{Proposition}[section]
\newtheorem{conjecture}{Conjecture}[section]
\newtheorem{remark}{Remark}[section]
\newtheorem{example}{Example}[section]
%% \setlength{\hoffset}{0cm}
%% \setlength{\marginparwidth}{0cm}
%% \setlength{\textwidth}{6.5in}
\definecolor{lightpurple}{rgb}{0.8,0.8,1}
\definecolor{gray}{rgb}{0.8,0.8,0.8}
\lstset{
showstringspaces=false,
numbers=left,
stepnumber=1,
numbersep=5pt,
numberstyle=\tiny\color{black},
showtabs=false,
tabsize=2,
captionpos=t,
basicstyle=\footnotesize\ttfamily,
breaklines=true,
backgroundcolor=\color{white},
frame=lines,
rulesepcolor=\color{gray}
}
\lstdefinestyle{matlab_style}{
%% backgroundcolor=\color{gray}
}
\lstdefinestyle{fortran_style}{
%% backgroundcolor=\color{gray}
}
\lstdefinestyle{make_style}{
backgroundcolor=\color{gray}
}
\lstdefinestyle{bash_style}{
backgroundcolor=\color{gray}
}
\lstdefinestyle{python_style}{
%% backgroundcolor=\color{gray}
}
\title{Parallel Spectral Numerical Methods}
\author{Gong Chen, Brandon Cloutier, Ning Li, Benson K. Muite and Paul Rigge \\ with contributions from\\ Sudarshan Balakrishnan, Andre Souza and Jeremy West}
\begin{document}
\maketitle
\tableofcontents
\newpage
\phantomsection \label{listoffig}
\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures
\newpage
\phantomsection \label{listoflistings}
\addcontentsline{toc}{chapter}{Program Listings}
\lstlistoflistings
\input{./License/License}
\input{./Acknowledgements/Acknowledgements}
\input{./Overview/Overview}
\input{./FinitePrecisionArithmetic/FinitePrecisionArithmetic}
\input{./SeparationOfVariables/SeparationOfVariables}
\input{./MotivationForNumericalMethods/MotivationForNumericalMethods}
\input{./Timestepping/Timestepping}
\input{./1dDFT/1dDFT}
\input{./FindingDerivatives/FindingDerivatives}
\input{./ExamplesInMatlab/ExamplesInMatlab}
\input{./NonlinearOdeAndIteration/NonlinearOdeAndIteration}
\input{./FortranPrograms/FortranPrograms}
\input{./IntroductionToParallelProgramming/IntroductionToParallelProgramming}
\input{./CubicNonlinearSchrodinger/CubicNonlinearSchrodinger}
\input{./NavierStokes/NavierStokes}
\input{./KleinGordon/KleinGordon}
\input{./bibliography/bibliography}
\appendix
\input{./SingleGPU/SingleGPU.tex}
\input{./PythonPrograms/PythonPrograms}
\end{document}