Skip to content

Commit

Permalink
Deploying to gh-pages from @ 428ee68 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
gha3mi committed Dec 14, 2023
1 parent 234fc57 commit fa15b25
Show file tree
Hide file tree
Showing 73 changed files with 316 additions and 320 deletions.
30 changes: 13 additions & 17 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ <h1>ForMatmul</h1>
<a href="https://github.com/gha3mi/formatmul/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/github/license/gha3mi/formatmul?color=green"></a>
<a href="https://github.com/gha3mi/formatmul/actions/workflows/CI_test.yml"><img alt="Build" src="https://github.com/gha3mi/formatmul/actions/workflows/CI_test.yml/badge.svg"></a></p>
<p><img alt="ForMatmul" src="https://github.com/gha3mi/formatmul/raw/main/media/logo.png" width="750"></p>
<p><strong>ForMatmul</strong>: A Fortran library that overloads the <code>matmul</code> function to enable efficient matrix multiplication with coarray.</p>
<p><strong>ForMatmul</strong>: A Fortran library that overloads the <code>matmul</code> function to enable efficient matrix multiplication with/without coarray.</p>
<h2>Usage</h2>
<div class="codehilite"><pre><span></span><code><span class="k">use </span><span class="n">formatmul</span>

Expand Down Expand Up @@ -153,42 +153,38 @@ <h2>How to run tests and examples</h2>
<p><strong>Benchmark:</strong></p>
<p>To set the stack size to unlimited, use the following command: <code>ulimit -s unlimited</code>.</p>
<p><strong>Intel Fortran Compiler (ifort)</strong></p>
<div class="codehilite"><pre><span></span><code>fpm<span class="w"> </span>run<span class="w"> </span>--example<span class="w"> </span>benchmark3<span class="w"> </span>--compiler<span class="w"> </span>ifort<span class="w"> </span>--flag<span class="w"> </span><span class="s2">&quot;-Ofast -xHost -qopenmp -qmkl -coarray -coarray-num-images=4 -DUSE_COARRAY&quot;</span>
<div class="codehilite"><pre><span></span><code>fpm<span class="w"> </span>run<span class="w"> </span>--example<span class="w"> </span>benchmark3<span class="w"> </span>--compiler<span class="w"> </span>ifort<span class="w"> </span>--flag<span class="w"> </span><span class="s2">&quot;-Ofast -mtune=native -xHost -qmkl -qopenmp -ipo -coarray -coarray-num-images=4 -DUSE_COARRAY&quot;</span>
</code></pre></div>

<p><strong>Intel Fortran Compiler (ifx)</strong></p>
<div class="codehilite"><pre><span></span><code>fpm<span class="w"> </span>run<span class="w"> </span>--example<span class="w"> </span>benchmark3<span class="w"> </span>--compiler<span class="w"> </span>ifx<span class="w"> </span>--flag<span class="w"> </span><span class="s2">&quot;-Ofast -xHost -qopenmp -qmkl -coarray -coarray-num-images=4 -DUSE_COARRAY&quot;</span>
<div class="codehilite"><pre><span></span><code>fpm<span class="w"> </span>run<span class="w"> </span>--example<span class="w"> </span>--all<span class="w"> </span>--compiler<span class="w"> </span>ifx<span class="w"> </span>--flag<span class="w"> </span><span class="s2">&quot;-Ofast -mtune=native -xHost -qmkl -qopenmp -coarray -coarray-num-images=4 -DUSE_COARRAY&quot;</span>
</code></pre></div>

<p>You can then use the provided Python script to generate visual plots for the benchmark3 data:</p>
<div class="codehilite"><pre><span></span><code>python<span class="w"> </span>benchmark/benchmark3_co.py
</code></pre></div>

