-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add extension directory * derivative,second derivative, gradient * jacobian, hessian * add GTPSA to Project.toml, move AutoGTPSA to ADTypes * Fix tests * Lighter workflow * pushforward * trigger workflow * fix tests? * fix typo * hvp done and two args done * fix typo * Update Test.yml * no code coverage * add GTPSA test * almost all tests passing, bugs in pushforward * all tests passing * latest GTPSA version specified, docs updated * no coverage test * Fix formatting and docs * Exclude GTPSA from LTS testing * Reactivate coverage * Reactivate all tests * Test group * simplified code and removed derivative * Adapt to new Tangents * Tangents import * Fix da fixes * Remove temporary backend * Fixes * Docs * GTPSAExt devel in progress * one arg done * all tests except hvp passing, should have full code cov * bump gtpsa version * fix hvp functions and docs update * fix typo * one more typo (sorry) * JuliaFormatter * Update DifferentiationInterface/docs/Project.toml Co-authored-by: Guillaume Dalle <[email protected]> * Better clarification of "variables" in GTPSA * address comments * no implicit imports test * fixes and formatting --------- Co-authored-by: Guillaume Dalle <[email protected]>
- Loading branch information
1 parent
59dc865
commit 8dcd924
Showing
9 changed files
with
856 additions
and
0 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
12 changes: 12 additions & 0 deletions
12
...tiationInterface/ext/DifferentiationInterfaceGTPSAExt/DifferentiationInterfaceGTPSAExt.jl
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,12 @@ | ||
module DifferentiationInterfaceGTPSAExt | ||
|
||
import DifferentiationInterface as DI | ||
using ADTypes: AutoGTPSA | ||
using GTPSA: GTPSA, TPS, Descriptor | ||
|
||
DI.check_available(::AutoGTPSA) = true | ||
|
||
include("onearg.jl") | ||
include("twoarg.jl") | ||
|
||
end |
Oops, something went wrong.