-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtemplate.tex
More file actions
116 lines (101 loc) · 4.13 KB
/
template.tex
File metadata and controls
116 lines (101 loc) · 4.13 KB
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
\documentclass[twocolumn]{article}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage[a4paper, margin=0.79in]{geometry}
\usepackage{lastpage}
\usepackage[compact]{titlesec}
\titleformat{\section}[hang]{\bfseries\large}{\thesection}{0.5em}{}
\titleformat{\subsection}[hang]{\bfseries\normalsize}{\thesubsection}{0.5em}{}
\titleformat{\subsubsection}[runin]{\bfseries\normalsize}{\thesubsubsection}{0.5em}{}
\title{\large{\textbf{ACS Lab 1 - Matrix Multiplication}}}
\author{
\small Ronald Chevalier (student nr, netid)
\and \small Lonnie Donaho (student nr, netid)
\and \small Another Name (student nr, netid)
}
\date{}
\begin{document}
\maketitle
\begin{center}
\footnotesize{Report contains \pageref{LastPage} of maximum 4 pages.}
\end{center}
\section{Introduction}
Briefly describe what you are going to show in this report, which benchmarks.
\section{Experimental setup}
Briefly describe the systems you have benchmarked on, and by which methods you have measured.
\section{Vector inner product}
\subsection{Description}
Briefly describe this benchmark.
\subsection{Profile}
Briefly describe and show graphs of the performance of your baseline implementation.
\subsection{Discussion}
Briefly discuss / conclude peculiarities about this benchmark.
\section{Matrix multiplication}
\subsection{Description}
Briefly describe this benchmark.
\subsection{Estimation}
Briefly describe an estimation about the performance of matrix multiplication w.r.t. the vector baseline benchmark.
\subsection{Profile}
Briefly describe and show graphs of the performance of your baseline implementation.
\subsection{Discussion}
Briefly discuss / conclude peculiarities about this benchmark.
\section{SIMD extensions}
\subsection{Description}
Briefly describe this benchmark.
\subsection{Profile}
Briefly describe and show graphs of the performance of your baseline implementation.
\subsection{Estimation}
Briefly describe what improvements you can make based on the profile, and how much benefit it will give (in terms of e.g. speedup, throughput).
\subsection{Design and implementation}
Briefly describe all discrete improvements that you've made.
\subsubsection{Improvement X}
Your description goes here.
\subsubsection{Improvement Y}
\subsection{Results after improvement}
Briefly show the results after improvements.
\subsubsection{Results after improvement X}
\subsubsection{Results after improvement Y}
\subsection{Discussion}
Briefly discuss / conclude your work on this benchmark.
\section{OpenMP}
\subsection{Description}
Briefly describe this benchmark.
\subsection{Profile}
Briefly describe and show graphs of the performance of your baseline implementation.
\subsection{Estimation}
Briefly describe what improvements you can make based on the profile, and how much benefit it will give (in terms of e.g. speedup, throughput).
\subsection{Design and implementation}
Briefly describe all discrete improvements that you've made.
\subsubsection{Improvement X}
\subsubsection{Improvement Y}
\subsection{Results after improvement}
Briefly show the results after improvements.
\subsubsection{Results after improvement X}
\subsubsection{Results after improvement Y}
\subsection{Discussion}
Briefly discuss / conclude your work on this benchmark.
\section{OpenCL}
\subsection{Description}
Briefly describe this benchmark.
\subsection{Profile}
Briefly describe and show graphs of the performance of your baseline implementation.
\subsection{Estimation}
Briefly describe what improvements you can make based on the profile, and how much benefit it will give (in terms of e.g. speedup, throughput).
\subsection{Design and implementation}
Briefly describe all discrete improvements that you've made.
\subsubsection{Improvement X}
\subsubsection{Improvement Y}
\subsection{Results after improvement}
Briefly show the results after improvements.
\subsubsection{Results after improvement X}
\subsubsection{Results after improvement Y}
\subsection{Discussion}
Briefly discuss / conclude your work on this benchmark.
\section{Conclusion}
\begin{thebibliography}{}
\bibitem{SomeReference}
Some Author
\textit{Some Title}
Some Information about how to find this reference.
\end{thebibliography}
\end{document}