<p>Results obtained on an <code>Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz</code> using <code>ifort (IFORT) 2021.10.0 20230609</code> are as follows:</p>
<p>Results obtained on an <code>Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz</code> using <code>ifort (IFORT) 2021.11.0 20231010</code> are as follows:</p>
<ul>
<li>with <code>-coarray-num-images=4</code>, <code>MKL_NUM_THREADS=1</code> and <code>OMP_NUM_THREADS=1</code>:</li>
</ul>
<p><img alt="ForMatmul" src="https://github.com/gha3mi/formatmul/raw/main/benchmark/singlethread/benchmark3a_nim4.png" width="750"></p>
<p><img alt="ForMatmul" src="https://github.com/gha3mi/formatmul/raw/main/benchmark/singlethread/benchmark3t_nim4.png" width="350">
<img alt="ForMatmul" src="https://github.com/gha3mi/formatmul/raw/main/benchmark/singlethread/benchmark3p_nim4.png" width="350"></p>
<ul>
<li>with <code>-coarray-num-images=4</code> and Multithread:</li>
</ul>
<p><img alt="ForMatmul" src="https://github.com/gha3mi/formatmul/raw/main/benchmark/multithread/benchmark3a_nim4.png" width="750"></p>
<p><img alt="ForMatmul" src="https://github.com/gha3mi/formatmul/raw/main/benchmark/multithread/benchmark3t_nim4.png" width="350">
<img alt="ForMatmul" src="https://github.com/gha3mi/formatmul/raw/main/benchmark/multithread/benchmark3p_nim4.png" width="350"></p>
<ul>
<li>with <code>-coarray-num-images=5</code>, <code>MKL_NUM_THREADS=1</code> and <code>OMP_NUM_THREADS=1</code>:</li>
</ul>
<p><img alt="ForMatmul" src="https://github.com/gha3mi/formatmul/raw/main/benchmark/singlethread/benchmark3a_nim5.png" width="750"></p>
<p><img alt="ForMatmul" src="https://github.com/gha3mi/formatmul/raw/main/benchmark/singlethread/benchmark3t_nim5.png" width="350">
<img alt="ForMatmul" src="https://github.com/gha3mi/formatmul/raw/main/benchmark/singlethread/benchmark3p_nim5.png" width="350"></p>
<ul>
<li>with <code>-coarray-num-images=5</code> and Multithread:</li>
</ul>
<p><img alt="ForMatmul" src="https://github.com/gha3mi/formatmul/raw/main/benchmark/multithread/benchmark3a_nim5.png" width="750"></p>
<ul>
<li>with <code>-coarray-num-images=6</code>, <code>MKL_NUM_THREADS=1</code> and <code>OMP_NUM_THREADS=1</code>:</li>
</ul>
<p><img alt="ForMatmul" src="https://github.com/gha3mi/formatmul/raw/main/benchmark/singlethread/benchmark3a_nim6.png" width="750"></p>
<ul>
<li>with <code>-coarray-num-images=6</code> and Multithread:</li>
</ul>
<p><img alt="ForMatmul" src="https://github.com/gha3mi/formatmul/raw/main/benchmark/multithread/benchmark3a_nim6.png" width="750"></p>
<p><img alt="ForMatmul" src="https://github.com/gha3mi/formatmul/raw/main/benchmark/multithread/benchmark3t_nim5.png" width="350">
<img alt="ForMatmul" src="https://github.com/gha3mi/formatmul/raw/main/benchmark/multithread/benchmark3p_nim5.png" width="350"></p>
<h2>API documentation</h2>
<p>The most up-to-date API documentation for the master branch is available
<a href="https://gha3mi.github.io/formatmul/">here</a>.
Expand Down Expand Up @@ -262,7 +258,7 @@ <h3>Procedures</h3>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion interface/matmul.html
Original file line number Diff line number Diff line change
Expand Up @@ -951,7 +951,7 @@ <h4>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion interface/matmul_blas.html
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ <h4>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion interface/matmul_opts.html
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ <h4>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion lists/files.html
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ <h4 class="modal-title" id="-graph-help-label">Graph Key</h4>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion lists/modules.html
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ <h4 class="modal-title" id="-graph-help-label">Graph Key</h4>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion lists/procedures.html
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ <h4 class="modal-title" id="-graph-help-label">Graph Key</h4>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion lists/programs.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ <h1>Programs</h1>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion module/formatmul.html
Original file line number Diff line number Diff line change
Expand Up @@ -1101,7 +1101,7 @@ <h4>Arguments</h4>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion module/formatmul_benchmark.html
Original file line number Diff line number Diff line change
Expand Up @@ -1029,7 +1029,7 @@ <h4>Arguments</h4>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion module/formatmul_opts.html
Original file line number Diff line number Diff line change
Expand Up @@ -2949,7 +2949,7 @@ <h4>Arguments</h4>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/compute_block_ranges.html
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/gemm_mat_mat_rel.html
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/gemv_mat_vec_rel.html
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/impure_mm_12.html
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/impure_mm_13.html
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/mat_mat.html
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/mat_vec.html
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/matmul_mat_mat_rel_opts.html
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/matmul_mat_vec_rel_opts.html
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/mm_10.html
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/mm_11.html
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/mm_12.html
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/mm_13.html
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/mm_9.html
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/mm_mnp.html
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/mm_mpn.html
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/mm_nmp.html
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/mm_npm.html
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/mm_pmn.html
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/mm_pnm.html
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/mv_3.html
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/mv_4.html
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/mv_5.html
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/mv_6.html
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/start_benchmark.html
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion proc/stop_benchmark.html
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ <h2><span class="anchor" id="src"></span>Source Code</h2>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2023-12-14T18:07:25.398471 </p>
on 2023-12-14T18:50:46.650924 </p>
</div>
</div>
<br>
Expand Down
Loading

0 comments on commit fa15b25

Please sign in to comment.