forked from apache/systemds
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SYSTEMML-2164] Improved serialization of compressed matrix blocks
Compressed matrix blocks have the option to share common dictionaries of distinct values per column group across groups in DDC1 encoding format (dense dictionary coding, 1byte aligned). This feature is very useful for small block sizes (e.g., default 1K) and common value domains as is often the case for image data. However, so far each group redundantly serialized/deserialized the common dictionary with subsequent recovery of the in-memory shared dictionary. This patch improves this code path to serialize (and thus deserialize) the common dictionary just once, which reduces - for large datasets that exceed aggregate cluster memory - the size on disk and related I/O costs, as well as deserialization and GC overheads.
- Loading branch information
Showing
3 changed files
with
50 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters