vote up 2 vote down star
2

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.

flag

64% accept rate

1 Answer

vote up 1 vote down

I asked a similar question here. It appears to me that parallel thinking is not sufficiently well entrenched in the zeitgeist that a forum like this one is going to yield much in the way of leads. I'm sure there are people on here who know a ton about it but there clearly are not many.

I have gone to back to primary research about the language and architecture constructs which exist to support parallel processing. Knowing how to partition things has been a valuable step in learning what to partition into parallel processing streams.

There's no question in my mind that we will all have to know about this before too long - we can learn about it as our spare processor cores sit idle while we wait for tasks to finish.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.