-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
11 changed files
with
107 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
<p class="ui">This topic introduces basic but essential concepts for distributed-memory programming, such as:</p> | ||
|
||
<ul class="ui list"> | ||
<li class="ui item"> Single-Program Multiple-Data (SPMD) programming style</li> | ||
<li class="ui item"> The use of <i>process rank</i> to distribute work among processes</li> | ||
<li class="ui item"> Local vs. Global indices for 1-D and 2-D data distribution of arrays</li> | ||
<li class="ui item"> Simple message-passing to coordinate processes</li> | ||
</ul> | ||
|
||
<p class="ui"> | ||
In this topic we do not focus on performance at all, and we implement a "toy" application that | ||
computes a Julia set and saves it as a bitmap file for display. Below is (a low-res version of) the | ||
Julia set we will compute: | ||
</p> | ||
|
||
<p style="text-align:center;"> | ||
<img align="center" src="{{ site.baseurl}}/topic_basics_of_distributed_memory_programming/julia_small.jpg"> | ||
</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
|
||
|
||
|
||
<div class="ui pointing secondary menu"> | ||
<a class="item active" data-tab="first">About</a> | ||
<a class="item " data-tab="second">Activity #1</a> | ||
<a class="item" data-tab="third">Activity #2</a> | ||
<a class="item" data-tab="fourth">Activity #3</a> | ||
</div> | ||
<div class="ui tab segment active" data-tab="first"> | ||
{% include_relative topic_basics_of_distributed_memory_programming/about.html %} | ||
</div> | ||
<div class="ui tab segment " data-tab="second"> | ||
<div class="ui top attached tabular menu"> | ||
<a class="item active" data-tab="second/a">2A</a> | ||
<a class="item" data-tab="second/b">2B</a> | ||
<a class="item" data-tab="second/c">2C</a> | ||
</div> | ||
<div class="ui bottom attached tab segment active" data-tab="second/a">2A</div> | ||
<div class="ui bottom attached tab segment" data-tab="second/b">2B</div> | ||
<div class="ui bottom attached tab segment" data-tab="second/c">2C</div> | ||
</div> | ||
<div class="ui tab segment" data-tab="third"> | ||
<div class="ui top attached tabular menu"> | ||
<a class="item" data-tab="third/a">3A</a> | ||
<a class="item" data-tab="third/b">3B</a> | ||
<a class="item" data-tab="third/c">3C</a> | ||
</div> | ||
<div class="ui bottom attached tab segment" data-tab="third/a">3A</div> | ||
<div class="ui bottom attached tab segment" data-tab="third/b">3B</div> | ||
<div class="ui bottom attached tab segment" data-tab="third/c">3C</div> | ||
</div> | ||
<div class="ui tab segment" data-tab="fourth"> | ||
<div class="ui top attached tabular menu"> | ||
<a class="item" data-tab="third/a">3A</a> | ||
<a class="item" data-tab="third/b">3B</a> | ||
<a class="item" data-tab="third/c">3C</a> | ||
</div> | ||
<div class="ui bottom attached tab segment" data-tab="third/a">3A</div> | ||
<div class="ui bottom attached tab segment" data-tab="third/b">3B</div> | ||
<div class="ui bottom attached tab segment" data-tab="third/c">3C</div> | ||
</div> | ||
|
||
|
||
<!--</div>--> | ||
|
||
|
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions
15
topic_basics_of_distributed_memory_programming/simple_spmd_program.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
|
||
|
||
<div class="ui top attached tabular menu"> | ||
<a class="active item" data-tab="first">Step #1</a> | ||
<a class="item" data-tab="second">Step #2</a> | ||
</div> | ||
<div class="ui bottom attached active tab segment" data-tab="first"> | ||
TBD | ||
</div> | ||
<div class="ui bottom attached tab segment" data-tab="second"> | ||
TBD | ||
</div> | ||
|
||
|