From 469cee118e2e1730cfa12883eb0adc9406901af8 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Mon, 1 Jul 2024 13:41:22 +0200 Subject: [PATCH 1/3] doc: initial all contributors population --- .all-contributorsrc | 68 ++++++++++++++++++++++++++++++++++++++++++++- README.md | 23 ++++++++++++++- 2 files changed, 89 insertions(+), 2 deletions(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index a8c22f1722..2d1dd68429 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -1,4 +1,70 @@ { "projectName": "flowr", - "projectOwner": "Code-Inspect" + "projectOwner": "Code-Inspect", + "repoType": "github", + "repoHost": "https://github.com", + "files": [ + "README.md" + ], + "imageSize": 100, + "commit": true, + "commitConvention": "angular", + "contributors": [ + { + "login": "EagleoutIce", + "name": "Florian Sihler", + "avatar_url": "https://github.com/avatars/u/9303573?v=4", + "profile": "https://github.com/EagleoutIce", + "contributions": [ + "code", "ideas", "maintenance", "projectManagement", "research", "test", "talk" + ] + }, + { + "login": "Ellpeck", + "name": "Ell", + "avatar_url": "https://github.com/avatars/u/5741138?v=4", + "profile": "https://ellpeck.de/", + "contributions": [ + "code", "maintenance", "test", "plugin" + ] + }, + { + "login": "LukasPietzschmann", + "name": "Lukas Pietzschmann", + "avatar_url": "https://github.com/avatars/u/49213919?v=4", + "profile": "https://lukas.pietzschmann.org/", + "contributions": [ + "code", "test" + ] + }, + { + "login": "bjthehun", + "name": "Benedikt Jutz", + "avatar_url": "https://github.com/avatars/u/38729215?v=4", + "profile": "https://github.com/bjthehun", + "contributions": [ + "code", "test" + ] + }, + { + "login": "Core5563", + "name": "Core5563", + "avatar_url": "https://github.com/avatars/u/140061253?v=4", + "profile": "https://github.com/Core5563", + "contributions": [ + "code", "test" + ] + }, + { + "login": "Ehcsan", + "name": "Ehcsan", + "avatar_url": "https://github.com/avatars/u/68707578?v=4", + "profile": "https://github.com/Ehcsan", + "contributions": [ + "code", "test" + ] + } + ], + "contributorsPerLine": 7, + "linkToUsage": true } diff --git a/README.md b/README.md index 9f0302c001..990152bb8a 100644 --- a/README.md +++ b/README.md @@ -24,12 +24,33 @@ We welcome every contribution! Please check out the [contributing guidelines](ht ### Contributors + + + + + + + + + + + + + + + + + +
Florian Sihler
Florian Sihler

💻 🤔 🚧 📆 🔬 ⚠️ 📢
Ell
Ell

💻 🚧 ⚠️ 🔌
Lukas Pietzschmann
Lukas Pietzschmann

💻 ⚠️
Benedikt Jutz
Benedikt Jutz

💻 ⚠️
Core5563
Core5563

💻 ⚠️
Ehcsan
Ehcsan

💻 ⚠️
+ + Add your contributions + +
- ---- From 8a60b045c5f2e3a359664df49844cfcb79d2d50b Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Mon, 1 Jul 2024 14:40:46 +0200 Subject: [PATCH 2/3] feat: report memory usage in graph in kib --- src/benchmark/summarizer/second-phase/graph.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/benchmark/summarizer/second-phase/graph.ts b/src/benchmark/summarizer/second-phase/graph.ts index d96f4916da..f524b1146a 100644 --- a/src/benchmark/summarizer/second-phase/graph.ts +++ b/src/benchmark/summarizer/second-phase/graph.ts @@ -56,10 +56,10 @@ export function writeGraphOutput(ultimate: UltimateSlicerStats, outputGraphPath: }) data.push({ name: 'memory (df-graph)', - unit: 'Bytes', - value: Number(ultimate.dataflow.sizeOfObject.mean), - range: Number(ultimate.dataflow.sizeOfObject.std), - extra: `median: ${(ultimate.dataflow.sizeOfObject.median).toFixed(2)}` + unit: 'KiB', + value: ultimate.dataflow.sizeOfObject.mean / 1024, + range: ultimate.dataflow.sizeOfObject.std / 1024, + extra: `median: ${(ultimate.dataflow.sizeOfObject.median / 1024).toFixed(2)}` }) From 41e836f849bcb4825bc6f40da15cd9d59a5b63d2 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Tue, 2 Jul 2024 12:17:10 +0200 Subject: [PATCH 3/3] refactor: updated old byte-based data entries to be kib too --- wiki/stats/benchmark/data.js | 146 +++++++++++++++++------------------ 1 file changed, 73 insertions(+), 73 deletions(-) diff --git a/wiki/stats/benchmark/data.js b/wiki/stats/benchmark/data.js index 222659e033..f1a637d30f 100644 --- a/wiki/stats/benchmark/data.js +++ b/wiki/stats/benchmark/data.js @@ -2506,10 +2506,10 @@ window.BENCHMARK_DATA = { }, { "name": "memory (df-graph)", - "value": 176295.04545454544, - "unit": "Bytes", - "range": 419178.1683095103, - "extra": "median: 54579.00" + "value": 172.16313032670453, + "unit": "KiB", + "range": 409.35367998975613, + "extra": "median: 53.29" } ] }, @@ -2609,10 +2609,10 @@ window.BENCHMARK_DATA = { }, { "name": "memory (df-graph)", - "value": 176295.04545454544, - "unit": "Bytes", - "range": 419178.1683095103, - "extra": "median: 54579.00" + "value": 172.16313032670453, + "unit": "KiB", + "range": 409.35367998975613, + "extra": "median: 53.29" } ] }, @@ -2712,10 +2712,10 @@ window.BENCHMARK_DATA = { }, { "name": "memory (df-graph)", - "value": 176295.04545454544, - "unit": "Bytes", - "range": 419178.1683095103, - "extra": "median: 54579.00" + "value": 172.16313032670453, + "unit": "KiB", + "range": 409.35367998975613, + "extra": "median: 53.29" } ] }, @@ -2815,10 +2815,10 @@ window.BENCHMARK_DATA = { }, { "name": "memory (df-graph)", - "value": 176295.04545454544, - "unit": "Bytes", - "range": 419178.1683095103, - "extra": "median: 54579.00" + "value": 172.16313032670453, + "unit": "KiB", + "range": 409.35367998975613, + "extra": "median: 53.29" } ] }, @@ -2918,10 +2918,10 @@ window.BENCHMARK_DATA = { }, { "name": "memory (df-graph)", - "value": 178989.0909090909, - "unit": "Bytes", - "range": 427354.18825573596, - "extra": "median: 54579.00" + "value": 174.7940340909091, + "unit": "KiB", + "range": 417.33807446849215, + "extra": "median: 53.29" } ] }, @@ -3021,10 +3021,10 @@ window.BENCHMARK_DATA = { }, { "name": "memory (df-graph)", - "value": 151615.13636363635, - "unit": "Bytes", - "range": 369422.56988247525, - "extra": "median: 46495.00" + "value": 148.06165660511363, + "unit": "KiB", + "range": 360.76422840085473, + "extra": "median: 45.40" } ] }, @@ -3124,10 +3124,10 @@ window.BENCHMARK_DATA = { }, { "name": "memory (df-graph)", - "value": 151127.95454545456, - "unit": "Bytes", - "range": 367879.65634065185, - "extra": "median: 46487.00" + "value": 147.58589311079547, + "unit": "KiB", + "range": 359.2574768951678, + "extra": "median: 45.39" } ] }, @@ -3227,10 +3227,10 @@ window.BENCHMARK_DATA = { }, { "name": "memory (df-graph)", - "value": 151127.95454545456, - "unit": "Bytes", - "range": 367879.65634065185, - "extra": "median: 46487.00" + "value": 147.58589311079547, + "unit": "KiB", + "range": 359.2574768951678, + "extra": "median: 45.39" } ] }, @@ -3330,10 +3330,10 @@ window.BENCHMARK_DATA = { }, { "name": "memory (df-graph)", - "value": 151127.95454545456, - "unit": "Bytes", - "range": 367879.65634065185, - "extra": "median: 46487.00" + "value": 147.58589311079547, + "unit": "KiB", + "range": 359.2574768951678, + "extra": "median: 45.39" } ] } @@ -5938,10 +5938,10 @@ window.BENCHMARK_DATA = { }, { "name": "memory (df-graph)", - "value": 168990.62, - "unit": "Bytes", - "range": 170449.66365832346, - "extra": "median: 84221.00" + "value": 165.02990234375, + "unit": "KiB", + "range": 166.4547496663315, + "extra": "median: 82.24" } ] }, @@ -6041,10 +6041,10 @@ window.BENCHMARK_DATA = { }, { "name": "memory (df-graph)", - "value": 168990.62, - "unit": "Bytes", - "range": 170449.66365832346, - "extra": "median: 84221.00" + "value": 165.02990234375, + "unit": "KiB", + "range": 166.4547496663315, + "extra": "median: 82.24" } ] }, @@ -6144,10 +6144,10 @@ window.BENCHMARK_DATA = { }, { "name": "memory (df-graph)", - "value": 168990.62, - "unit": "Bytes", - "range": 170449.66365832346, - "extra": "median: 84221.00" + "value": 165.02990234375, + "unit": "KiB", + "range": 166.4547496663315, + "extra": "median: 82.24" } ] }, @@ -6247,10 +6247,10 @@ window.BENCHMARK_DATA = { }, { "name": "memory (df-graph)", - "value": 168990.62, - "unit": "Bytes", - "range": 170449.66365832346, - "extra": "median: 84221.00" + "value": 165.02990234375, + "unit": "KiB", + "range": 166.4547496663315, + "extra": "median: 82.24" } ] }, @@ -6350,10 +6350,10 @@ window.BENCHMARK_DATA = { }, { "name": "memory (df-graph)", - "value": 169227.66, - "unit": "Bytes", - "range": 170963.65792127987, - "extra": "median: 84535.00" + "value": 165.26138671875, + "unit": "KiB", + "range": 166.95669718874987, + "extra": "median: 82.55" } ] }, @@ -6453,10 +6453,10 @@ window.BENCHMARK_DATA = { }, { "name": "memory (df-graph)", - "value": 146353.56, - "unit": "Bytes", - "range": 150627.60807636293, - "extra": "median: 72380.00" + "value": 142.9233984375, + "unit": "KiB", + "range": 147.09727351207317, + "extra": "median: 70.68" } ] }, @@ -6556,10 +6556,10 @@ window.BENCHMARK_DATA = { }, { "name": "memory (df-graph)", - "value": 145967.48, - "unit": "Bytes", - "range": 150220.2921073235, - "extra": "median: 72246.00" + "value": 142.5463671875, + "unit": "KiB", + "range": 146.6995040110581, + "extra": "median: 70.55" } ] }, @@ -6659,10 +6659,10 @@ window.BENCHMARK_DATA = { }, { "name": "memory (df-graph)", - "value": 145967.48, - "unit": "Bytes", - "range": 150220.2921073235, - "extra": "median: 72246.00" + "value": 142.5463671875, + "unit": "KiB", + "range": 146.6995040110581, + "extra": "median: 70.55" } ] }, @@ -6762,13 +6762,13 @@ window.BENCHMARK_DATA = { }, { "name": "memory (df-graph)", - "value": 145967.48, - "unit": "Bytes", - "range": 150220.2921073235, - "extra": "median: 72246.00" + "value": 142.5463671875, + "unit": "KiB", + "range": 146.6995040110581, + "extra": "median: 70.55" } ] } ] } -} \ No newline at end of file +}