From 9fddf1a46bb39e7e1c101a23a570287e7ab6592e Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Nov 2024 15:38:31 +0000 Subject: [PATCH] Update README and version --- README.md | 50 +++++++++++++++++++++++++------------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index 8ed2383..8b7c91f 100644 --- a/README.md +++ b/README.md @@ -89,38 +89,38 @@ Solves a 2D Laplace problem using Finite Differences methods. The code is adapte Runs a molecular dynamics simulation. The code is adapted from examples written by [J. Burkardt](https://people.sc.fsu.edu/~jburkardt/py_src/py_src.html) ## Development branch results -### Performance Comparison (as of Mon Nov 4 17:21:44 UTC 2024) +### Performance Comparison (as of Tue Nov 5 15:38:11 UTC 2024) ## Compilation time Algorithm | python | pythran_gnu | pythran_intel | numba | pyccel_fortran_gnu | pyccel_c_gnu | pyccel_fortran_intel | pyccel_c_intel ------------------------- | ------------------------- | ------------------------- | ------------------------- | ------------------------- | ------------------------- | ------------------------- | ------------------------- | ------------------------- -Ackermann | - | 2.34 | 2.13 | 0.33 | 1.34 | 1.33 | 1.43 | 1.39 -Bellman Ford | - | 3.48 | 3.71 | 1.10 | 3.70 | 4.01 | 3.81 | 4.01 -Dijkstra | - | 2.43 | 2.70 | 1.64 | 3.77 | 4.04 | 3.92 | 4.12 -Euler | - | 2.73 | 3.11 | 2.08 | 3.66 | 3.99 | 3.82 | 4.02 -Midpoint Explicit | - | 3.19 | 3.51 | 3.08 | 3.89 | 4.25 | 4.03 | 4.23 -Midpoint Fixed | - | 3.69 | 4.10 | 3.36 | 4.00 | 4.34 | 4.17 | 4.32 -RK4 | - | 3.85 | 4.27 | 3.90 | 4.38 | 4.69 | 4.54 | 4.71 -FD - L Convection | - | 2.34 | 2.69 | 0.91 | 1.42 | 3.96 | 1.60 | 3.98 -FD - NL Convection | - | 3.40 | 3.71 | 0.93 | 1.47 | 3.96 | 1.62 | 3.96 -FD - Poisson | - | 3.43 | 3.75 | 1.36 | 1.53 | 4.11 | 2.90 | 4.08 -FD - Laplace | - | 6.88 | 8.21 | 3.07 | 1.84 | 4.37 | 2.16 | 4.33 -M-D | - | 6.46 | 6.80 | 4.09 | - | - | - | - +Ackermann | - | 2.25 | 2.11 | 0.33 | 1.32 | 1.29 | 1.36 | 1.41 +Bellman Ford | - | 3.46 | 3.77 | 1.09 | 3.65 | 3.97 | 3.79 | 4.05 +Dijkstra | - | 2.39 | 2.66 | 1.60 | 3.70 | 3.97 | 3.89 | 4.02 +Euler | - | 2.78 | 3.11 | 2.09 | 3.70 | 4.02 | 3.81 | 4.07 +Midpoint Explicit | - | 3.19 | 3.61 | 3.13 | 3.96 | 4.29 | 4.07 | 4.24 +Midpoint Fixed | - | 3.56 | 3.99 | 3.24 | 3.93 | 4.33 | 4.16 | 4.43 +RK4 | - | 3.75 | 4.23 | 3.78 | 4.38 | 4.67 | 4.49 | 4.69 +FD - L Convection | - | 2.36 | 2.70 | 0.88 | 1.41 | 3.95 | 1.59 | 3.96 +FD - NL Convection | - | 3.35 | 3.60 | 0.90 | 1.42 | 3.98 | 1.62 | 3.94 +FD - Poisson | - | 3.54 | 3.89 | 1.39 | 1.56 | 4.16 | 3.00 | 4.17 +FD - Laplace | - | 6.93 | 8.48 | 3.19 | 1.87 | 4.49 | 2.15 | 4.46 +M-D | - | 6.81 | 7.10 | 4.16 | - | - | - | - ## Execution time Algorithm | python | pythran_gnu | pythran_intel | numba | pyccel_fortran_gnu | pyccel_c_gnu | pyccel_fortran_intel | pyccel_c_intel ------------------------- | ------------------------- | ------------------------- | ------------------------- | ------------------------- | ------------------------- | ------------------------- | ------------------------- | ------------------------- -Ackermann (ms) | 295.00 | 2.87 | 3.03 | 9.72 | 1.55 | 1.59 | 8.74 | 4.36 -Bellman Ford (ms) | 1740.00 | 5.22 | 3.42 | 3.78 | 2.99 | 6.09 | - | 19.00 -Dijkstra (ms) | 4890.00 | 25.40 | 17.40 | 20.20 | 19.90 | 31.20 | - | 22.10 -Euler (ms) | 3920.00 | 26.60 | 25.50 | 37.30 | 14.60 | 142.00 | 14.20 | 167.00 -Midpoint Explicit (ms) | 7920.00 | 52.50 | 51.80 | 83.30 | 27.60 | 282.00 | 15.90 | 250.00 -Midpoint Fixed (ms) | 40100.00 | 252.00 | 93.20 | 376.00 | 76.50 | 1440.00 | 57.50 | 1250.00 -RK4 (ms) | 19900.00 | 162.00 | 36.40 | 144.00 | 35.70 | 489.00 | 38.00 | 404.00 -FD - L Convection (ms) | 2210.00 | 1.64 | 1.61 | 2.63 | 1.63 | 1.62 | - | 4.08 -FD - NL Convection (ms) | 2730.00 | 1.78 | 1.74 | 2.79 | 1.98 | 2.19 | - | 4.11 -FD - Poisson (ms) | 6270.00 | 2.90 | 5.48 | 7.18 | 2.78 | 3.80 | - | 4.96 -FD - Laplace (ms) | 582.00 | 64.60 | 144.00 | 246.00 | 63.20 | 259.00 | - | 274.00 -M-D (ms) | 14800.00 | 15.20 | 53.30 | 59.10 | - | - | - | - +Ackermann (ms) | 289.00 | 2.88 | 3.03 | 9.74 | 1.55 | 1.55 | 9.18 | 4.36 +Bellman Ford (ms) | 1790.00 | 5.21 | 3.42 | 3.79 | 2.99 | 5.96 | - | 18.90 +Dijkstra (ms) | 4950.00 | 25.80 | 16.40 | 20.10 | 19.10 | 30.80 | - | 22.30 +Euler (ms) | 3870.00 | 25.30 | 25.80 | 37.80 | 15.90 | 143.00 | 14.20 | 128.00 +Midpoint Explicit (ms) | 8040.00 | 52.60 | 52.60 | 78.60 | 23.20 | 281.00 | 17.30 | 253.00 +Midpoint Fixed (ms) | 39800.00 | 251.00 | 92.50 | 374.00 | 75.20 | 1400.00 | 57.90 | 1210.00 +RK4 (ms) | 20100.00 | 159.00 | 36.90 | 137.00 | 33.20 | 489.00 | 38.50 | 402.00 +FD - L Convection (ms) | 2190.00 | 1.64 | 1.64 | 2.74 | 1.53 | 1.62 | - | 4.32 +FD - NL Convection (ms) | 2680.00 | 1.77 | 1.64 | 2.79 | 2.00 | 1.98 | - | 4.10 +FD - Poisson (ms) | 6030.00 | 3.07 | 5.43 | 7.26 | 2.76 | 3.80 | - | 4.96 +FD - Laplace (ms) | 582.00 | 64.80 | 144.00 | 245.00 | 58.70 | 255.00 | - | 274.00 +M-D (ms) | 15100.00 | 15.20 | 52.90 | 59.10 | - | - | - | - ![Development compilation results](./version_specific_results/devel_performance_310_compilation.svg) ![Development execution results](./version_specific_results/devel_performance_310_execution.svg)