Skip to content

Commit 4fd4f25

Browse files
Update compats (#539)
* Update compats * Update CI_NonlinearSolve.yml * Update make.jl * Update CI_NonlinearSolve.yml * Update interface_types.jl * Update cuda_tests.jl * Update make.jl
1 parent 931fabe commit 4fd4f25

File tree

4 files changed

+10
-14
lines changed

4 files changed

+10
-14
lines changed

docs/make.jl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ include("pages.jl")
2525
bib = CitationBibliography(joinpath(@__DIR__, "src", "refs.bib"))
2626

2727
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/"
3030
)
3131

3232
makedocs(;
@@ -46,7 +46,8 @@ makedocs(;
4646
linkcheck = true,
4747
linkcheck_ignore = [
4848
"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"
5051
],
5152
checkdocs = :exports,
5253
warnonly = [:missing_docs],

lib/NonlinearSolveHomotopyContinuation/src/interface_types.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ end
176176
"""
177177
$(TYPEDEF)
178178
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
180180
the start system for the homotopy. The homotopy is
181181
182182
```math

lib/SimpleNonlinearSolve/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ StaticArraysCore = "1.4.3"
6969
Test = "1.10"
7070
TestItemRunner = "1"
7171
Tracker = "0.2.35"
72-
Zygote = "0.6.70"
72+
Zygote = "0.6.70, 0.7"
7373
julia = "1.10"
7474

7575
[extras]

lib/SimpleNonlinearSolve/test/gpu/cuda_tests.jl

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,10 @@ end
7777
SimpleLimitedMemoryBroyden(; linesearch = Val(true))
7878
)
7979
@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
8984
end
9085
end
9186
end

0 commit comments

Comments
 (0)