Hi Alexandra,
I had a look at the CodeGeneration from Polly. Is it possible to use it
without creating the Scops, by transforming it into a LoopPass?
Yes. If you don't want to use the autopar of Polly and just rely on
the pragmas inserted by the programmer, you don't need SCoPs.
You can have the parallel code generation part of Polly working as
a LoopPass.
If you want to use the auto-parallelization part of Polly, you have to
to restrict the form of the code on which data dependences can be
computed: this is done by using SCoPs (Static Control Parts).
Sebastian