2 * Copyright 2010-2011 INRIA Saclay
4 * Use of this software is governed by the GNU LGPLv2.1 license
6 * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
7 * Parc Club Orsay Universite, ZAC des vignes, 4 rue Jacques Monod,
11 #include "ppcg_options.h"
13 static struct isl_arg_choice target
[] = {
15 {"cuda", PPCG_TARGET_CUDA
},
19 ISL_ARGS_START(struct ppcg_debug_options
, ppcg_debug_options_args
)
20 ISL_ARG_BOOL(struct ppcg_debug_options
, dump_schedule
, 0,
21 "dump-schedule", 0, "dump isl computed schedule")
24 ISL_ARGS_START(struct ppcg_options
, ppcg_options_args
)
25 ISL_ARG_CHILD(struct ppcg_options
, debug
, NULL
, &ppcg_debug_options_args
,
27 ISL_ARG_BOOL(struct ppcg_options
, scale_tile_loops
, 0,
28 "scale-tile-loops", 1, NULL
)
29 ISL_ARG_BOOL(struct ppcg_options
, wrap
, 0, "wrap", 1, NULL
)
30 ISL_ARG_BOOL(struct ppcg_options
, use_shared_memory
, 0, "shared-memory", 1,
31 "use shared memory in kernel code")
32 ISL_ARG_BOOL(struct ppcg_options
, use_private_memory
, 0, "private-memory", 1,
33 "use private memory in kernel code")
34 ISL_ARG_STR(struct ppcg_options
, ctx
, 0, "ctx", "context", NULL
,
35 "Constraints on parameters")
36 ISL_ARG_INT(struct ppcg_options
, tile_size
, 'S', "tile-size", "size", 32, NULL
)
37 ISL_ARG_STR(struct ppcg_options
, sizes
, 0, "sizes", "sizes", NULL
,
38 "Per kernel tile, grid and block sizes")
39 ISL_ARG_INT(struct ppcg_options
, max_shared_memory
, 0,
40 "max-shared-memory", "size", 8192, "maximal amount of shared memory")
41 ISL_ARG_BOOL(struct ppcg_options
, openmp
, 0, "openmp", 0,
42 "Generate OpenMP macros (only for C target)")
43 ISL_ARG_CHOICE(struct ppcg_options
, target
, 0, "target", target
,
44 PPCG_TARGET_CUDA
, "the target to generate code for")