Task parallelism

Task parallelism (also known as function parallelism and control parallelism) is a form of parallelization of computer code across multiple processors in parallel computing environments. Task parallelism focuses on distributing tasks—concurrently performed by processes or threads—across different processors. In contrast to data parallelism which involves running the same task on different components of data, task parallelism is distinguished by running many different tasks at the same time on the same data.[1] A common type of task parallelism is pipelining, which consists of moving a single set of data through a series of separate tasks where each task can execute independently of the others.

  1. ^ Reinders, James (10 September 2007). "Understanding task and data parallelism". ZDNet. Retrieved 8 May 2017.

From Wikipedia, the free encyclopedia · View on Wikipedia

Developed by Nelliwinne