Skip to content

Commit e5d6293

Browse files
committed
Version 2.000
1 parent 77141fb commit e5d6293

27 files changed

+3162
-893
lines changed

Makefile

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
DOC_NAME=ompd-tr
2+
FILE_NAME=$(DOC_NAME).tex
3+
4+
default: all
5+
6+
withnotes: FILE_NAME:='\newcommand{\withnotes}{}\input{$(DOC_NAME).tex}'
7+
withnotes: all
8+
9+
all:
10+
pdflatex $(FILE_NAME)
11+
bibtex $(DOC_NAME)
12+
pdflatex $(FILE_NAME)
13+
pdflatex $(FILE_NAME)
14+
15+
dist-clean: clean
16+
rm -f $(DOC_NAME).pdf
17+
18+
clean:
19+
rm -f $(DOC_NAME).aux
20+
rm -f $(DOC_NAME).bbl
21+
rm -f $(DOC_NAME).blg
22+
rm -f $(DOC_NAME).dvi
23+
rm -f $(DOC_NAME).log
24+
rm -f $(DOC_NAME).out
25+
rm -f $(DOC_NAME).ps
26+
rm -f $(DOC_NAME).cb2
27+
rm -f $(DOC_NAME).cb
28+
rm -f $(DOC_NAME).toc
29+
rm -f comment.cut
30+
rm -f *~

README.md

+34-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
1-
# OMPD-Technical-Report
1+
# OMPD Technical Report
22
OMPD Debugging Interface Technical Report
33

44
This repository contains the working draft of a technical report defining
5-
OMPD: An Application Programming Interface for a Debugger Support Library for OpenMP
5+
OMPD: An Application Programming Interface for a Debugger Support Library for
6+
OpenMP.
7+
8+
How to build
9+
------------
10+
11+
To build the standard version of the document:
12+
13+
$ make
14+
15+
To build the document with comments:
16+
17+
$ make withnotes
18+
19+
The ompd-tr.pdf file will contain the OMPD technical report, and the
20+
ompd-tr-comments.pdf file will contain the report with comments.
21+
22+
Adding comments
23+
---------------
24+
25+
To add a comment to the document, please use the `notes` environment in latex:
26+
27+
\begin{notes}
28+
[Your name]: your comment...
29+
\end{notes}
30+
31+
Version control
32+
---------------
33+
34+
Please ensure that the current version number appears in the first page by
35+
modifying the "version" file. The first draft of the document will be 2.000.
36+
Subsequent drafts will have an increase of "0.001" in the version number, e.g.,
37+
0.001, 0.002, ..., 0.010.

figures/ompd-concepts.docx

2.07 MB
Binary file not shown.

figures/ompd-concepts.pdf

221 KB
Binary file not shown.

ompd-tr-comments.pdf

666 KB
Binary file not shown.

ompd-tr.bib

+37
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,41 @@ @inproceedings{Jost:2005:AND:1892830.1892858
109109
address = {Berlin, Heidelberg},
110110
}
111111

112+
@techreport{ompt-tr2,
113+
author = {
114+
Alexandre Eichenberger and John Mellor-Crummey and
115+
Martin Schulz and Nawal Copty and Jim Cownie and
116+
Robert Dietrich and Xu Liu and Eugene Loh and Daniel Lorenz and
117+
{other members of the OpenMP Tools Working Group}},
118+
title =
119+
"{OMPT}: An {OpenMP} Tools Application Programming Interface for
120+
Performance Analysis",
121+
institution = "The OpenMP Architecture Review Board",
122+
year = 2014,
123+
month = "March",
124+
number = "TR2"
125+
}
126+
127+
@manual{OpenMP,
128+
title = "{OpenMP} Application Program Interface",
129+
organization = "{OpenMP} Architecture Review Board",
130+
edition = "Version 4.0",
131+
month = "July",
132+
year = 2013
133+
}
134+
135+
@techreport{ompt-ompd:tr,
136+
author = {
137+
Alexandre Eichenberger and John Mellor-Crummey and
138+
Martin Schulz and Nawal Copty and John DelSignore and
139+
Robert Dietrich and Xu Liu and Eugene Loh and Daniel Lorenz and
140+
{other members of the OpenMP Tools Working Group}},
141+
title =
142+
"{OMPT} and {OMPD}: {OpenMP} Tools Application Programming Interfaces for
143+
Performance Analysis and Debugging",
144+
institution = "The OpenMP Architecture Review Board",
145+
year = 2013,
146+
month = "April",
147+
note = "(This document was superseded by TR2~\cite{ompt-tr2})"
148+
}
112149

ompd-tr.pdf

618 KB
Binary file not shown.

0 commit comments

Comments
 (0)