-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMainDocument.tex
executable file
·69 lines (56 loc) · 1.63 KB
/
MainDocument.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
\documentclass[oneside,11pt]{article}
\usepackage{blindtext, fancyhdr, newfloat, caption, graphicx}
\usepackage{authblk}
\usepackage[margin=1in, headheight=1cm]{geometry}
\usepackage{listings}
\usepackage{fancyvrb}
\usepackage{xcolor,colortbl}
\usepackage{verbatim}
\lstset{
language=C++,
basicstyle=\small\bfseries,
%numberstyle=,
stepnumber=1,
numbersep=5pt,
showspaces=false,
showstringspaces=false,
showtabs=false,
frame=none,
tabsize=2,
%captionpos=b,
breaklines=true,
breakatwhitespace=false,
escapeinside={\%*}{*)}
}
\lstset{morekeywords={pragma, omp, target, device, data, end, declare
teams,num\_teams,thread\_limit,map,to,map,from,tofrom,
parallel},emphstyle={\bfseries}}
% Example environment.
\DeclareFloatingEnvironment[placement={!ht},name=Example]{example}
\pagestyle{fancy}
\fancyhead[RO]{\slshape \rightmark}
\fancyhead[LO]{\slshape \leftmark \\~ }
\fancyfoot[C]{\thepage}
\title{\textbf{OpenMP offload infrastructure in LLVM}}
\author{
Samuel Antao (IBM),
Carlo Bertolli (IBM),
Andrey Bokhanko (Intel),
Alexandre Eichenberger (IBM),
Hal Finkel (Argonne National Laboratory),
Sergey Ostanevich (Intel),
Eric Stotzer (Texas Instruments),
Guansong Zhang (AMD)
}
\begin{document}\thispagestyle{empty}
\maketitle
% Definitions used in the document, e.g. directives, code snippets.
\input{Definitions.tex}
\input{OpenMPOffloadingOverview}
\input{GoalOfDesign}
\input{ModelOfUse}
\input{GenerationOfFatBinaries}
\input{NativeRuntime}
\input{LibomptargetInterface}
\input{DeviceRTLInterface}
\end{document}