Give examples for pipeline, component and data parallesim?

Questions by ankithak   answers by ankithak

Showing Answers 1 - 3 of 3 Answers

pipeline Parallelism occurs when the several connected progrm components on the same branch of graph executes simultanteously. if you are using a sort component the pipeline parallelism does not occur.

Dataparallelism : it occurs when program components execute simultaneously on different branches ofa graph. it can occur in two forms
a) mutiple separate datasets , one for ecach branch of the graph.
b) single dataset divided into partitions by or partition componenet. exmple partition by expression.

data parallelism occurs when a graph separates data into multiple divisions, allowing multiple copies of program components to operate on the data. no of partitions of a component defines the dept of parallelism.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions