2. Program Structure PatternsΒΆ

We write all parallel programs by structuring them in particular ways. The most basic of these is called single program, multiple data, or SPMD pattern. It is used in every example you will see here, so we start with that. Another addition to many SPMD programs is the master-worker pattern, which is the second example pattern you will encounter here.

You have attempted of activities on this page
Next Section - 2.1. Single Program, Multiple Data