Implementation of repartitioning distributed matrix wrapper#147
Merged
greole merged 69 commits intostack/ogl_0.6from Sep 18, 2024
Merged
Implementation of repartitioning distributed matrix wrapper#147greole merged 69 commits intostack/ogl_0.6from
greole merged 69 commits intostack/ogl_0.6from
Conversation
- add make ldu consecutive
to read matrix data from a file - Add matrix data for the unit test in Matrix Market Exchange Format (.mtx) - Modify the CMake configuration file for HostMatrix in order to copy matrix to the build directory of unit tests
- Enable reading the b vector data from the file - Modify the CMake file to copy vector data to the build directory
…inal matrix which consists of integers - Create a mtx file for storing a vector - Remove commented lines of code and reorganize the unit test
…rices - Add 3 mtx files for storing L, D, and U matrices, respectively - Modify the CMake file to copy L, D, and U matrices over to the build directory
the function convert_to COO format
- Add assertion tests for verifying row and column indices
- Add a unit test for the function
- Add a unit test for that function
- Add a unit test for that function
Co-authored-by: chihta <97195768+chihta-wang@users.noreply.github.com>
…o impl/repartitioner_sparsity
486e0c9 to
45d70e9
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.
This PR adds a wrapper around the
gko::experimental::distributed::Matrixclass. It allows repartitioned creation of the matrix.Part of #134