Intra Node Stencil Performance Evaluation Collection
dimension | 3D |
radius | 1 |
weighting | point-symmetric |
kind | star |
coefficients | constant |
datatype | double |
machine | BroadwellEP_E5-2697_CoD |
FLOP per LUP | 10 |
flavor | Cluster on Die |
Review status:
Benchmark raw data shown on this page can be found in the according folder of the git repository.
If you have feedback, issues or found errors on this page, please submit an issue on the github page.
double a[M][N][P];
double b[M][N][P];
double c0;
double c1;
double c2;
double c3;
for (long k = 1; k < M - 1; ++k) {
for (long j = 1; j < N - 1; ++j) {
for (long i = 1; i < P - 1; ++i) {
b[k][j][i] = c0 * a[k][j][i] +
c1 * (a[k][j][i - 1] + a[k][j][i + 1]) +
c2 * (a[k - 1][j][i] + a[k + 1][j][i]) +
c3 * (a[k][j - 1][i] + a[k][j + 1][i]);
}
}
}
P <= 2050/3
, that is P <= 680
P <= 5462
, that is P <= 5460
P <= 480598
, that is P <= 480590
16*N*P + 16*P*(N - 1) <= 32768
, that is N*P <= 30²
16*N*P + 16*P*(N - 1) <= 262144
, that is N*P <= 90²
16*N*P + 16*P*(N - 1) <= 23068672
, that is N*P <= 840²
Have a look at the kernel source code for dimension naming.
Generate this stencil with:
stempel gen -D 3 -r 1 -t "double" -C constant -k star -p --store stencil.c
and generate the compilable benchmark code with:
stempel bench stencil.c -m BroadwellEP_E5-2697_CoD.yml --store
icc -O3 -xCORE-AVX2 -fno-alias -qopenmp -qopenmp -DLIKWID_PERFMON -Ilikwid-4.3.3/include -Llikwid-4.3.3/lib -Iheaders/dummy.c stencil_compilable.c -o stencil -llikwid
Comparison of the measured stencil performance (in cycles per cache line), roofline prediction and the (stacked) contributions of the ECM Performance Model predicted by kerncraft using Layer Conditions to model the cache behavior. The calculated layer conditions shown above correspond to the jumps in the ECM prediction in this plot.
Data transfers between the different cache levels and main memory. The shown data for each level contains evicted and loaded data. The measured data is represented by points and the predicted transfer rates by kerncraft by lines.
Using the generated stencil and kerncraft, all single core performance data shown on this page can be reproduced by:
kerncraft -p ECM -p RooflineIACA -p Benchmark -p LC -P LC -m BroadwellEP_E5-2697_CoD.yml stencil.c -D N $GRID_SIZE -D M $GRID_SIZE -D P $GRID_SIZE -vvv --cores 1 --compiler icc
kerncraft -p ECM -p RooflineIACA -p Benchmark -p LC -P CS -m BroadwellEP_E5-2697_CoD.yml stencil.c -D N $GRID_SIZE -D M $GRID_SIZE -D P $GRID_SIZE -vvv --cores 1 --compiler icc
The generated benchmark code can be used to reproduce the thread scaling data shown on this page by:
kerncraft -p ECM -p RooflineIACA -p Benchmark -P LC -m BroadwellEP_E5-2697_CoD.yml stencil.c -D N $GRID_SIZE -D M $GRID_SIZE -D P $GRID_SIZE -vvv --cores $CORES --compiler icc
The roofline prediction can be obtained with kerncraft and the generated stencil:
kerncraft -p RooflineIACA -P LC -m BroadwellEP_E5-2697_CoD.yml stencil.c -D N $GRID_SIZE -D M $GRID_SIZE -D P $GRID_SIZE -vvv --cores ${threads} --compiler icc
Generate benchmark code from the stencil with blocking and compile it as shown before:
stempel bench stencil.c -m BroadwellEP_E5-2697_CoD.yml -b 2 --store
OMP_NUM_THREADS=1 likwid-pin -C S0:0 ./stencil $GRID_SIZE $GRID_SIZE $GRID_SIZE $BLOCKING_M $BLOCKING_N $BLOCKING_P