Embarassingly parallel
Previous: Multithreading
Embarassingly parallel is a term used when a problem or workload where little or no effort is needed to split the problem into a number of parallel tasks.
Computer graphics rendering is one such example of this since each individual pixel does not need to know anything about its surrounding ones. All of this parallelism is achieved on the GPU, which is tailored perfectly for the task.