-
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.
- Loading branch information
1 parent
7ff795b
commit e06c8fd
Showing
7 changed files
with
72 additions
and
49 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "TaylorDiff" | ||
uuid = "b36ab563-344f-407b-a36a-4f200bebf99c" | ||
authors = ["Songchen Tan <[email protected]>"] | ||
version = "0.2.4" | ||
version = "0.2.5" | ||
|
||
[deps] | ||
ChainRules = "082447d4-558c-5d27-93f4-14fc19e9eca2" | ||
|
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,5 +1,12 @@ | ||
[deps] | ||
DifferentiationInterface = "a0c0ee7d-e4b9-4e03-894e-1c5f64a51d63" | ||
Enzyme = "7da242da-08ed-463a-9acd-ee780be4f1d9" | ||
FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41" | ||
FiniteDifferences = "26cc04aa-876d-5657-8c51-4c34ba976000" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
Lux = "b2108857-7c20-44ae-9111-449ecde12c47" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
|
||
[compat] | ||
Enzyme = "0.13" |
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,49 @@ | ||
using LinearAlgebra | ||
import DifferentiationInterface | ||
using DifferentiationInterface: AutoZygote, AutoEnzyme | ||
import Zygote, Enzyme | ||
using FiniteDiff: finite_difference_derivative | ||
|
||
DI = DifferentiationInterface | ||
backend = AutoZygote() | ||
# backend = AutoEnzyme(; mode = Enzyme.Reverse, function_annotation = Enzyme.Const) | ||
|
||
@testset "Zygote-over-TaylorDiff on same variable" begin | ||
# Scalar functions | ||
some_number = 0.7 | ||
some_numbers = [0.3, 0.4, 0.1] | ||
for f in (exp, log, sqrt, sin, asin, sinh, asinh, x -> x^3) | ||
@test DI.derivative(x -> derivative(f, x, 2), backend, some_number) ≈ | ||
derivative(f, some_number, 3) | ||
@test DI.jacobian(x -> derivative.(f, x, 2), backend, some_numbers) ≈ | ||
diagm(derivative.(f, some_numbers, 3)) | ||
end | ||
|
||
# Vector functions | ||
g(x) = x[1] * x[1] + x[2] * x[2] | ||
@test DI.gradient(x -> derivative(g, x, [1.0, 0.0], 1), backend, [1.0, 2.0]) ≈ | ||
[2.0, 0.0] | ||
|
||
# Matrix functions | ||
some_matrix = [0.7 0.1; 0.4 0.2] | ||
f(x) = sum(exp.(x), dims = 1) | ||
dfdx1(x) = derivative(f, x, [1.0, 0.0], 1) | ||
dfdx2(x) = derivative(f, x, [0.0, 1.0], 1) | ||
res(x) = sum(dfdx1(x) .+ 2 * dfdx2(x)) | ||
grad = DI.gradient(res, backend, some_matrix) | ||
@test grad ≈ [1 0; 0 2] * exp.(some_matrix) | ||
end | ||
|
||
@testset "Zygote-over-TaylorDiff on different variable" begin | ||
linear_model(x, p, b) = exp.(b + p * x + b)[1] | ||
loss_taylor(x, p, b, v) = derivative(x -> linear_model(x, p, b), x, v, 1) | ||
ε = cbrt(eps(Float64)) | ||
loss_finite(x, p, b, v) = (linear_model(x + ε * v, p, b) - | ||
linear_model(x - ε * v, p, b)) / (2 * ε) | ||
let some_x = [0.58, 0.36], some_v = [0.23, 0.11], some_p = [0.49 0.96], some_b = [0.88] | ||
@test DI.gradient( | ||
p -> loss_taylor(some_x, p, some_b, some_v), backend, some_p) ≈ | ||
DI.gradient( | ||
p -> loss_finite(some_x, p, some_b, some_v), backend, some_p) | ||
end | ||
end |
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 was deleted.
Oops, something went wrong.
e06c8fd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
e06c8fd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/116427
Tip: Release Notes
Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.
To add them here just re-invoke and the PR will be updated.
Tagging
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: