allow specification of maximal amount of shared memory
[ppcg.git] / ppcg_options.h
blob1f21c1d12de103930b221618782e6cace366f967
1 #ifndef PPCG_OPTIONS_H
2 #define PPCG_OPTIONS_H
4 #include <isl/arg.h>
6 struct ppcg_options {
7 int scale_tile_loops;
8 int wrap;
10 char *ctx;
11 char *sizes;
13 int tile_size;
15 /* Take advantage of private memory. */
16 int use_private_memory;
18 /* Take advantage of shared memory. */
19 int use_shared_memory;
21 /* Maximal amount of shared memory. */
22 int max_shared_memory;
25 ISL_ARG_DECL(ppcg_options, struct ppcg_options, ppcg_options_args)
27 #endif