Skip to content

Commit

Permalink
build based on 7f655a0
Browse files Browse the repository at this point in the history
  • Loading branch information
Documenter.jl committed Oct 20, 2023
1 parent 4eb4016 commit b828ca7
Show file tree
Hide file tree
Showing 31 changed files with 100 additions and 100 deletions.
2 changes: 1 addition & 1 deletion previews/PR785/.documenter-siteinfo.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"documenter":{"julia_version":"1.9.3","generation_timestamp":"2023-10-19T19:57:12","documenter_version":"1.1.1"}}
{"documenter":{"julia_version":"1.9.3","generation_timestamp":"2023-10-20T09:46:41","documenter_version":"1.1.1"}}
2 changes: 1 addition & 1 deletion previews/PR785/configuration/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions previews/PR785/examples/01-hello/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
comm = MPI.COMM_WORLD
print("Hello world, I am rank $(MPI.Comm_rank(comm)) of $(MPI.Comm_size(comm))\n")
MPI.Barrier(comm)</code></pre><pre><code class="nohighlight hljs">&gt; mpiexecjl -n 4 julia examples/01-hello.jl
Hello world, I am rank 0 of 4
Hello world, I am rank 2 of 4
Hello world, I am rank 1 of 4
Hello world, I am rank 3 of 4
Hello world, I am rank 0 of 4</code></pre></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../../knownissues/">« Known issues</a><a class="docs-footer-nextpage" href="../02-broadcast/">Broadcast »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="auto">Automatic (OS)</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.1.1 on <span class="colophon-date" title="Thursday 19 October 2023 19:57">Thursday 19 October 2023</span>. Using Julia version 1.9.3.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
Hello world, I am rank 1 of 4</code></pre></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../../knownissues/">« Known issues</a><a class="docs-footer-nextpage" href="../02-broadcast/">Broadcast »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="auto">Automatic (OS)</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.1.1 on <span class="colophon-date" title="Friday 20 October 2023 09:46">Friday 20 October 2023</span>. Using Julia version 1.9.3.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
8 changes: 4 additions & 4 deletions previews/PR785/examples/02-broadcast/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@
f = MPI.bcast(f, root, comm)
print(&quot;rank = $(MPI.Comm_rank(comm)), f(3) = $(f(3))\n&quot;)</code></pre><pre><code class="nohighlight hljs">&gt; mpiexecjl -n 4 julia examples/02-broadcast.jl
Running on 4 processes
rank = 2, A = ComplexF64[1.0 + 2.0im, 2.0 + 4.0im, 3.0 + 6.0im, 4.0 + 8.0im, 5.0 + 10.0im]
rank = 0, A = ComplexF64[1.0 + 2.0im, 2.0 + 4.0im, 3.0 + 6.0im, 4.0 + 8.0im, 5.0 + 10.0im]
rank = 1, A = ComplexF64[1.0 + 2.0im, 2.0 + 4.0im, 3.0 + 6.0im, 4.0 + 8.0im, 5.0 + 10.0im]
rank = 0, A = ComplexF64[1.0 + 2.0im, 2.0 + 4.0im, 3.0 + 6.0im, 4.0 + 8.0im, 5.0 + 10.0im]
rank = 2, A = ComplexF64[1.0 + 2.0im, 2.0 + 4.0im, 3.0 + 6.0im, 4.0 + 8.0im, 5.0 + 10.0im]
rank = 3, A = ComplexF64[1.0 + 2.0im, 2.0 + 4.0im, 3.0 + 6.0im, 4.0 + 8.0im, 5.0 + 10.0im]
rank = 0, B = Dict(&quot;foo&quot; =&gt; &quot;bar&quot;)
rank = 3, B = Dict(&quot;foo&quot; =&gt; &quot;bar&quot;)
rank = 2, B = Dict(&quot;foo&quot; =&gt; &quot;bar&quot;)
rank = 1, B = Dict(&quot;foo&quot; =&gt; &quot;bar&quot;)
rank = 0, f(3) = 14
rank = 3, f(3) = 14
rank = 1, f(3) = 14
rank = 2, f(3) = 14
rank = 3, f(3) = 14</code></pre></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../01-hello/">« Hello world</a><a class="docs-footer-nextpage" href="../03-reduce/">Reduce »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="auto">Automatic (OS)</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.1.1 on <span class="colophon-date" title="Thursday 19 October 2023 19:57">Thursday 19 October 2023</span>. Using Julia version 1.9.3.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
rank = 2, f(3) = 14</code></pre></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../01-hello/">« Hello world</a><a class="docs-footer-nextpage" href="../03-reduce/">Reduce »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="auto">Automatic (OS)</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.1.1 on <span class="colophon-date" title="Friday 20 October 2023 09:46">Friday 20 October 2023</span>. Using Julia version 1.9.3.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
4 changes: 2 additions & 2 deletions previews/PR785/examples/03-reduce/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@
col_var = map(summ -&gt; summ.var, col_summ)
@show col_var
end</code></pre><pre><code class="nohighlight hljs">&gt; mpiexecjl -n 4 julia examples/03-reduce.jl
summ.var = 19.40132416916939
col_var = [0.9613528858316516 9.665652881563986 45.00220371552835]</code></pre></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../02-broadcast/">« Broadcast</a><a class="docs-footer-nextpage" href="../04-sendrecv/">Send/receive »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="auto">Automatic (OS)</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.1.1 on <span class="colophon-date" title="Thursday 19 October 2023 19:57">Thursday 19 October 2023</span>. Using Julia version 1.9.3.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
summ.var = 21.53345793365623
col_var = [1.1004859174417974 8.049588072502605 54.10047680717387]</code></pre></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../02-broadcast/">« Broadcast</a><a class="docs-footer-nextpage" href="../04-sendrecv/">Send/receive »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="auto">Automatic (OS)</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.1.1 on <span class="colophon-date" title="Friday 20 October 2023 09:46">Friday 20 October 2023</span>. Using Julia version 1.9.3.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
8 changes: 4 additions & 4 deletions previews/PR785/examples/04-sendrecv/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@

