Skip to content

Commit 34c0ac2

Browse files
committed
Added reduction types
1 parent 03a8cf9 commit 34c0ac2

File tree

4 files changed

+777
-9
lines changed

4 files changed

+777
-9
lines changed

cplexts.tex

+12-7
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,19 @@
4646
% These parameters, and the documentclass options,
4747
% are about document identification and overall formatting.
4848
\newcommand{\cplexts}{$CPLEXTS$}
49-
\renewcommand{\extrahead}{N1862}
49+
\renewcommand{\extrahead}{2015-07-13}
5050
\standard{\cplexts}
51-
\yearofedition{2016}
51+
\yearofedition{2017}
5252
\languageofedition{(E)}
5353

54+
%\includeonly{reduction}
55+
5456
\begin{document}
5557

5658
\begin{cover}
5759
\begin{tabular}{l l}
58-
\textbf{Doc. no:} & N1862 \\
59-
\textbf{Date:} & 2014-09-18 \\
60+
% \textbf{Doc. no:} & \\
61+
\textbf{Date:} & 2015-07-10 \\
6062
\textbf{Reply to:} & Clark Nelson
6163
\end{tabular}
6264

@@ -66,8 +68,7 @@
6668
Extensions for parallel programming
6769
}
6870

69-
This is the latest working draft of the CPLEX study group,
70-
for the consideration of WG14.
71+
This is the latest working draft of the CPLEX study group.
7172
\clearpage
7273
\end{cover}
7374

@@ -107,7 +108,7 @@
107108
\normrefbp{technical specification}
108109
\begin{nreferences}
109110
\isref{ISO/IEC 9899:2011(E)}{Programming languages --- C}
110-
\disref{ISO/IEC 14882:2014(E)}{Programming languages --- C++}
111+
\isref{ISO/IEC 14882:2014(E)}{Programming languages --- C++}
111112
\end{nreferences}
112113

113114
\include{definitions}
@@ -160,6 +161,8 @@
160161

161162
\include{spawning}
162163

164+
\include{reduction}
165+
163166
\include{loopparameter}
164167

165168
%\%include{samples}
@@ -175,5 +178,7 @@
175178
\isourl{http://www.openmp.org/mp-documents/OpenMP4.0.0.pdf}
176179
\end{references}
177180

181+
% we definitely want a multi-column index, but we don't get one by default
182+
\twocolumn % even adding this doesn't get the job done
178183
\printindex
179184
\end{document}

loopparameter.tex

+4-2
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@
147147
\ssclause*{Synopsis}
148148
\begin{ttfamily}
149149
\#include <cplex.h>\\
150-
void \pfxdefn{set_schedule_kind}(\pfx{loop_params_t} *hints, \pfx{sched_kind_t} kind);\\
150+
void \pfxdefn{set_schedule_kind}(\pfx{loop_params_t} *hints,\\
151+
\hspace*{2.5in}\pfx{sched_kind_t} kind);\\
151152
\pfx{sched_kind_t} \pfx{get_schedule_kind}(\pfx{loop_params_t} *hints);
152153
\end{ttfamily}
153154

@@ -173,7 +174,8 @@
173174
\ssclause*{Synopsis}
174175
\begin{ttfamily}
175176
\#include <cplex.h>\\
176-
void \pfxdefn{set_workload_balance}(\pfx{loop_params_t} *hints, \pfx{workload_t} kind);\\
177+
void \pfxdefn{set_workload_balance}(\pfx{loop_params_t} *hints,\\
178+
\hspace*{2.5in}\pfx{workload_t} kind);\\
177179
\pfx{workload_t} \pfx{get_workload_balance}(\pfx{loop_params_t} *hints);
178180
\end{ttfamily}
179181

0 commit comments

Comments
 (0)