aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorsilvanshade <[email protected]>2025-02-08 05:28:20 -0700
committerJack O'Connor <[email protected]>2025-03-13 12:16:50 -0700
commit4a885fcaeeb4c79414f9b0433ab417faaacf3066 (patch)
treebbe89de41475e9fb7e4d70bf10aece3585db2b3f /README.md
parenta31e519869d5751370f50c39a99340660ee95bf7 (diff)
Implement TBB-based parallelism for C lib
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/README.md b/README.md
index c1ce961..dcda2f8 100644
--- a/README.md
+++ b/README.md
@@ -44,9 +44,8 @@ This repository is the official implementation of BLAKE3. It includes:
typical desktop hardware.
* The [C implementation](c), which like the Rust implementation includes
- SIMD code and runtime CPU feature detection on x86. Unlike the Rust
- implementation, it's [not currently multithreaded](c#multithreading). See
- [`c/README.md`](c/README.md).
+ 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 [Rust reference implementation](reference_impl/reference_impl.rs),
which is discussed in Section 5.1 of the [BLAKE3