Skip to content
EECS 4340 Final Review

SPMD execution model

Tag: spmd

Aliases: SPMD, Single Program Multiple Data

Programming idiom in which all processors run copies of the same program but branch on a per-thread ID to operate on different data. The common case for OpenMP, MPI, and CUDA kernels.

No references yet.