06 September 2018 11:27:09 AM DIJKSTRA_OPENMP C version Use Dijkstra's algorithm to determine the minimum distance from node 0 to each node in a graph, given the distances between each pair of nodes. Although a very small example is considered, we demonstrate the use of OpenMP directives for parallel execution. Distance matrix: 0 40 15 Inf Inf Inf 40 0 20 10 25 6 15 20 0 100 Inf Inf Inf 10 100 0 Inf Inf Inf 25 Inf Inf 0 8 Inf 6 Inf Inf 8 0 P0: Parallel region begins with 1 threads P0: First=0 Last=5 P0: Connecting node 2. P0: Connecting node 1. P0: Connecting node 5. P0: Connecting node 3. P0: Connecting node 4. P0: Exiting parallel region. Minimum distances from node 0: 0 0 1 35 2 15 3 45 4 49 5 41 DIJKSTRA_OPENMP Normal end of execution. 06 September 2018 11:27:09 AM 06 September 2018 11:27:09 AM DIJKSTRA_OPENMP C version Use Dijkstra's algorithm to determine the minimum distance from node 0 to each node in a graph, given the distances between each pair of nodes. Although a very small example is considered, we demonstrate the use of OpenMP directives for parallel execution. Distance matrix: 0 40 15 Inf Inf Inf 40 0 20 10 25 6 15 20 0 100 Inf Inf Inf 10 100 0 Inf Inf Inf 25 Inf Inf 0 8 Inf 6 Inf Inf 8 0 P0: Parallel region begins with 2 threads P1: First=3 Last=5 P0: First=0 Last=2 P1: Connecting node 2. P0: Connecting node 1. P1: Connecting node 5. P1: Connecting node 3. P1: Connecting node 4. P1: Exiting parallel region. Minimum distances from node 0: 0 0 1 35 2 15 3 45 4 49 5 41 DIJKSTRA_OPENMP Normal end of execution. 06 September 2018 11:27:09 AM 06 September 2018 11:27:09 AM DIJKSTRA_OPENMP C version Use Dijkstra's algorithm to determine the minimum distance from node 0 to each node in a graph, given the distances between each pair of nodes. Although a very small example is considered, we demonstrate the use of OpenMP directives for parallel execution. Distance matrix: 0 40 15 Inf Inf Inf 40 0 20 10 25 6 15 20 0 100 Inf Inf Inf 10 100 0 Inf Inf Inf 25 Inf Inf 0 8 Inf 6 Inf Inf 8 0 P2: Parallel region begins with 4 threads P0: First=0 Last=0 P1: First=1 Last=2 P2: First=3 Last=3 P3: First=4 Last=5 P0: Connecting node 2. P3: Connecting node 1. P0: Connecting node 5. P3: Connecting node 3. P2: Connecting node 4. P0: Exiting parallel region. Minimum distances from node 0: 0 0 1 35 2 15 3 45 4 49 5 41 DIJKSTRA_OPENMP Normal end of execution. 06 September 2018 11:27:09 AM