mirror of
https://github.com/clearlinux/mixer-tools.git
synced 2026-09-03 20:21:32 +00:00
Improve performance of zero pack creation by generating them in parallel. Fixes #629 Although zero pack is technically a delta pack, the parallel code for delta pack creation has not been reused because of the following: - For zero packs, processing is stopped immediately in case of error. Whereas for delta packs, processing is continued even in case of error because delta packs are optional. - The report and print statements are different for zero packs and delta packs. The delta-workers flag is used as the numWorker for zero packs. Signed-off-by: Reagan Lopez <reagan.lopez@intel.com>