Possible to distribute or parallel process a sequential program?

Posted by damigu on Stack Overflow See other posts from Stack Overflow or by damigu
Published on 2010-03-17T17:59:25Z Indexed on 2010/03/17 18:01 UTC
Read the original article Hit count: 155

Filed under:
|
|

In C++, I've written a mathematical program (for diffusion limited aggregation) where each new point calculated is dependent on all of the preceding points. Is it possible to have such a program work in a parallel or distributed manner to increase computing speed? If so, what type of modifications to the code would I need to look into?

© Stack Overflow or respective owner

Related posts about c++

Related posts about parallel