I've heard that Blake3 is possibly the only algorithm that supports parallel computation across multiple threads. But as far as I understand, in all implementations, I can't control the threads—I can't just run Parallel.ForEach and start the computation. However, I'd like to have that capability, especially since Blake3 is technically capable of providing it.
I've heard that Blake3 is possibly the only algorithm that supports parallel computation across multiple threads. But as far as I understand, in all implementations, I can't control the threads—I can't just run
Parallel.ForEachand start the computation. However, I'd like to have that capability, especially since Blake3 is technically capable of providing it.