High Performance Computing 1
Programming Model
•
SPMD (Single Program Multiple Data)
–
single program is run on all processors with
different data
–
each processor knows its ID -- thus
•
if(proc ID .eq. N) then
–
….
•
Else
–
….
–
Constructs can be used for program control
•
•