Hi,
I am looking for papers or tools about parallelism discovering. More explicitly, if you have a sequential source code, how to find sections which could be efficiently parallelized (taking account of data dependencies...).
The speculation could be static or dynamic. The source code to observe should be in C or C++.
I have already some leads:
- TLS technics
- Call graph analysis with Valgrind or gprof
What I am looking for is more a way to find the section, then to code the parallel code by hand, not automatically.
Tools such as IntelTBB or OpenMP are not at all what I am looking for.
