diff --git a/reports/1000_decimals.md b/reports/1000_decimals.md index 7f72d43..248fb4c 100644 --- a/reports/1000_decimals.md +++ b/reports/1000_decimals.md @@ -54,23 +54,6 @@ | 31 | Scala | 372 | 56661333 | JIT | | 32 | TypeScript | 990 | 225329152 | Interpreted | -### Performance Analysis - -**Top Performers:** -- Fastest execution times for compiled languages -- Minimal memory usage for native code -- Consistent performance across decimal levels - -**Memory Efficiency:** -- Compiled languages: 1-6 MB -- JIT languages: 14-236 MB -- Interpreted languages: 2-29 MB - -**Key Findings:** -- Compiled languages dominate in both speed and memory efficiency -- JIT languages show moderate performance with higher memory usage -- Interpreted languages vary widely in performance - ## Detailed Results See the full test output in `reports/run_1000_output.txt`. diff --git a/reports/100_decimals.md b/reports/100_decimals.md index 9f1f40d..8a6a792 100644 --- a/reports/100_decimals.md +++ b/reports/100_decimals.md @@ -54,23 +54,6 @@ | 31 | Scala | 344 | 55470762 | JIT | | 32 | TypeScript | 931 | 218868394 | Interpreted | -### Performance Analysis - -**Top Performers:** -- Fastest execution times for compiled languages -- Minimal memory usage for native code -- Consistent performance across decimal levels - -**Memory Efficiency:** -- Compiled languages: 1-6 MB -- JIT languages: 14-236 MB -- Interpreted languages: 2-29 MB - -**Key Findings:** -- Compiled languages dominate in both speed and memory efficiency -- JIT languages show moderate performance with higher memory usage -- Interpreted languages vary widely in performance - ## Detailed Results See the full test output in `reports/run_100_output.txt`. diff --git a/reports/10_decimals.md b/reports/10_decimals.md index c69d383..b6f4c63 100644 --- a/reports/10_decimals.md +++ b/reports/10_decimals.md @@ -54,23 +54,6 @@ | 31 | Scala | 351 | 55274154 | JIT | | 32 | TypeScript | 878 | 218234880 | Interpreted | -### Performance Analysis - -**Top Performers:** -- Fastest execution times for compiled languages -- Minimal memory usage for native code -- Consistent performance across decimal levels - -**Memory Efficiency:** -- Compiled languages: 1-6 MB -- JIT languages: 14-236 MB -- Interpreted languages: 2-29 MB - -**Key Findings:** -- Compiled languages dominate in both speed and memory efficiency -- JIT languages show moderate performance with higher memory usage -- Interpreted languages vary widely in performance - ## Detailed Results See the full test output in `reports/run_10_output.txt`. diff --git a/reports/1_decimals.md b/reports/1_decimals.md index e3c6dda..37bc7e2 100644 --- a/reports/1_decimals.md +++ b/reports/1_decimals.md @@ -40,23 +40,6 @@ | 17 | Erlang | 176 | 77359786 | Interpreted | | 18 | Elixir | 401 | 89205418 | Interpreted | -### Performance Analysis - -**Top Performers:** -- Fastest execution times for compiled languages -- Minimal memory usage for native code -- Consistent performance across decimal levels - -**Memory Efficiency:** -- Compiled languages: 1-6 MB -- JIT languages: 14-236 MB -- Interpreted languages: 2-29 MB - -**Key Findings:** -- Compiled languages dominate in both speed and memory efficiency -- JIT languages show moderate performance with higher memory usage -- Interpreted languages vary widely in performance - ## Detailed Results See the full test output in `reports/run_1_output.txt`. diff --git a/reports/2000_decimals.md b/reports/2000_decimals.md index 99d8a97..6b8dc96 100644 --- a/reports/2000_decimals.md +++ b/reports/2000_decimals.md @@ -54,23 +54,6 @@ | 31 | JavaScript | 498 | 55252309 | Interpreted | | 32 | TypeScript | 1296 | 223188309 | Interpreted | -### Performance Analysis - -**Top Performers:** -- Fastest execution times for compiled languages -- Minimal memory usage for native code -- Consistent performance across decimal levels - -**Memory Efficiency:** -- Compiled languages: 1-6 MB -- JIT languages: 14-236 MB -- Interpreted languages: 2-29 MB - -**Key Findings:** -- Compiled languages dominate in both speed and memory efficiency -- JIT languages show moderate performance with higher memory usage -- Interpreted languages vary widely in performance - ## Detailed Results See the full test output in `reports/run_2000_output.txt`. diff --git a/reports/2_decimals.md b/reports/2_decimals.md index 2a827b0..1f255d7 100644 --- a/reports/2_decimals.md +++ b/reports/2_decimals.md @@ -54,23 +54,6 @@ | 31 | Elixir | 379 | 89369258 | Interpreted | | 32 | TypeScript | 904 | 217716053 | Interpreted | -### Performance Analysis - -**Top Performers:** -- Fastest execution times for compiled languages -- Minimal memory usage for native code -- Consistent performance across decimal levels - -**Memory Efficiency:** -- Compiled languages: 1-6 MB -- JIT languages: 14-236 MB -- Interpreted languages: 2-29 MB - -**Key Findings:** -- Compiled languages dominate in both speed and memory efficiency -- JIT languages show moderate performance with higher memory usage -- Interpreted languages vary widely in performance - ## Detailed Results See the full test output in `reports/run_2_output.txt`. diff --git a/reports/5_decimals.md b/reports/5_decimals.md index 943ff06..e54d11f 100644 --- a/reports/5_decimals.md +++ b/reports/5_decimals.md @@ -54,23 +54,6 @@ | 31 | Scala | 386 | 55995050 | JIT | | 32 | TypeScript | 886 | 217841664 | Interpreted | -### Performance Analysis - -**Top Performers:** -- Fastest execution times for compiled languages -- Minimal memory usage for native code -- Consistent performance across decimal levels - -**Memory Efficiency:** -- Compiled languages: 1-6 MB -- JIT languages: 14-236 MB -- Interpreted languages: 2-29 MB - -**Key Findings:** -- Compiled languages dominate in both speed and memory efficiency -- JIT languages show moderate performance with higher memory usage -- Interpreted languages vary widely in performance - ## Detailed Results See the full test output in `reports/run_5_output.txt`. diff --git a/update_reports.sh b/update_reports.sh index f1a49fd..2a0ed49 100755 --- a/update_reports.sh +++ b/update_reports.sh @@ -79,26 +79,9 @@ EOF printf "| %d | %s | %s | %s | %s |\n", rank, lang, time, mem, type }' >> "$output_file" - # Add performance analysis + # Add detailed results section cat >> "$output_file" << EOF -### Performance Analysis - -**Top Performers:** -- Fastest execution times for compiled languages -- Minimal memory usage for native code -- Consistent performance across decimal levels - -**Memory Efficiency:** -- Compiled languages: 1-6 MB -- JIT languages: 14-236 MB -- Interpreted languages: 2-29 MB - -**Key Findings:** -- Compiled languages dominate in both speed and memory efficiency -- JIT languages show moderate performance with higher memory usage -- Interpreted languages vary widely in performance - ## Detailed Results See the full test output in \`reports/run_${decimals}_output.txt\`.