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

fixed code blocks

parent 53098f81
No related branches found
No related tags found
1 merge request!338software
Pipeline #22367 failed
...@@ -28,7 +28,7 @@ Intel compilers provide vectorization of the code via the AVX-2/AVX-512 instruct ...@@ -28,7 +28,7 @@ Intel compilers provide vectorization of the code via the AVX-2/AVX-512 instruct
For maximum performance on the Barbora cluster compute nodes, compile your programs using the AVX-512 instructions, with reporting where the vectorization was used. We recommend the following compilation options for high performance. For maximum performance on the Barbora cluster compute nodes, compile your programs using the AVX-512 instructions, with reporting where the vectorization was used. We recommend the following compilation options for high performance.
``` info !!! info
Barbora non-accelerated nodes support AVX-512 instructions (cn1-cn192). Barbora non-accelerated nodes support AVX-512 instructions (cn1-cn192).
```console ```console
...@@ -43,7 +43,7 @@ For maximum performance on the Barbora GPU nodes or Karolina cluster compute nod ...@@ -43,7 +43,7 @@ For maximum performance on the Barbora GPU nodes or Karolina cluster compute nod
$ icc -ipo -O3 -xCORE-AVX2 -qopt-report1 -qopt-report-phase=vec myprog.c mysubroutines.c -o myprog.x $ icc -ipo -O3 -xCORE-AVX2 -qopt-report1 -qopt-report-phase=vec myprog.c mysubroutines.c -o myprog.x
``` ```
``` warn !!! warn
Karolina cluster has AMD cpu, use compiler options `-march=core-avx2`. Karolina cluster has AMD cpu, use compiler options `-march=core-avx2`.
In this example, we compile the program enabling interprocedural optimizations between source files (`-ipo`), aggressive loop optimizations (`-O3`), and vectorization (`-xCORE-AVX2`). In this example, we compile the program enabling interprocedural optimizations between source files (`-ipo`), aggressive loop optimizations (`-O3`), and vectorization (`-xCORE-AVX2`).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment