Skip to content

Commit

Permalink
Deploying to gh-pages from @ JuliaPackageComparisons/JuliaPackageComp…
Browse files Browse the repository at this point in the history
  • Loading branch information
KronosTheLate committed Mar 15, 2024
1 parent 2619641 commit db8e744
Show file tree
Hide file tree
Showing 42 changed files with 80 additions and 80 deletions.
2 changes: 1 addition & 1 deletion PR84/404.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/acceleration/loop_acceleration/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/acceleration/multithreading/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/data_structure/dataframes/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/data_structure/graphs/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/fileio/json/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/fileio/saving_files/index.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/graphics/plotting/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/interoperability/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/interoperability/python/index.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/math/bspline/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/math/differentiation/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/math/einsum/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/math/linear_solvers/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/math/nonlinear_solvers/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/math/quaternions/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/metrics/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/physics/units/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/probabilistic_programming/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/signal_processing/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/simulation/agentbasedmodelling/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/simulation/control_systems/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/testing/profiling/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/testing/property_based_testing/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/testing/runtime/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
julia&gt; println(<span class=hljs-string >&quot;Elapsed time: <span class=hljs-subst >$(t_final - t_initial)</span>&quot;</span>)
Elapsed time: <span class=hljs-number >0.3160099983215332</span></code></pre> <p>Let&#39;s run it again, this time using the <code>@time</code> macro, which is much more convenient:</p> <pre><code class="julia hljs">julia&gt; <span class=hljs-meta >@time</span> my_function(<span class=hljs-number >100</span>);
<span class=hljs-number >0.000626</span> seconds (<span class=hljs-number >12</span> allocations: <span class=hljs-number >207.406</span> KiB)</code></pre> <p>The results change a lot. This is mainly caused by the fact that <code>my_function</code> is compiled the first time we call it, but the compiled code is simply excecuted the next time. But even with the compilation done, the runtime varies:</p> <pre><code class="julia hljs">julia&gt; <span class=hljs-meta >@time</span> my_function(<span class=hljs-number >100</span>);
<span class=hljs-number >0.000660</span> seconds (<span class=hljs-number >12</span> allocations: <span class=hljs-number >207.406</span> KiB)</code></pre> <p>Measuring runtime is always noisy. It depends on what other things you system is doing, how hot your CPU is, and a lot of other compilated things. The thing to realize however is that all the noise sources add to the runtime. The least noisy runtime measurement is therefore the <em>minimal runtime for some number of runs</em>. The packages listed under <a href="#packages">Pakcages</a> will run your code in a loop, do fancy stuff like warmup, and help you find a balance between long waiting time, and accurate results, before returning this minimal runtime.</p> <div class=page-foot > <!-- Original content <a href="http://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a> {{ fill author }}. {{isnotpage /tag/*}}Last modified: {{ fill fd_mtime }}.{{end}} Website built with <a href="https://github.com/tlienart/Franklin.jl">Franklin.jl</a> and the <a href="https://julialang.org">Julia programming language</a>. --> <!-- Modified content--> This website is a community effort covering a lot of ever-changing information. It will therefore never be complete or without error. If you see something wrong, or have something to contribute, please see the "Contributing" section in the <a href="https://github.com/JuliaPackageComparisons/JuliaPackageComparisons.github.io">github repository</a></a>.<br><br> Last modified: March 14, 2024. Built with <a href="https://github.com/tlienart/Franklin.jl">Franklin.jl</a> </div> </div> </div> </div> </div> <!-- end of class page-wrap--> <script src="/preview/PR84/libs/highlight/highlight.min.js"></script> <script>hljs.highlightAll();hljs.configure({tabReplace: ' '});</script>
<span class=hljs-number >0.000660</span> seconds (<span class=hljs-number >12</span> allocations: <span class=hljs-number >207.406</span> KiB)</code></pre> <p>Measuring runtime is always noisy. It depends on what other things you system is doing, how hot your CPU is, and a lot of other compilated things. The thing to realize however is that all the noise sources add to the runtime. The least noisy runtime measurement is therefore the <em>minimal runtime for some number of runs</em>. The packages listed under <a href="#packages">Pakcages</a> will run your code in a loop, do fancy stuff like warmup, and help you find a balance between long waiting time, and accurate results, before returning this minimal runtime.</p> <div class=page-foot > <!-- Original content <a href="http://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a> {{ fill author }}. {{isnotpage /tag/*}}Last modified: {{ fill fd_mtime }}.{{end}} Website built with <a href="https://github.com/tlienart/Franklin.jl">Franklin.jl</a> and the <a href="https://julialang.org">Julia programming language</a>. --> <!-- Modified content--> This website is a community effort covering a lot of ever-changing information. It will therefore never be complete or without error. If you see something wrong, or have something to contribute, please see the "Contributing" section in the <a href="https://github.com/JuliaPackageComparisons/JuliaPackageComparisons.github.io">github repository</a></a>.<br><br> Last modified: March 15, 2024. Built with <a href="https://github.com/tlienart/Franklin.jl">Franklin.jl</a> </div> </div> </div> </div> </div> <!-- end of class page-wrap--> <script src="/preview/PR84/libs/highlight/highlight.min.js"></script> <script>hljs.highlightAll();hljs.configure({tabReplace: ' '});</script>
2 changes: 1 addition & 1 deletion PR84/comparisons/uncertainty_propagation/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/utility/notebooks/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/utility/package_templates/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/utility/piping/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/utility/redefinable_structs/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/utility/types_compactification/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/web/static_websites/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/comparisons/web/web_apps/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/contributing/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ <h3 id=create_a_new_meta-section ><a href="#create_a_new_meta-section" class=hea
This website is a community effort covering a
lot of ever-changing information. It will therefore never be complete or without error. If you see something wrong,
or have something to contribute, please see the "Contributing" section in the <a href="https://github.com/JuliaPackageComparisons/JuliaPackageComparisons.github.io">github repository</a></a>.<br><br>
Last modified: March 14, 2024. Built with <a href="https://github.com/tlienart/Franklin.jl">Franklin.jl</a>
Last modified: March 15, 2024. Built with <a href="https://github.com/tlienart/Franklin.jl">Franklin.jl</a>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion PR84/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/libs/lunr/lunr_index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion PR84/search/index.html

Large diffs are not rendered by default.

78 changes: 39 additions & 39 deletions PR84/sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,235 +3,235 @@

<url>
<loc>comparisons/math/differentiation/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/utility/redefinable_structs/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/math/linear_solvers/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/web/static_websites/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/machine_learning/machine_learning_datasets/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>contributing/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/testing/profiling/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/uncertainty_propagation/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/utility/piping/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/utility/types_compactification/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/simulation/agentbasedmodelling/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/math/nonlinear_solvers/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/signal_processing/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/math/einsum/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/geometry/triangulations_or_tessellations/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/acceleration/loop_acceleration/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/acceleration/multithreading/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/machine_learning/neural_networks/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/data_structure/graphs/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/web/web_apps/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/utility/notebooks/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/fileio/saving_files/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>search/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/math/quaternions/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/testing/runtime/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/metrics/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/simulation/control_systems/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/data_structure/dataframes/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/interoperability/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/machine_learning/machine_learning/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/testing/property_based_testing/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/utility/package_templates/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/graphics/plotting/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/math/bspline/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/probabilistic_programming/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/interoperability/python/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/physics/units/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>comparisons/fileio/json/index.html</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
Expand Down

0 comments on commit db8e744

Please sign in to comment.