Skip to content
Snippets Groups Projects
Commit be0ce128 authored by Jan Siwiec's avatar Jan Siwiec
Browse files

Update intel-integrated-performance-primitives.md

parent c383d8f0
No related branches found
No related tags found
4 merge requests!368Update prace.md to document the change from qprace to qprod as the default...,!367Update prace.md to document the change from qprace to qprod as the default...,!366Update prace.md to document the change from qprace to qprod as the default...,!323extended-acls-storage-section
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
## Intel Integrated Performance Primitives ## Intel Integrated Performance Primitives
Intel Integrated Performance Primitives version 9.0.1 compiled for AVX2 vector instructions is available via the ipp module. IPP is a very rich library of highly optimized algorithmic building blocks for media and data applications. This includes signal, image, and frame processing algorithms, such as FFT, FIR, Convolution, Optical Flow, Hough transform, Sum, MinMax, as well as cryptographic functions, linear algebra functions, and many more. Intel Integrated Performance Primitives version 9.0.1 compiled for AVX2 vector instructions is available via the `ipp` module. IPP is a very rich library of highly optimized algorithmic building blocks for media and data applications. This includes signal, image, and frame processing algorithms, such as FFT, FIR, Convolution, Optical Flow, Hough transform, Sum, MinMax, as well as cryptographic functions, linear algebra functions, and many more.
Check out IPP before implementing own math functions for data processing, as it is likely already there. Check out IPP before implementing own math functions for data processing, as it is likely already there.
...@@ -55,7 +55,7 @@ int main(int argc, char* argv[]) ...@@ -55,7 +55,7 @@ int main(int argc, char* argv[])
} }
``` ```
Compile the example above, using any compiler and the ipp module: Compile the example above, using any compiler and the `ipp` module:
```console ```console
$ ml intel $ ml intel
...@@ -63,7 +63,7 @@ $ ml ipp ...@@ -63,7 +63,7 @@ $ ml ipp
$ icc testipp.c -o testipp.x -lippi -lipps -lippcore $ icc testipp.c -o testipp.x -lippi -lipps -lippcore
``` ```
You will need the ipp module loaded to run the IPP-enabled executable. This may be avoided, by compiling library search paths into the executable: You will need the `ipp` module loaded to run an IPP-enabled executable. This may be avoided, by compiling library search paths into the executable:
```console ```console
$ ml intel $ ml intel
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment