File tree Expand file tree Collapse file tree 4 files changed +10
-14
lines changed
NonlinearSolveHomotopyContinuation/src Expand file tree Collapse file tree 4 files changed +10
-14
lines changed Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ include("pages.jl")
25
25
bib = CitationBibliography (joinpath (@__DIR__ , " src" , " refs.bib" ))
26
26
27
27
interlinks = InterLinks (
28
- " ADTypes" => " https://sciml.github.io /ADTypes.jl/stable /" ,
29
- " LineSearch" => " https://sciml.github.io /LineSearch.jl /dev/"
28
+ " ADTypes" => " https://docs. sciml.ai /ADTypes/dev /" ,
29
+ " LineSearch" => " https://docs. sciml.ai /LineSearch/dev/"
30
30
)
31
31
32
32
makedocs (;
@@ -46,7 +46,8 @@ makedocs(;
46
46
linkcheck = true ,
47
47
linkcheck_ignore = [
48
48
" https://twitter.com/ChrisRackauckas/status/1544743542094020615" ,
49
- " https://link.springer.com/article/10.1007/s40096-020-00339-4"
49
+ " https://link.springer.com/article/10.1007/s40096-020-00339-4" ,
50
+ " https://dl.acm.org/doi/10.1145/210089.210111"
50
51
],
51
52
checkdocs = :exports ,
52
53
warnonly = [:missing_docs ],
Original file line number Diff line number Diff line change 176
176
"""
177
177
$(TYPEDEF)
178
178
179
- A `HomotopyContinuation.AbstractHomotopy` which uses an inital guess ``x_0`` to construct
179
+ A `HomotopyContinuation.AbstractHomotopy` which uses an initial guess ``x_0`` to construct
180
180
the start system for the homotopy. The homotopy is
181
181
182
182
```math
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ StaticArraysCore = "1.4.3"
69
69
Test = " 1.10"
70
70
TestItemRunner = " 1"
71
71
Tracker = " 0.2.35"
72
- Zygote = " 0.6.70"
72
+ Zygote = " 0.6.70, 0.7 "
73
73
julia = " 1.10"
74
74
75
75
[extras ]
Original file line number Diff line number Diff line change 77
77
SimpleLimitedMemoryBroyden (; linesearch = Val (true ))
78
78
)
79
79
@test begin
80
- try
81
- @cuda kernel_function (prob, alg)
82
- @info " Successfully launched kernel for $(alg) ."
83
- true
84
- catch err
85
- @error " Kernel Launch failed for $(alg) ."
86
- false
87
- end
88
- end broken= (alg isa SimpleHalley && u0 isa StaticArray)
80
+ @cuda kernel_function (prob, alg)
81
+ @info " Successfully launched kernel for $(alg) ."
82
+ true
83
+ end
89
84
end
90
85
end
91
86
end
You can’t perform that action at this time.
0 commit comments