forked from ChrisCummins/phd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathms.tex
111 lines (91 loc) Β· 2.73 KB
/
ms.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
% Force arXiv to process with pdflatex.
\pdfoutput=1
% Support alternating row colours in tables. Normal usage is to
% include the xcolor package with option `table', but the xcolor
% package is already getting pulled in from somewhere else which
% causes builds to fail with a package options conflict.
%
% See: http://tex.stackexchange.com/a/5375
%
\PassOptionsToPackage{table}{xcolor}
\documentclass{article}
\usepackage{arxiv}
\usepackage[utf8]{inputenc} % allow utf-8 input
\usepackage[T1]{fontenc} % use 8-bit T1 fonts
\rhead{\textsc{ProGraML}: Graph-based Deep Learning for Program Optimization and Analysis}
% Maths.
\usepackage{bm}
\usepackage{amsfonts}
\usepackage{amsmath}
% Tables.
\usepackage{booktabs}
\usepackage{tabularx}
\usepackage{hhline}
\usepackage{xspace}
\usepackage[table]{xcolor}
\usepackage{multirow}
\usepackage{subcaption}
% Define column types L, C, R with known text justification and fixed widths:
\usepackage{array}
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
% \usepackage{subfig}
% Reset footnote counter on every page.
\usepackage{perpage}
\MakePerPage{footnote}
% Add \cmark and \xmark for check and cross symbols, respectively.
\usepackage{amssymb}
\usepackage{pifont}
\newcommand{\cmark}{\ding{51}}%
\newcommand{\xmark}{\ding{55}}%
% Images
\usepackage{graphicx}
\newcommand\todo[2]{\textcolor{red}{\footnotesize \emph{TODO(#1): #2}}}
\newcommand{\bigo}{\mathcal{O}}
\newcommand{\ourproject}{ML4PL}
\usepackage{dsfont}
\title{ProGraML: Graph-based Deep Learning for\\Program Optimization and Analysis}
\author{%
Chris Cummins\thanks{Both authors contributed equally}\\
School of Informatics \\
University of Edinburgh \\
\texttt{[email protected]} \\
\And
Zacharias V. Fisches\textsuperscript{*}\\
Department of Computer Science \\
ETH Zurich \\
\texttt{[email protected]} \\
\And
Tal Ben-Nun \\
Department of Computer Science \\
ETH Zurich \\
\texttt{[email protected]} \\
\And
Torsten Hoefler \\
Department of Computer Science \\
ETH Zurich \\
\texttt{[email protected]} \\
\And
Hugh Leather \\
School of Informatics \\
University of Edinburgh \\
\texttt{[email protected]} \\
}
\begin{document}
\maketitle
\begin{abstract}
\input{abstract}
\end{abstract}
\input{sections/introduction}
\input{sections/motivation}
\input{sections/representation}
\input{sections/machine_learning}
\input{sections/methodology}
\input{sections/evaluation}
\input{sections/related_work}
\input{sections/conclusion}
\bibliographystyle{unsrt}
\bibliography{refs}
\end{document}
\endinput