mirror of
https://github.com/google/brotli.git
synced 2026-07-08 17:56:58 +00:00
BrotliCompressBufferParallel is it allready parallel ? #64
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @erikzenker on GitHub (Nov 6, 2015).
Hi,
I checked the BrotliCompressBufferParallel function in encode_parallel.cc and can't find
any parallel execution, but it looks more like it was prepared for parallel execution with
openMP. Can you give me an idea where to find the parallel ?
@eustas commented on GitHub (Nov 6, 2015):
Hello.
You are right, BrotliCompressBufferParallel is a proof-of-concept for parallel encoding. One can implement actual parallelly executing compressor with his favorite technology (OpenMP, TBB, Hadoop, whatever...) using this method as a sketch.
@erikzenker commented on GitHub (Nov 6, 2015):
Okay thank you :-) I am going to try some OpenMP parallelisation
@eustas commented on GitHub (Nov 6, 2015):
Nice! We will be glad to hear any update on this topic.