PandA-2024.02
|
#include <stdio.h>
#include <stdlib.h>
#include "support.h"
Go to the source code of this file.
Data Structures | |
struct | bench_args_t |
Macros | |
#define | height_size 32 |
#define | col_size 32 |
#define | row_size 16 |
#define | TYPE int32_t |
#define | MAX 1000 |
#define | MIN 1 |
#define | SIZE (row_size * col_size * height_size) |
#define | INDX(_row_size, _col_size, _i, _j, _k) ((_i)+_row_size*((_j)+_col_size*(_k))) |
Functions | |
void | stencil3d (TYPE C[2], TYPE orig[SIZE], TYPE sol[SIZE]) |
#define height_size 32 |
Definition at line 13 of file stencil.h.
Referenced by stencil3d().
#define INDX | ( | _row_size, | |
_col_size, | |||
_i, | |||
_j, | |||
_k | |||
) | ((_i)+_row_size*((_j)+_col_size*(_k))) |
Definition at line 22 of file stencil.h.
Referenced by stencil3d().
#define SIZE (row_size * col_size * height_size) |
Definition at line 10 of file stencil.c.
References col_size, height_size, INDX, k, 01_onnx_build::mul1, row_size, and TYPE.
Referenced by run_benchmark().