From 9d5471b10f9904021a2f58f7e4738608c8c8c713 Mon Sep 17 00:00:00 2001 From: Murad Date: Thu, 3 Mar 2022 12:01:51 +0300 Subject: [PATCH 1/3] README: point to all benchmark results MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previously, we have only been pointing to i7-11850H results, leaving everything else behind the scenes. Now, when user clicks on link to results — user sees all benchmark results at once. --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 5a6ca20..5f875ed 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,7 @@ ## Results -### Future - -* [i7-11850H](future/result/i7-11850H) +Future benchmark [results](future/result/). ## How to add your own results From 59382471e46d70f539e73ebad5d4da08253fa198 Mon Sep 17 00:00:00 2001 From: Murad Date: Wed, 9 Mar 2022 15:37:05 +0300 Subject: [PATCH 2/3] links to bench results in future/result/RESULTS.md --- README.md | 2 +- future/result/RESULTS.md | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 future/result/RESULTS.md diff --git a/README.md b/README.md index 5f875ed..a7cf65a 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ## Results -Future benchmark [results](future/result/). +Future benchmark [results](future/result/RESULTS.md). ## How to add your own results diff --git a/future/result/RESULTS.md b/future/result/RESULTS.md new file mode 100644 index 0000000..ba21b38 --- /dev/null +++ b/future/result/RESULTS.md @@ -0,0 +1,6 @@ +# Benchmark results + +- [i7-11850H](i7-11850H/) +- [i5-3210M](i5-3210M/) +- [i5-5300U](i5-5300U/) +- [Ryzen_9_5900X](Ryzen_9_5900X/) From 97b04aad6a20caeccac3b6221b84da284fb1ce01 Mon Sep 17 00:00:00 2001 From: Murad Date: Wed, 9 Mar 2022 16:06:12 +0300 Subject: [PATCH 3/3] automatically append link to benchmark result --- script/run.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/script/run.sh b/script/run.sh index 64b76f3..d877957 100755 --- a/script/run.sh +++ b/script/run.sh @@ -31,4 +31,6 @@ mkdir -p "$dir/gcc_libstdcxx" ./build_gcc_libstdcxx/future/future --benchmark_out_format="json" --benchmark_out="$dir/gcc_libstdcxx/data.json" +echo "- [$proc]($proc/)" >> future/result/RESULTS.md + git add .