source: trunk/anuga_documentation/parallel_doc/report.tex @ 9734

Last change on this file since 9734 was 8599, checked in by steve, 12 years ago

Updating changes in windows

File size: 2.5 KB
Line 
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2% Format taken from anuga_user_manual.tex
3%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4
5
6% Complete documentation on the extended LaTeX markup used for Python
7% documentation is available in ``Documenting Python'', which is part
8% of the standard documentation for Python.  It may be found online
9% at:
10%
11%     http://www.python.org/doc/current/doc/doc.html
12
13
14%labels
15%Sections and subsections \label{sec: }
16%Chapters \label{ch: }
17%Equations \label{eq: }
18%Figures \label{fig: }
19
20\documentclass{manual}
21
22%\usepackage{url} %Already defined in manual
23\usepackage{graphicx}
24%\usepackage{epstopdf}
25
26%\input{definitions}
27
28\title{Report on the Parallelisation of ANUGA}
29\author{Linda Stals and Jack Kelly}
30
31% Please at least include a long-lived email address;
32% the rest is at your discretion.
33\authoraddress{Linda Stals \\
34  Email: \email{stals@maths.anu.edu.au}}
35
36%Draft date
37\def\today{2008}
38\date{\today}   % update before release!
39                % Use an explicit date so that reformatting
40                % doesn't cause a new date to be used.  Setting
41                % the date to \today can be used during draft
42                % stages to make it easier to handle versions.
43
44\release{1.0}   % release version; this is used to define the
45                % \version macro
46
47\makeindex          % tell \index to actually write the .idx file
48\makemodindex       % If this contains a lot of module sections.
49
50\setcounter{tocdepth}{3}
51\setcounter{secnumdepth}{3}
52
53%\includeonly{parallel}
54
55\begin{document}
56\maketitle
57
58\begin{abstract}
59This document describes work done by the authors as part of a
60consultancy with GA during 2005-2006. The paper serves as both a
61report for GA and a user manual.
62
63The report contains a description of how the code was parallelised
64and it lists efficiency results for a few example runs. It also
65gives some examples codes showing how to run the Merimbula test
66problem in parallel and talks about more technical aspects such as
67compilation issues and batch scripts for submitting compute jobs on
68parallel machines.
69\end{abstract}
70
71\tableofcontents
72
73
74
75\include{parallel}
76\include{results}
77\include{code}
78
79\begin{thebibliography}{10}
80
81\bibitem{gk:metis}
82George Karypis and Vipin Kumar.
83\newblock A fast and high quality multilevel scheme for partitioning irregular graphs.
84\newblock {\em SIAM Journal on Scientific Computing}, 20(1):359--392, 1999.
85\newblock \url{http://glaros.dtc.umn.edu/gkhome/fetch/papers/mlSIAMSC99.pdf}
86\end{thebibliography}
87
88
89\end{document}
Note: See TracBrowser for help on using the repository browser.