aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2025-03-13 13:34:25 -0700
committerJack O'Connor <[email protected]>2025-03-13 13:37:11 -0700
commiteb69399eed995fe77ae16c389e18191516f6f1e6 (patch)
treef2d186c98712e4b44343346e01f8368f6e9d27c0 /README.md
parent057586a15f1618c6c049c70075d725f8ed81d627 (diff)
README.md and c/README.md edits related to multithreading
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index dcda2f8..809ccf3 100644
--- a/README.md
+++ b/README.md
@@ -43,9 +43,9 @@ This repository is the official implementation of BLAKE3. It includes:
making it an order of magnitude faster than e.g. `sha256sum` on
typical desktop hardware.
-* The [C implementation](c), which like the Rust implementation includes
- SIMD code and runtime CPU feature detection on x86. The `BLAKE3_USE_TBB`
- CMAKE option enables multithreading. See [`c/README.md`](c/README.md).
+* The [C implementation](c), which like the Rust implementation includes SIMD,
+ CPU feature detection on x86, and optional multithreading. See
+ [`c/README.md`](c/README.md).
* The [Rust reference implementation](reference_impl/reference_impl.rs),
which is discussed in Section 5.1 of the [BLAKE3