[SYSTEMDS-2748] TSMM Compressed Optimize#1177
Closed
Baunsgaard wants to merge 1 commit intoapache:masterfrom
Closed
[SYSTEMDS-2748] TSMM Compressed Optimize#1177Baunsgaard wants to merge 1 commit intoapache:masterfrom
Baunsgaard wants to merge 1 commit intoapache:masterfrom
Conversation
This commit optimize the transpose self matrix multiplication in compressed space. There are a few key upgrades - We avoid calculating the lower triangle of the output (~50% improvement) - The parallelization scheme is containing equal number of elements, since only the upper triangle have to calculated, this means that the same task is tasked with a row and the reflected row, reflected in the middle row of the matrix. (no tailing tasks giving full cpu util) - Second the diagonal is calculated without decompression, since the diagonal values can be computed without decompression by simply multiplying the dictionary entries. This makes tsmm, on single colGroup matrices many times faster than normal tsmm. (exploit cocode)
66e160b to
ba1ba26
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.