Question
A matrix operation assigns different portions of the same array to different threads. What form of parallelism is this?
Select an option. Your answer will be checked instantly.
Correct Answer: B. Data parallelism
Explanation:
Data parallelism divides a common data set into parts processed by similar operations concurrently.
Task parallelism instead assigns different kinds of work to different threads.
Leave a Reply