You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<tdclass="markdownTableBodyNone">HEXL_SHARED_LIB </td><tdclass="markdownTableBodyNone">ON / OFF (default OFF) </td><tdclass="markdownTableBodyNone">Set to ON to enable building shared library </td></tr>
161
166
<trclass="markdownTableRowEven">
162
167
<tdclass="markdownTableBodyNone">HEXL_TESTING </td><tdclass="markdownTableBodyNone">ON / OFF (default ON) </td><tdclass="markdownTableBodyNone">Set to ON to enable building of unit-tests </td></tr>
168
+
<trclass="markdownTableRowOdd">
169
+
<tdclass="markdownTableBodyNone">HEXL_TREAT_WARNING_AS_ERROR </td><tdclass="markdownTableBodyNone">ON / OFF (default OFF) </td><tdclass="markdownTableBodyNone">Set to ON to treat all warnings as error </td></tr>
<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 <ahref="#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>
187
194
<p><b>Note</b>, enabling <code>HEXL_DEBUG=ON</code> will result in a significant runtime overhead. </p>
188
195
<h1><aclass="anchor" id="autotoc_md11"></a>
189
-
Thread-safety</h1>
196
+
Threading</h1>
190
197
<p>Intel HEXL is single-threaded and thread-safe.</p>
191
198
<h1><aclass="anchor" id="autotoc_md12"></a>
192
199
Documentation</h1>
193
200
<p>See <ahref="https://intel.github.io/hexl">https://intel.github.io/hexl</a> for Doxygen documentation.</p>
194
201
<p>Intel HEXL supports documentation via Doxygen and sphinx. To build documentation, first install <code>doxygen</code> and <code>graphviz</code>, e.g. </p><divclass="fragment"><divclass="line">sudo apt-get install doxygen graphviz</div>
195
202
</div><!-- fragment --><p>Then, configure Intel HEXL with <code>-DHEXL_DOCS=ON</code> (see <ahref="#compile-time-options">Compile-time options</a>). </p>
196
-
<h3><aclass="anchor" id="autotoc_md13"></a>
197
-
Doxygen</h3>
203
+
<h2><aclass="anchor" id="autotoc_md13"></a>
204
+
Doxygen</h2>
198
205
<p>To build Doxygen documentation, after configuring Intel HEXL with <code>-DHEXL_DOCS=ON</code>, run </p><divclass="fragment"><divclass="line">cmake --build build --target doxygen</div>
199
206
</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><aclass="anchor" id="autotoc_md14"></a>
201
-
Sphinx</h3>
207
+
<h2><aclass="anchor" id="autotoc_md14"></a>
208
+
Sphinx</h2>
202
209
<p>To build the sphinx documentation, install <code>sphinx</code> and required dependencies <code>breathe, m2r2</code>, e.g. </p><divclass="fragment"><divclass="line">sudo apt-get install python3-sphinx</div>
203
210
<divclass="line">pip3 install breathe m2r2</div>
204
211
</div><!-- fragment --><p>Then, after configuring Intel HEXL with <code>-DHEXL_DOCS=ON</code>, run </p><divclass="fragment"><divclass="line">cmake --build build --target docs</div>
</div><!-- fragment --><p>and make sure pre-commit checks and all unit tests pass.</p>
212
219
<h2><aclass="anchor" id="autotoc_md16"></a>
213
220
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><aclass="anchor" id="autotoc_md17"></a>
223
+
Intel HEXL Publication</h2>
224
+
<p>Find published paper at <ahref="https://arxiv.org/abs/2103.16400">https://arxiv.org/abs/2103.16400</a>.</p>
225
+
<h2><aclass="anchor" id="autotoc_md18"></a>
226
+
Citing Intel HEXL</h2>
227
+
<p>To cite Intel HEXL, please use the following BibTeX entry.</p>
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 @@
90
95
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}
91
96
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}
92
97
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}
The instructions to build Intel H\+E\+XL are common between Linux, Mac\+OS, and Windows.
@@ -142,7 +148,7 @@
142
148
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}
143
149
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.
144
150
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}
146
152
Intel H\+E\+XL is single-\/threaded and thread-\/safe.\hypertarget{index_autotoc_md12}{}\doxysection{Documentation}\label{index_autotoc_md12}
147
153
See \href{https://intel.github.io/hexl}{\texttt{ https\+://intel.\+github.\+io/hexl}} for Doxygen documentation.
148
154
@@ -152,14 +158,14 @@
152
158
\end{DoxyCode}
153
159
154
160
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}
156
162
To build Doxygen documentation, after configuring Intel H\+E\+XL with {\ttfamily -\/D\+H\+E\+X\+L\+\_\+\+D\+O\+CS=ON}, run
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}
163
169
To build the sphinx documentation, install {\ttfamily sphinx} and required dependencies {\ttfamily breathe, m2r2}, e.\+g.
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)\},}
0 commit comments