diff --git a/docs/make.jl b/docs/make.jl index 06a481285..2f5a3f952 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -25,8 +25,8 @@ include("pages.jl") bib = CitationBibliography(joinpath(@__DIR__, "src", "refs.bib")) interlinks = InterLinks( - "ADTypes" => "https://sciml.github.io/ADTypes.jl/stable/", - "LineSearch" => "https://sciml.github.io/LineSearch.jl/dev/" + "ADTypes" => "https://docs.sciml.ai/ADTypes/dev/", + "LineSearch" => "https://docs.sciml.ai/LineSearch/dev/" ) makedocs(; @@ -46,7 +46,8 @@ makedocs(; linkcheck = true, linkcheck_ignore = [ "https://twitter.com/ChrisRackauckas/status/1544743542094020615", - "https://link.springer.com/article/10.1007/s40096-020-00339-4" + "https://link.springer.com/article/10.1007/s40096-020-00339-4", + "https://dl.acm.org/doi/10.1145/210089.210111" ], checkdocs = :exports, warnonly = [:missing_docs], diff --git a/lib/NonlinearSolveHomotopyContinuation/src/interface_types.jl b/lib/NonlinearSolveHomotopyContinuation/src/interface_types.jl index a6e55ef37..b4e299b07 100644 --- a/lib/NonlinearSolveHomotopyContinuation/src/interface_types.jl +++ b/lib/NonlinearSolveHomotopyContinuation/src/interface_types.jl @@ -176,7 +176,7 @@ end """ $(TYPEDEF) -A `HomotopyContinuation.AbstractHomotopy` which uses an inital guess ``x_0`` to construct +A `HomotopyContinuation.AbstractHomotopy` which uses an initial guess ``x_0`` to construct the start system for the homotopy. The homotopy is ```math diff --git a/lib/SimpleNonlinearSolve/Project.toml b/lib/SimpleNonlinearSolve/Project.toml index 2e379dc16..199085937 100644 --- a/lib/SimpleNonlinearSolve/Project.toml +++ b/lib/SimpleNonlinearSolve/Project.toml @@ -69,7 +69,7 @@ StaticArraysCore = "1.4.3" Test = "1.10" TestItemRunner = "1" Tracker = "0.2.35" -Zygote = "0.6.70" +Zygote = "0.6.70, 0.7" julia = "1.10" [extras] diff --git a/lib/SimpleNonlinearSolve/test/gpu/cuda_tests.jl b/lib/SimpleNonlinearSolve/test/gpu/cuda_tests.jl index 09fa52304..2d8b7252d 100644 --- a/lib/SimpleNonlinearSolve/test/gpu/cuda_tests.jl +++ b/lib/SimpleNonlinearSolve/test/gpu/cuda_tests.jl @@ -77,15 +77,10 @@ end SimpleLimitedMemoryBroyden(; linesearch = Val(true)) ) @test begin - try - @cuda kernel_function(prob, alg) - @info "Successfully launched kernel for $(alg)." - true - catch err - @error "Kernel Launch failed for $(alg)." - false - end - end broken=(alg isa SimpleHalley && u0 isa StaticArray) + @cuda kernel_function(prob, alg) + @info "Successfully launched kernel for $(alg)." + true + end end end end