Direct Solver: Multilevel Proxy-based Solver - #174
Open
alexfikl wants to merge 2 commits into
Open
Conversation
alexfikl
commented
Aug 4, 2022
CollaboratorAuthor
This also contains #164 at the moment and is still quite WIP. For one, only implemented a forward matvec, not the actual solver 😢 |
alexfiklforce-pushed
the
direct-solver-solve
branch
from
August 4, 2022 18:23
5e7f654 to
3164799Comparealexfiklforce-pushed
the
direct-solver-solve
branch
9 times, most recently
from
August 19, 2022 07:52
a00d5a0 to
6efa838Comparealexfiklforce-pushed
the
direct-solver-solve
branch
4 times, most recently
from
August 25, 2022 16:43
ae83dd5 to
0105f84Comparealexfiklforce-pushed
the
direct-solver-solve
branch
from
September 3, 2022 12:38
0105f84 to
9ed57c2Comparealexfiklforce-pushed
the
direct-solver-solve
branch
6 times, most recently
from
September 14, 2022 11:19
871c491 to
c742491Comparealexfikl
marked this pull request as ready for review
September 14, 2022 12:52
alexfikl
commented
Sep 14, 2022
CollaboratorAuthor
This now implements both a matvec and a direct solver with recursive skeletonization. Both seem to work pretty close to design parameters. Still need to stress test it more though! |
alexfiklforce-pushed
the
direct-solver-solve
branch
5 times, most recently
from
September 22, 2022 16:37
7d5bb22 to
ddc4a8bComparealexfiklforce-pushed
the
direct-solver-solve
branch
from
September 23, 2022 13:29
ddc4a8b to
d3f168cComparealexfiklforce-pushed
the
direct-solver-solve
branch
2 times, most recently
from
June 20, 2023 06:42
09d715b to
f5e02b6Comparealexfiklforce-pushed
the
direct-solver-solve
branch
from
June 27, 2023 06:14
f5e02b6 to
c0e261eComparealexfiklforce-pushed
the
direct-solver-solve
branch
3 times, most recently
from
August 4, 2023 06:55
f8bf7c0 to
f680a72Comparealexfiklforce-pushed
the
direct-solver-solve
branch
2 times, most recently
from
September 8, 2023 07:20
5062dd1 to
1524bc9Comparealexfiklforce-pushed
the
direct-solver-solve
branch
from
October 17, 2023 06:44
1524bc9 to
af9c2d0Comparealexfiklforce-pushed
the
direct-solver-solve
branch
from
November 1, 2023 15:52
af9c2d0 to
28c1c92Comparealexfiklforce-pushed
the
direct-solver-solve
branch
from
May 29, 2024 07:02
28c1c92 to
8813bceComparealexfiklforce-pushed
the
direct-solver-solve
branch
from
July 6, 2024 06:33
8813bce to
be87bedComparealexfiklforce-pushed
the
direct-solver-solve
branch
3 times, most recently
from
August 2, 2024 11:53
64a779a to
158afc9Comparealexfiklforce-pushed
the
direct-solver-solve
branch
2 times, most recently
from
September 1, 2024 08:41
d6fc4ac to
ee7fb16Comparealexfiklforce-pushed
the
direct-solver-solve
branch
2 times, most recently
from
November 16, 2024 09:02
47c06b1 to
83658caComparealexfiklforce-pushed
the
direct-solver-solve
branch
from
December 17, 2024 08:16
83658ca to
0e74b01Comparealexfiklforce-pushed
the
direct-solver-solve
branch
2 times, most recently
from
January 8, 2025 09:26
7211102 to
bf42a83Comparealexfiklforce-pushed
the
direct-solver-solve
branch
from
February 8, 2025 09:20
bf42a83 to
ae80999Comparealexfiklforce-pushed
the
direct-solver-solve
branch
from
February 27, 2025 08:18
ae80999 to
7736d36Comparealexfiklforce-pushed
the
direct-solver-solve
branch
2 times, most recently
from
September 19, 2025 11:37
d13c752 to
7ee43b6Comparealexfiklforce-pushed
the
direct-solver-solve
branch
2 times, most recently
from
October 15, 2025 19:42
b887731 to
6303f9eCompare
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 freeto 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.
Attempting to break up the direct solver MR into smaller, more reviewable pieces. As a rundown
linalg.proxy).The code for this is mostly in the deprecated https://gitlab.tiker.net/inducer/pytential/-/merge_requests/137.