MPI.Barrier(comm)</code></pre><pre><code class="nohighlight hljs">&gt; mpiexecjl -n 4 julia examples/04-sendrecv.jl
2: Sending 2 -&gt; 3 = [2.0, 2.0, 2.0, 2.0]
3: Sending 3 -&gt; 0 = [3.0, 3.0, 3.0, 3.0]
1: Sending 1 -&gt; 2 = [1.0, 1.0, 1.0, 1.0]
3: Sending 3 -&gt; 0 = [3.0, 3.0, 3.0, 3.0]
0: Sending 0 -&gt; 1 = [0.0, 0.0, 0.0, 0.0]
3: Received 2 -&gt; 3 = [2.0, 2.0, 2.0, 2.0]
1: Received 0 -&gt; 1 = [0.0, 0.0, 0.0, 0.0]
2: Received 1 -&gt; 2 = [1.0, 1.0, 1.0, 1.0]
0: Received 3 -&gt; 0 = [3.0, 3.0, 3.0, 3.0]</code></pre></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../03-reduce/">« Reduce</a><a class="docs-footer-nextpage" href="../05-job_schedule/">Job Scheduling »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="auto">Automatic (OS)</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.1.1 on <span class="colophon-date" title="Thursday 19 October 2023 19:57">Thursday 19 October 2023</span>. Using Julia version 1.9.3.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
1: Received 0 -&gt; 1 = [0.0, 0.0, 0.0, 0.0]
3: Received 2 -&gt; 3 = [2.0, 2.0, 2.0, 2.0]
0: Received 3 -&gt; 0 = [3.0, 3.0, 3.0, 3.0]</code></pre></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../03-reduce/">« Reduce</a><a class="docs-footer-nextpage" href="../05-job_schedule/">Job Scheduling »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="auto">Automatic (OS)</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.1.1 on <span class="colophon-date" title="Friday 20 October 2023 09:46">Friday 20 October 2023</span>. Using Julia version 1.9.3.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
22 changes: 11 additions & 11 deletions previews/PR785/examples/05-job_schedule/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -133,24 +133,22 @@
f = x -&gt; x.+100
data = collect(1:10)
job_queue(data,f)</code></pre><pre><code class="nohighlight hljs">&gt; mpiexecjl -n 4 julia examples/05-job_schedule.jl
Worker 1: Received number 1 from root
Root: Sent number 1 to Worker 1
Root: Sent number 2 to Worker 2
Root: Sent number 3 to Worker 3
Worker 1: Received number 1 from root
Worker 2: Received number 2 from root
Root: Received number 101 from Worker 1
Root: Sent number 4 to Worker 1
Root: Received number 102 from Worker 2
Root: Sent number 5 to Worker 2
Worker 1: Received number 4 from root
Root: Received number 104 from Worker 1
Root: Sent number 5 to Worker 1
Worker 1: Received number 5 from root
Root: Received number 105 from Worker 1
Root: Sent number 6 to Worker 1
Worker 1: Received number 6 from root
Root: Received number 106 from Worker 1
Root: Sent number 7 to Worker 1
Worker 2: Received number 2 from root
Worker 1: Received number 7 from root
Worker 3: Received number 3 from root
Root: Received number 107 from Worker 1
Root: Sent number 8 to Worker 1
Worker 1: Received number 8 from root
Expand All @@ -161,12 +159,14 @@
Root: Sent number 10 to Worker 1
Worker 1: Received number 10 from root
Root: Received number 110 from Worker 1
Root: Received number 102 from Worker 2
Worker 2: Received number 5 from root
Worker 3: Received number 3 from root
Root: Received number 105 from Worker 2
Root: Received number 103 from Worker 3
Root: Finish Worker 1
Root: Finish Worker 2
Worker 2: Finish
Root: Finish Worker 3
Root: New data = [101, 104, 105, 106, 107, 108, 109, 110, 102, 103]
Worker 1: Finish
Worker 3: Finish</code></pre></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../04-sendrecv/">« Send/receive</a><a class="docs-footer-nextpage" href="../06-scatterv/">Scatterv and Gatherv »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="auto">Automatic (OS)</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.1.1 on <span class="colophon-date" title="Thursday 19 October 2023 19:57">Thursday 19 October 2023</span>. Using Julia version 1.9.3.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
Worker 3: Finish
Root: New data = [101, 102, 104, 106, 107, 108, 109, 110, 105, 103]
Worker 2: Finish
Worker 1: Finish</code></pre></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../04-sendrecv/">« Send/receive</a><a class="docs-footer-nextpage" href="../06-scatterv/">Scatterv and Gatherv »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="auto">Automatic (OS)</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.1.1 on <span class="colophon-date" title="Friday 20 October 2023 09:46">Friday 20 October 2023</span>. Using Julia version 1.9.3.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
2 changes: 1 addition & 1 deletion previews/PR785/examples/06-scatterv/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,4 @@

