use isl_pw_multi_aff to describe array index
[ppcg.git] / ppcg_options.h
blobd5b9588ff5192edcc39c412c5398fb1512d3b4ad
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;
12 int tile_size;
14 /* Take advantage of private memory. */
15 int use_private_memory;
17 /* Take advantage of shared memory. */
18 int use_shared_memory;
21 ISL_ARG_DECL(ppcg_options, struct ppcg_options, ppcg_options_args)
23 #endif