-
Notifications
You must be signed in to change notification settings - Fork 42
AD support via chainrules #177
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 5 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
a4b653a
AD support via chainrules
mloubout 4a1c608
style fix
mloubout 7408c9a
Merge branch 'master' into master
dkarrasch b0cc6f3
include review comments, simplify tests
dkarrasch 6a15a30
indentation
dkarrasch ba48524
Add update not to history
mloubout 973657a
Typos
mloubout 4226a33
Update src/LinearMaps.jl
dkarrasch 4128bbf
Reword history entry
dkarrasch File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
name = "LinearMaps" | ||
uuid = "7a12625a-238d-50fd-b39a-03d52299707e" | ||
version = "3.8.0" | ||
version = "3.9.0" | ||
|
||
[deps] | ||
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" | ||
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" | ||
|
||
[compat] | ||
ChainRulesCore = "1" | ||
julia = "1.6" |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
function rrule(::typeof(*), A::LinearMap, x::AbstractVector) | ||
y = A*x | ||
function pullback(dy) | ||
DY = unthunk(dy) | ||
# Because A is an abstract map, the product is only differentiable w.r.t the input | ||
return NoTangent(), NoTangent(), @thunk(A' * DY) | ||
end | ||
return y, pullback | ||
end | ||
|
||
function rrule(A::LinearMap, x::AbstractVector) | ||
y = A*x | ||
function pullback(dy) | ||
DY = unthunk(dy) | ||
# Because A is an abstract map, the product is only differentiable w.r.t the input | ||
return NoTangent(), @thunk(A' * DY) | ||
end | ||
return y, pullback | ||
end |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using Test, LinearMaps, ChainRulesTestUtils | ||
using ChainRulesCore: NoTangent | ||
|
||
@testset "AD rules" begin | ||
x = randn(10) | ||
for A in ( | ||
LinearMap(rand(10, 10)), | ||
LinearMap(cumsum, reverse∘cumsum∘reverse, 10), | ||
LinearMap((y, x) -> cumsum!(y, x), (y, x) -> reverse!(cumsum!(y, reverse!(copyto!(y, x)))), 10) | ||
) | ||
test_rrule(*, A ⊢ NoTangent(), x) | ||
test_rrule(A ⊢ NoTangent(), x) | ||
test_rrule(*, A' ⊢ NoTangent(), x) | ||
test_rrule(A' ⊢ NoTangent(), x) | ||
end | ||
end |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,3 +39,5 @@ include("embeddedmap.jl") | |
include("getindex.jl") | ||
|
||
include("inversemap.jl") | ||
|
||
include("rrules.jl") |
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.
Uh oh!
There was an error while loading. Please reload this page.