Final matrix
================
output = [1.0 1.0 1.0 1.0 1.0 1.0 1.0; 2.0 2.0 2.0 2.0 2.0 2.0 2.0; 3.0 3.0 3.0 3.0 3.0 3.0 3.0; 4.0 4.0 4.0 4.0 4.0 4.0 4.0]</code></pre></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../05-job_schedule/">« Job Scheduling</a><a class="docs-footer-nextpage" href="../07-rma_active/">Active RMA »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="auto">Automatic (OS)</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.1.1 on <span class="colophon-date" title="Thursday 19 October 2023 19:57">Thursday 19 October 2023</span>. Using Julia version 1.9.3.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
output = [1.0 1.0 1.0 1.0 1.0 1.0 1.0; 2.0 2.0 2.0 2.0 2.0 2.0 2.0; 3.0 3.0 3.0 3.0 3.0 3.0 3.0; 4.0 4.0 4.0 4.0 4.0 4.0 4.0]</code></pre></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../05-job_schedule/">« Job Scheduling</a><a class="docs-footer-nextpage" href="../07-rma_active/">Active RMA »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="auto">Automatic (OS)</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.1.1 on <span class="colophon-date" title="Friday 20 October 2023 09:46">Friday 20 October 2023</span>. Using Julia version 1.9.3.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
Loading

0 comments on commit b828ca7

Please sign in to comment.