repo.or.cz
/
ppcg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
properly print accesses to scalars in global memory
[ppcg.git]
/
ppcg_options.h
blob
d5b9588ff5192edcc39c412c5398fb1512d3b4ad
1
#ifndef PPCG_OPTIONS_H
2
#define PPCG_OPTIONS_H
3
4
#include <isl/arg.h>
5
6
struct
ppcg_options
{
7
int
scale_tile_loops
;
8
int
wrap
;
9
10
char
*
ctx
;
11
12
int
tile_size
;
13
14
/* Take advantage of private memory. */
15
int
use_private_memory
;
16
17
/* Take advantage of shared memory. */
18
int
use_shared_memory
;
19
};
20
21
ISL_ARG_DECL
(
ppcg_options
,
struct
ppcg_options
,
ppcg_options_args
)
22
23
#endif