From 130904d06e333bd4452709c387cf186b19ea7234 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Mon, 17 Mar 2025 13:17:57 -0100 Subject: [PATCH 1/7] Update compats --- lib/SimpleNonlinearSolve/Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] From 6e8c7e838dafd45725422c2a1f07160b3aca38f4 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Mon, 17 Mar 2025 14:53:55 -0100 Subject: [PATCH 2/7] Update CI_NonlinearSolve.yml --- .github/workflows/CI_NonlinearSolve.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/CI_NonlinearSolve.yml b/.github/workflows/CI_NonlinearSolve.yml index 3be961848..f99753941 100644 --- a/.github/workflows/CI_NonlinearSolve.yml +++ b/.github/workflows/CI_NonlinearSolve.yml @@ -43,7 +43,6 @@ jobs: os: - ubuntu-latest - macos-latest - - windows-latest steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2 From 87f75956131a2bda1f6af14f4a8d4a71d48e239a Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Mon, 17 Mar 2025 14:59:51 -0100 Subject: [PATCH 3/7] Update make.jl --- docs/make.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/make.jl b/docs/make.jl index 06a481285..dde265e35 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -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], From 81b3f7b000cb75c3ca926fe4ff3613d6758d8446 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Mon, 17 Mar 2025 15:13:21 -0100 Subject: [PATCH 4/7] Update CI_NonlinearSolve.yml --- .github/workflows/CI_NonlinearSolve.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/CI_NonlinearSolve.yml b/.github/workflows/CI_NonlinearSolve.yml index f99753941..3be961848 100644 --- a/.github/workflows/CI_NonlinearSolve.yml +++ b/.github/workflows/CI_NonlinearSolve.yml @@ -43,6 +43,7 @@ jobs: os: - ubuntu-latest - macos-latest + - windows-latest steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2 From 33666d9cb884406310b87054476ff8adcba7bf9f Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Mon, 17 Mar 2025 17:25:03 -0100 Subject: [PATCH 5/7] Update interface_types.jl --- lib/NonlinearSolveHomotopyContinuation/src/interface_types.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From ef4a188eeb51ec0336fd791f14b1cf9a54de5a1f Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Mon, 17 Mar 2025 18:50:47 -0100 Subject: [PATCH 6/7] Update cuda_tests.jl --- lib/SimpleNonlinearSolve/test/gpu/cuda_tests.jl | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) 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 From f021e7915906cb4e6dc6cd8d19aef9771c96b786 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Tue, 18 Mar 2025 07:26:45 -0100 Subject: [PATCH 7/7] Update make.jl --- docs/make.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index dde265e35..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(;