Skip to content

Commit

Permalink
Add updates memory model gifs
Browse files Browse the repository at this point in the history
  • Loading branch information
ghidalgo93 committed Sep 1, 2021
1 parent 442a709 commit dbe0944
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions docs/programming/parallel-programming-fundamentals.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@ __Shared Memory Model:__
In a shared memory model all processors to have access to a pool of
common memory that they can freely use.

![](https://computing.llnl.gov/tutorials/parallel_comp/images/shared_mem.gif "shared_model")

![shared memory model](https://hpc.llnl.gov/sites/default/files/shared_mem.gif)
![](https://hpc.llnl.gov/sites/default/files/shared_mem.gif "shared memory model")

(Image courtesy of LLNL <https://computing.llnl.gov/tutorials/parallel_comp/> )

Expand All @@ -64,7 +62,7 @@ available to each processor. Because memory isn’t shared inherently,
information that must be shared between processes is sent over a
network.

![](https://computing.llnl.gov/tutorials/parallel_comp/images/distributed_mem.gif "distributed_model")
![](https://hpc.llnl.gov/sites/default/files/distributed_mem.gif "distributed memory model")

(Image courtesy of LLNL <https://computing.llnl.gov/tutorials/parallel_comp/>)

Expand All @@ -74,7 +72,7 @@ A split distributed/shared model is a hybrid between a shared and
distributed model and has the properties of both. Each separate set of
processors sharing a set of common memory is called a node.

![](https://computing.llnl.gov/tutorials/parallel_comp/images/hybrid_mem2.gif "hybrid_model")
![](https://hpc.llnl.gov/sites/default/files/hybrid_mem2.gif "hybrid_model")

(Image courtesy of LLNL <https://computing.llnl.gov/tutorials/parallel_comp/> )

Expand Down

0 comments on commit dbe0944

Please sign in to comment.