Expose Parallelism by Avoiding or Removing Artificial Dependencies

Posted on Code Project See other posts from Code Project
Published on Thu, 08 Apr 2010 20:29:00 GMT Indexed on 2010/04/08 20:33 UTC
Read the original article Hit count: 189

Filed under:
Many applications and algorithms contain serial optimizations that inadvertently introduce data dependencies and inhibit parallelism. One can often remove such dependences through simple transforms, or even avoid them altogether through techniques such as domain decomposition or blocking.

© Code Project or respective owner