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 19, 2024
1 parent 024fc7e commit 76343aa
Show file tree
Hide file tree
Showing 43 changed files with 84 additions and 84 deletions.
2 changes: 1 addition & 1 deletion PR84/404.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions PR84/Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ version = "0.10.2"

[[deps.HTTP]]
deps = ["Base64", "CodecZlib", "ConcurrentUtilities", "Dates", "ExceptionUnwrapping", "Logging", "LoggingExtras", "MbedTLS", "NetworkOptions", "OpenSSL", "Random", "SimpleBufferStream", "Sockets", "URIs", "UUIDs"]
git-tree-sha1 = "db864f2d91f68a5912937af80327d288ea1f3aee"
git-tree-sha1 = "995f762e0182ebc50548c434c171a5bb6635f8e4"
uuid = "cd3eb016-35fb-5094-929b-558a96fad6f3"
version = "1.10.3"
version = "1.10.4"

[[deps.IOCapture]]
deps = ["Logging", "Random"]
Expand Down Expand Up @@ -273,9 +273,9 @@ deps = ["InteractiveUtils", "Logging", "Random", "Serialization"]
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[[deps.TranscodingStreams]]
git-tree-sha1 = "3caa21522e7efac1ba21834a03734c57b4611c7e"
git-tree-sha1 = "a09c933bebed12501890d8e92946bbab6a1690f1"
uuid = "3bb67fe8-82b1-5028-8e26-92a6c54297fa"
version = "0.10.4"
version = "0.10.5"
weakdeps = ["Random", "Test"]

[deps.TranscodingStreams.extensions]
Expand Down
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 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>
<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 19, 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.

Loading

0 comments on commit 76343aa

Please sign in to comment.