Skip to content

Commit 24f7ffb

Browse files
committedApr 5, 2021
Update docs
1 parent 3a9e551 commit 24f7ffb

File tree

5 files changed

+126
-29
lines changed

5 files changed

+126
-29
lines changed
 

‎CHANGES.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Changes
2+
3+
## 1.0.1
4+
- Remove intel- prefix from headers and library name
5+
- Fix CMake variables from 3rd party libraries from leaking
6+
- Fix warnings when HEXL_DEBUG=ON

‎docs/doxygen/html/index.html

+30-8
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ <h1><a class="anchor" id="autotoc_md1"></a>
9090
<li><a href="#benchmarking-intel-hexl">Benchmarking Intel HEXL</a></li>
9191
<li><a href="#using-intel-hexl">Using Intel HEXL</a></li>
9292
<li><a href="#debugging">Debugging</a></li>
93-
<li><a href="#thread-safety">Thread-safety</a></li>
93+
<li><a href="#threading">Threading</a></li>
9494
</ul>
9595
</li>
9696
<li><a href="#documentation">Documentation</a><ul>
@@ -100,6 +100,11 @@ <h1><a class="anchor" id="autotoc_md1"></a>
100100
</li>
101101
<li><a href="#contributing">Contributing</a><ul>
102102
<li><a href="#repository-layout">Repository layout</a></li>
103+
<li><a href="#intel-hexl-publication">Intel HEXL Publication</a></li>
104+
<li><a href="#citing-intel-hexl">Citing Intel HEXL</a><ul>
105+
<li><a href="#version-10">Version 1.0</a></li>
106+
</ul>
107+
</li>
103108
</ul>
104109
</li>
105110
</ul>
@@ -160,6 +165,8 @@ <h2><a class="anchor" id="autotoc_md5"></a>
160165
<td class="markdownTableBodyNone">HEXL_SHARED_LIB </td><td class="markdownTableBodyNone">ON / OFF (default OFF) </td><td class="markdownTableBodyNone">Set to ON to enable building shared library </td></tr>
161166
<tr class="markdownTableRowEven">
162167
<td class="markdownTableBodyNone">HEXL_TESTING </td><td class="markdownTableBodyNone">ON / OFF (default ON) </td><td class="markdownTableBodyNone">Set to ON to enable building of unit-tests </td></tr>
168+
<tr class="markdownTableRowOdd">
169+
<td class="markdownTableBodyNone">HEXL_TREAT_WARNING_AS_ERROR </td><td class="markdownTableBodyNone">ON / OFF (default OFF) </td><td class="markdownTableBodyNone">Set to ON to treat all warnings as error </td></tr>
163170
</table>
164171
<h2><a class="anchor" id="autotoc_md6"></a>
165172
Compiling Intel HEXL</h2>
@@ -186,19 +193,19 @@ <h1><a class="anchor" id="autotoc_md10"></a>
186193
<p>For optimal performance, Intel HEXL does not perform input validation. In many cases the time required for the validation would be longer than the execution of the function itself. To debug Intel HEXL, configure and build Intel HEXL with <code>-DHEXL_DEBUG=ON</code> (see <a href="#compile-time-options">Compile-time options</a>). This will generate a debug version of the library, e.g. <code>libhexl_debug.a</code>, that can be used to debug the execution.</p>
187194
<p><b>Note</b>, enabling <code>HEXL_DEBUG=ON</code> will result in a significant runtime overhead. </p>
188195
<h1><a class="anchor" id="autotoc_md11"></a>
189-
Thread-safety</h1>
196+
Threading</h1>
190197
<p>Intel HEXL is single-threaded and thread-safe.</p>
191198
<h1><a class="anchor" id="autotoc_md12"></a>
192199
Documentation</h1>
193200
<p>See <a href="https://intel.github.io/hexl">https://intel.github.io/hexl</a> for Doxygen documentation.</p>
194201
<p>Intel HEXL supports documentation via Doxygen and sphinx. To build documentation, first install <code>doxygen</code> and <code>graphviz</code>, e.g. </p><div class="fragment"><div class="line">sudo apt-get install doxygen graphviz</div>
195202
</div><!-- fragment --><p>Then, configure Intel HEXL with <code>-DHEXL_DOCS=ON</code> (see <a href="#compile-time-options">Compile-time options</a>). </p>
196-
<h3><a class="anchor" id="autotoc_md13"></a>
197-
Doxygen</h3>
203+
<h2><a class="anchor" id="autotoc_md13"></a>
204+
Doxygen</h2>
198205
<p>To build Doxygen documentation, after configuring Intel HEXL with <code>-DHEXL_DOCS=ON</code>, run </p><div class="fragment"><div class="line">cmake --build build --target doxygen</div>
199206
</div><!-- fragment --><p>To view the generated Doxygen documentation, open the generated <code>build/docs/doxygen/html/index.html</code> file in a web browser.</p>
200-
<h3><a class="anchor" id="autotoc_md14"></a>
201-
Sphinx</h3>
207+
<h2><a class="anchor" id="autotoc_md14"></a>
208+
Sphinx</h2>
202209
<p>To build the sphinx documentation, install <code>sphinx</code> and required dependencies <code>breathe, m2r2</code>, e.g. </p><div class="fragment"><div class="line">sudo apt-get install python3-sphinx</div>
203210
<div class="line">pip3 install breathe m2r2</div>
204211
</div><!-- fragment --><p>Then, after configuring Intel HEXL with <code>-DHEXL_DOCS=ON</code>, run </p><div class="fragment"><div class="line">cmake --build build --target docs</div>
@@ -211,8 +218,23 @@ <h1><a class="anchor" id="autotoc_md15"></a>
211218
</div><!-- fragment --><p>and make sure pre-commit checks and all unit tests pass.</p>
212219
<h2><a class="anchor" id="autotoc_md16"></a>
213220
Repository layout</h2>
214-
<p>Public headers reside in the <code>hexl/include</code> folder. Private headers, e.g. those containing Intel(R) AVX-512 code should not be put in this folder. </p>
215-
</div></div><!-- PageDoc -->
221+
<p>Public headers reside in the <code>hexl/include</code> folder. Private headers, e.g. those containing Intel(R) AVX-512 code should not be put in this folder.</p>
222+
<h2><a class="anchor" id="autotoc_md17"></a>
223+
Intel HEXL Publication</h2>
224+
<p>Find published paper at <a href="https://arxiv.org/abs/2103.16400">https://arxiv.org/abs/2103.16400</a>.</p>
225+
<h2><a class="anchor" id="autotoc_md18"></a>
226+
Citing Intel HEXL</h2>
227+
<p>To cite Intel HEXL, please use the following BibTeX entry.</p>
228+
<h3><a class="anchor" id="autotoc_md19"></a>
229+
Version 1.0</h3>
230+
<div class="fragment"><div class="line">@misc{IntelHEXL,</div>
231+
<div class="line"> title = {{I}ntel {HEXL} (release 1.0)},</div>
232+
<div class="line"> howpublished = {\url{https://arxiv.org/abs/2103.16400}},</div>
233+
<div class="line"> month = mar,</div>
234+
<div class="line"> year = 2021,</div>
235+
<div class="line"> key = {Intel HEXL}</div>
236+
<div class="line">}</div>
237+
</div><!-- fragment --> </div></div><!-- PageDoc -->
216238
</div><!-- contents -->
217239
<!-- start footer part -->
218240
<hr class="footer"/><address class="footer"><small>

‎docs/doxygen/latex/index.tex

+24-5
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
\item \href{\#benchmarking-intel-hexl}{\texttt{ Benchmarking Intel H\+E\+XL}}
1616
\item \href{\#using-intel-hexl}{\texttt{ Using Intel H\+E\+XL}}
1717
\item \href{\#debugging}{\texttt{ Debugging}}
18-
\item \href{\#thread-safety}{\texttt{ Thread-\/safety}}
18+
\item \href{\#threading}{\texttt{ Threading}}
1919
\end{DoxyItemize}
2020
\item \href{\#documentation}{\texttt{ Documentation}}
2121
\begin{DoxyItemize}
@@ -25,6 +25,11 @@
2525
\item \href{\#contributing}{\texttt{ Contributing}}
2626
\begin{DoxyItemize}
2727
\item \href{\#repository-layout}{\texttt{ Repository layout}}
28+
\item \href{\#intel-hexl-publication}{\texttt{ Intel H\+E\+XL Publication}}
29+
\item \href{\#citing-intel-hexl}{\texttt{ Citing Intel H\+E\+XL}}
30+
\begin{DoxyItemize}
31+
\item \href{\#version-10}{\texttt{ Version 1.\+0}}
32+
\end{DoxyItemize}
2833
\end{DoxyItemize}
2934
\end{DoxyItemize}\hypertarget{index_autotoc_md2}{}\doxysection{Introduction}\label{index_autotoc_md2}
3035
Many cryptographic applications, particularly homomorphic encryption (HE), rely on integer polynomial arithmetic in a finite field. HE, which enables computation on encrypted data, typically uses polynomials with degree {\ttfamily N} a power of two roughly in the range {\ttfamily N=\mbox{[}2$^\wedge$\{10\}, 2$^\wedge$\{17\}\mbox{]}}. The coefficients of these polynomials are in a finite field with a word-\/sized primes, {\ttfamily p}, up to {\ttfamily p}$\sim$62 bits. More precisely, the polynomials live in the ring {\ttfamily Z\+\_\+p\mbox{[}X\mbox{]}/(X$^\wedge$N + 1)}. That is, when adding or multiplying two polynomials, each coefficient of the result is reduced by the prime modulus {\ttfamily p}. When multiplying two polynomials, the resulting polynomials of degree {\ttfamily 2N} is additionally reduced by taking the remainder when dividing by {\ttfamily X$^\wedge$\+N+1}.
@@ -90,6 +95,7 @@
9095
H\+E\+X\+L\+\_\+\+E\+X\+P\+O\+RT &ON / O\+FF (default O\+FF) &Set to ON to enable export of Intel H\+E\+XL for use in 3rd-\/party project \\\cline{1-3}
9196
H\+E\+X\+L\+\_\+\+S\+H\+A\+R\+E\+D\+\_\+\+L\+IB &ON / O\+FF (default O\+FF) &Set to ON to enable building shared library \\\cline{1-3}
9297
H\+E\+X\+L\+\_\+\+T\+E\+S\+T\+I\+NG &ON / O\+FF (default ON) &Set to ON to enable building of unit-\/tests \\\cline{1-3}
98+
H\+E\+X\+L\+\_\+\+T\+R\+E\+A\+T\+\_\+\+W\+A\+R\+N\+I\+N\+G\+\_\+\+A\+S\+\_\+\+E\+R\+R\+OR &ON / O\+FF (default O\+FF) &Set to ON to treat all warnings as error \\\cline{1-3}
9399
\end{longtabu}
94100
\hypertarget{index_autotoc_md6}{}\doxysubsection{Compiling Intel H\+E\+XL}\label{index_autotoc_md6}
95101
The instructions to build Intel H\+E\+XL are common between Linux, Mac\+OS, and Windows.
@@ -142,7 +148,7 @@
142148
The {\ttfamily example} folder has an example of using Intel H\+E\+XL in a third-\/party project.\hypertarget{index_autotoc_md10}{}\doxysection{Debugging}\label{index_autotoc_md10}
143149
For optimal performance, Intel H\+E\+XL does not perform input validation. In many cases the time required for the validation would be longer than the execution of the function itself. To debug Intel H\+E\+XL, configure and build Intel H\+E\+XL with {\ttfamily -\/D\+H\+E\+X\+L\+\_\+\+D\+E\+B\+UG=ON} (see \href{\#compile-time-options}{\texttt{ Compile-\/time options}}). This will generate a debug version of the library, e.\+g. {\ttfamily libhexl\+\_\+debug.\+a}, that can be used to debug the execution.
144150

145-
{\bfseries{Note}}, enabling {\ttfamily H\+E\+X\+L\+\_\+\+D\+E\+B\+UG=ON} will result in a significant runtime overhead. \hypertarget{index_autotoc_md11}{}\doxysection{Thread-\/safety}\label{index_autotoc_md11}
151+
{\bfseries{Note}}, enabling {\ttfamily H\+E\+X\+L\+\_\+\+D\+E\+B\+UG=ON} will result in a significant runtime overhead. \hypertarget{index_autotoc_md11}{}\doxysection{Threading}\label{index_autotoc_md11}
146152
Intel H\+E\+XL is single-\/threaded and thread-\/safe.\hypertarget{index_autotoc_md12}{}\doxysection{Documentation}\label{index_autotoc_md12}
147153
See \href{https://intel.github.io/hexl}{\texttt{ https\+://intel.\+github.\+io/hexl}} for Doxygen documentation.
148154

@@ -152,14 +158,14 @@
152158
\end{DoxyCode}
153159

154160

155-
Then, configure Intel H\+E\+XL with {\ttfamily -\/D\+H\+E\+X\+L\+\_\+\+D\+O\+CS=ON} (see \href{\#compile-time-options}{\texttt{ Compile-\/time options}}). \hypertarget{index_autotoc_md13}{}\doxysubsubsection{Doxygen}\label{index_autotoc_md13}
161+
Then, configure Intel H\+E\+XL with {\ttfamily -\/D\+H\+E\+X\+L\+\_\+\+D\+O\+CS=ON} (see \href{\#compile-time-options}{\texttt{ Compile-\/time options}}). \hypertarget{index_autotoc_md13}{}\doxysubsection{Doxygen}\label{index_autotoc_md13}
156162
To build Doxygen documentation, after configuring Intel H\+E\+XL with {\ttfamily -\/D\+H\+E\+X\+L\+\_\+\+D\+O\+CS=ON}, run
157163
\begin{DoxyCode}{0}
158164
\DoxyCodeLine{cmake -\/-\/build build -\/-\/target doxygen}
159165
\end{DoxyCode}
160166

161167

162-
To view the generated Doxygen documentation, open the generated {\ttfamily build/docs/doxygen/html/index.\+html} file in a web browser.\hypertarget{index_autotoc_md14}{}\doxysubsubsection{Sphinx}\label{index_autotoc_md14}
168+
To view the generated Doxygen documentation, open the generated {\ttfamily build/docs/doxygen/html/index.\+html} file in a web browser.\hypertarget{index_autotoc_md14}{}\doxysubsection{Sphinx}\label{index_autotoc_md14}
163169
To build the sphinx documentation, install {\ttfamily sphinx} and required dependencies {\ttfamily breathe, m2r2}, e.\+g.
164170
\begin{DoxyCode}{0}
165171
\DoxyCodeLine{sudo apt-\/get install python3-\/sphinx}
@@ -185,4 +191,17 @@
185191

186192

187193
and make sure pre-\/commit checks and all unit tests pass.\hypertarget{index_autotoc_md16}{}\doxysubsection{Repository layout}\label{index_autotoc_md16}
188-
Public headers reside in the {\ttfamily hexl/include} folder. Private headers, e.\+g. those containing Intel(\+R) A\+V\+X-\/512 code should not be put in this folder.
194+
Public headers reside in the {\ttfamily hexl/include} folder. Private headers, e.\+g. those containing Intel(\+R) A\+V\+X-\/512 code should not be put in this folder.\hypertarget{index_autotoc_md17}{}\doxysubsection{Intel H\+E\+X\+L Publication}\label{index_autotoc_md17}
195+
Find published paper at \href{https://arxiv.org/abs/2103.16400}{\texttt{ https\+://arxiv.\+org/abs/2103.\+16400}}.\hypertarget{index_autotoc_md18}{}\doxysubsection{Citing Intel H\+E\+XL}\label{index_autotoc_md18}
196+
To cite Intel H\+E\+XL, please use the following Bib\+TeX entry.\hypertarget{index_autotoc_md19}{}\doxysubsubsection{Version 1.\+0}\label{index_autotoc_md19}
197+
198+
\begin{DoxyCode}{0}
199+
\DoxyCodeLine{@misc\{IntelHEXL,}
200+
\DoxyCodeLine{ title = \{\{I\}ntel \{HEXL\} (release 1.0)\},}
201+
\DoxyCodeLine{ howpublished = \{\(\backslash\)url\{https://arxiv.org/abs/2103.16400\}\},}
202+
\DoxyCodeLine{ month = mar,}
203+
\DoxyCodeLine{ year = 2021,}
204+
\DoxyCodeLine{ key = \{Intel HEXL\}}
205+
\DoxyCodeLine{\}}
206+
\end{DoxyCode}
207+

0 commit comments

Comments
 (0)
Please sign in to comment.