-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimizations related to matrix conversion (#148)
* First work on in place. * Optimization of the code related to conversion. This also incldues some code reduction work. * Something wrong with the CI? * Noticed a linting error.
- Loading branch information
1 parent
f972047
commit 40b2433
Showing
12 changed files
with
207 additions
and
158 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CALL ReduceAndComposeMatrixSizes(matrix, comm, gathered_matrix, helper) | ||
DO WHILE(.NOT. TestReduceSizeRequest(helper)) | ||
END DO | ||
|
||
CALL ReduceAndComposeMatrixData(matrix, comm, gathered_matrix, helper) | ||
DO WHILE(.NOT. TestReduceInnerRequest(helper)) | ||
END DO | ||
DO WHILE(.NOT. TestReduceDataRequest(helper)) | ||
END DO | ||
|
||
CALL ReduceAndComposeMatrixCleanup(matrix, gathered_matrix, helper) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CALL ReduceAndSumMatrixSizes(matrix, comm, gathered_matrix, helper) | ||
DO WHILE(.NOT. TestReduceSizeRequest(helper)) | ||
END DO | ||
|
||
CALL ReduceAndSumMatrixData(matrix, gathered_matrix, comm, helper) | ||
DO WHILE(.NOT. TestReduceInnerRequest(helper)) | ||
END DO | ||
DO WHILE(.NOT. TestReduceDataRequest(helper)) | ||
END DO | ||
|
||
CALL ReduceAndSumMatrixCleanup(matrix, gathered_matrix, threshold, helper) |
Oops, something went wrong.