print_grid_size: plug memory leak in case of 0D grid
[ppcg.git] / ppcg_options.h
blobe3efa5aa10cee27559cae130de8e81442c8d9c58
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;
22 ISL_ARG_DECL(ppcg_options, struct ppcg_options, ppcg_options_args)
24 #endif