-
Notifications
You must be signed in to change notification settings - Fork 9
/
README
99 lines (76 loc) · 3.43 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
Requirements:
- pkg-config (http://www.freedesktop.org/wiki/Software/pkg-config)
(not needed when compiling a release using the included isl)
- gmp (http://gmplib.org/)
- libyaml (http://pyyaml.org/wiki/LibYAML)
(only needed if you want to compile the pet executable)
- LLVM/clang libraries, 2.9 or higher (http://clang.llvm.org/get_started.html)
Unless you have some other reasons for wanting to use the git version,
it's best to install the latest release (14.0).
The git version occasionally introduces incompatibilities.
Nevertheless, if you encounter any such incompatibilities, please
report them so that they can be fixed.
However, development versions from before the latest release
are not supported.
Also, if you are following the instructions on how to build
from source, make sure you also install LLVM
(through "make install"). You may want to specify an installation
directory using the CMAKE_INSTALL_PREFIX cmake option.
You may also want to set the LLVM_BUILD_LLVM_DYLIB option
to enable the creation of a single shared library.
If you configure older versions of LLVM using cmake, you may end up
with clang libraries that have been compiled with -fno-rtti without
this option appearing in the output of "llvm-config --cxxflags".
You may then run into errors about undefined reference to the
'typeinfo' of some classes.
You will then have to add this option manually to CXXFLAGS while
configuring pet.
If you want to use the ubuntu package libclang-dev, then you need
version 3.2 (ubuntu raring) or later.
Older versions of this package did not include the required libraries.
You may also need to install the llvm package for llvm-config.
Preparing:
Grab the latest release and extract it or get the source from
the git repository as follows. This process requires autoconf,
automake, libtool and pkg-config.
git clone git://repo.or.cz/pet.git
cd pet
./get_submodules.sh
./autogen.sh
Compilation:
./configure
make
make check
Use:
The main entry point is pet_scop_extract_from_C_source.
This function extracts a scop from the C source file with the given name
and returns it as a pet_scop. The scop corresponds to the piece
of code delimited by
#pragma scop
and
#pragma endscop
The code in between needs to consist only of expression statements,
if statements and for statements. All access relations and loop initializations
need to be piecewise quasi-affine. Conditions are allowed to be non-affine,
in which case a separate statement is constructed to evaluate the condition.
If the autodetect option has been set, pet will try to automatically
detect a scop and no pragmas are required. On the other hand, pet
will not produce any warnings in this case as any code that does not
satisfy the requirements is considered to lie outside of the scop.
The layout of pet_scop is documented in include/pet.h.
New releases are announced on http://groups.google.com/group/isl-announce
If you use pet, you can let me know by stacking
https://www.openhub.net/p/libpet on ohloh.
For bug reports, feature requests and questions,
contact isl-development@googlegroups.com
If you use pet for your research, you are invited to cite
the following paper.
@InProceedings{Verdoolaege2012pet,
author = {Sven Verdoolaege and Tobias Grosser},
title = {Polyhedral Extraction Tool},
booktitle = {Second Int. Workshop on Polyhedral Compilation Techniques
(IMPACT'12)},
address = {Paris, France},
month = jan,
year = {2012}
}