-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move to forward solver class; use ensemble parallelisl
- Loading branch information
Showing
5 changed files
with
180 additions
and
265 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
from .forward import forward | ||
from .forward_AD import forward as forward_AD | ||
# from .forward import forward | ||
from .forward_ad import ForwardSolver | ||
from .gradient import gradient | ||
|
||
__all__ = [ | ||
"forward", # forward solver adapted for discrete adjoint | ||
"forward_AD", # forward solver adapted for Automatic Differentiation | ||
"ForwardSolver", # forward solver adapted for Automatic Differentiation | ||
"gradient", | ||
] |
Oops, something went wrong.