From 71269976d2942129409e507190b0bcb6c37990a9 Mon Sep 17 00:00:00 2001 From: Matt Schultz Date: Mon, 3 Aug 2026 01:31:12 -0500 Subject: [PATCH] Remove Performance section from README Drop the hardcoded benchmark tables. They were measured on specific 2020/2019 machines with an old Go toolchain and no longer reflect current performance; keeping fixed numbers in the README invites staleness. The Benchmarking section still documents how to run them, and the new Benchmarks workflow can produce current numbers on demand. --- README.md | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/README.md b/README.md index 542be4b..38b8735 100644 --- a/README.md +++ b/README.md @@ -108,29 +108,3 @@ make benchmark go tool pprof cpu.prof go tool pprof mem.prof ``` - -## Performance - -### 2020 Mac Mini M1 - -```console -name time/op speed -Threefish256/encrypt-8 85 ns 372 MB/s -Threefish256/decrypt-8 111 ns 287 MB/s -Threefish512/encrypt-8 234 ns 272 MB/s -Threefish512/decrypt-8 363 ns 175 MB/s -Threefish1024/encrypt-8 581 ns 220 MB/s -Threefish1024/decrypt-8 685 ns 186 MB/s -``` - -### 2019 MacBook Pro 2.3GHz Intel i9 - -```console -name time/op speed -Threefish256/encrypt-16 124 ns 259 MB/s -Threefish256/decrypt-16 156 ns 206 MB/s -Threefish512/encrypt-16 338 ns 189 MB/s -Threefish512/decrypt-16 310 ns 206 MB/s -Threefish1024/encrypt-16 804 ns 159 MB/s -Threefish1024/decrypt-16 778 ns 165 MB/s -```