Assignment On: "Parallel Algorithm"
Assignment On: "Parallel Algorithm"
on
“Parallel Algorithm”
Submitted to:
Albina Alam
-------
Submitted by:
e.g.
for (int i=0; i<100; i++)
array[i]=array[i-1] *20;
3. Resource Requirements:
The primary intent of parallel programming is to decrease execution
wall clock time, however in order to accomplish this, more CPU time
is required. For example, a parallel code that runs in 1 hour on 8
processors actually uses 8 hours of CPU time.
The amount of memory required can be greater for parallel codes than
serial codes, due to the need to replicate data and for overheads
associated with parallel support libraries and subsystems.