Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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(;
Expand All @@ -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],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/SimpleNonlinearSolve/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
13 changes: 4 additions & 9 deletions lib/SimpleNonlinearSolve/test/gpu/cuda_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading