File tree Expand file tree Collapse file tree 4 files changed +33
-9
lines changed
Double/ChainRulesCore-Zygote Expand file tree Collapse file tree 4 files changed +33
-9
lines changed Original file line number Diff line number Diff line change 2929 version :
3030 - ' 1'
3131 - ' 1.6'
32+ - ' ~1.11.0-0'
3233 group :
3334 - Formalities
3435 - Internals
@@ -44,16 +45,21 @@ jobs:
4445 - Single/Tapir
4546 - Single/Tracker
4647 - Single/Zygote
48+ - Double/ChainRulesCore-Zygote
4749 - Double/Enzyme-ForwardDiff
4850 - Double/ForwardDiff-Zygote
4951 - Double/ReverseDiff-Zygote
5052 exclude :
5153 - version : ' 1.6'
5254 group : Formalities
55+ - version : ' ~1.11.0-0'
56+ group : Formalities
5357 - version : ' 1.6'
5458 group : Single/Diffractor
5559 - version : ' 1.6'
5660 group : Single/Enzyme
61+ - version : ' ~1.11.0-0'
62+ group : Single/Enzyme
5763 - version : ' 1.6'
5864 group : Single/FiniteDiff
5965 - version : ' 1.6'
6470 group : Single/Symbolics
6571 - version : ' 1.6'
6672 group : Single/Tapir
73+ - version : ' ~1.11.0-0'
74+ group : Single/Tapir
75+ - version : ' ~1.11.0-0'
76+ group : Double/ChainRulesCore-Zygote
6777 - version : ' 1.6'
6878 group : Double/Enzyme-ForwardDiff
79+ - version : ' ~1.11.0-0'
80+ group : Double/Enzyme-ForwardDiff
6981 - version : ' 1.6'
7082 group : Double/ReverseDiff-Zygote
7183
@@ -106,6 +118,7 @@ jobs:
106118 version :
107119 - ' 1'
108120 - ' 1.6'
121+ - ' ~1.11.0-0'
109122 group :
110123 - Formalities
111124 - Zero
Original file line number Diff line number Diff line change @@ -135,6 +135,7 @@ export GreedyColoringAlgorithm
135135
136136# # Public but not exported
137137
138- @compat public inner, outer
138+ @compat public inner
139+ @compat public outer
139140
140141end # module
Original file line number Diff line number Diff line change 1+ using ChainRulesCore
2+ using DifferentiationInterface, DifferentiationInterfaceTest
3+ using Test
4+ using Zygote: ZygoteRuleConfig
5+
6+ for backend in [AutoChainRules (ZygoteRuleConfig ())]
7+ @test check_available (backend)
8+ @test ! check_twoarg (backend)
9+ @test check_hessian (backend)
10+ end
11+
12+ test_differentiation (
13+ AutoChainRules (ZygoteRuleConfig ());
14+ excluded= [SecondDerivativeScenario],
15+ second_order= VERSION >= v " 1.10" ,
16+ logging= LOGGING,
17+ );
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ using SparseConnectivityTracer, SparseMatrixColorings
33using Test
44using Zygote: Zygote
55
6- dense_backends = [AutoChainRules (Zygote . ZygoteRuleConfig ()), AutoZygote ()]
6+ dense_backends = [AutoZygote ()]
77
88sparse_backends = [
99 AutoSparse (
2121
2222# # Dense backends
2323
24- test_differentiation (
25- AutoChainRules (Zygote. ZygoteRuleConfig ());
26- excluded= [SecondDerivativeScenario],
27- second_order= VERSION >= v " 1.10" ,
28- logging= LOGGING,
29- );
30-
3124test_differentiation (AutoZygote (); excluded= [SecondDerivativeScenario], logging= LOGGING);
3225
3326test_differentiation (
You can’t perform that action at this time.
0 commit comments