diff --git a/benchmarks/core-moonshot-gpu.jl b/benchmarks/core-moonshot-gpu.jl index a2d7d6f5..6610687c 100644 --- a/benchmarks/core-moonshot-gpu.jl +++ b/benchmarks/core-moonshot-gpu.jl @@ -10,13 +10,13 @@ function run() # :ducted_fan, :electric_vehicle, :glider, - ## :insurance, # to be re-added (unstable / sincos issue) + ## :insurance, # to be re-added (unstable / sincos issue) :jackson, :robbins, - ## :robot, # to be re-added (unstable / sincos issue) + ## :robot, # to be re-added (unstable / sincos issue) :rocket, - ## :space_shuttle, # to be re-added (unstable / sincos issue) - ## :steering, # to be re-added (unstable / sincos issue) + ## :space_shuttle, # to be re-added (unstable / sincos issue) + ## :steering, # to be re-added (unstable / sincos issue) :vanderpol, ], solver_models=[:madnlp => [:exa, :exa_gpu]], diff --git a/docs/src/assets/benchmarks/core-moonshot-gpu/core-moonshot-gpu.jl b/docs/src/assets/benchmarks/core-moonshot-gpu/core-moonshot-gpu.jl index a2d7d6f5..6610687c 100644 --- a/docs/src/assets/benchmarks/core-moonshot-gpu/core-moonshot-gpu.jl +++ b/docs/src/assets/benchmarks/core-moonshot-gpu/core-moonshot-gpu.jl @@ -10,13 +10,13 @@ function run() # :ducted_fan, :electric_vehicle, :glider, - ## :insurance, # to be re-added (unstable / sincos issue) + ## :insurance, # to be re-added (unstable / sincos issue) :jackson, :robbins, - ## :robot, # to be re-added (unstable / sincos issue) + ## :robot, # to be re-added (unstable / sincos issue) :rocket, - ## :space_shuttle, # to be re-added (unstable / sincos issue) - ## :steering, # to be re-added (unstable / sincos issue) + ## :space_shuttle, # to be re-added (unstable / sincos issue) + ## :steering, # to be re-added (unstable / sincos issue) :vanderpol, ], solver_models=[:madnlp => [:exa, :exa_gpu]], diff --git a/src/plot_solutions.jl b/src/plot_solutions.jl index 2ff42e4a..f29dd348 100644 --- a/src/plot_solutions.jl +++ b/src/plot_solutions.jl @@ -58,19 +58,18 @@ function get_color(model::T, solver::T, idx::Int) where {T<:Union{String,Symbol} ] fixed = Dict( - ("adnlp", "ipopt") => :steelblue, - ("exa", "ipopt") => :tomato, - ("adnlp", "madnlp") => :seagreen, - ("exa", "madnlp") => :darkorange, - ("jump", "ipopt") => :mediumpurple, - ("jump", "madnlp") => :sienna, + ("adnlp", "ipopt") => :steelblue, + ("exa", "ipopt") => :tomato, + ("adnlp", "madnlp") => :seagreen, + ("exa", "madnlp") => :darkorange, + ("jump", "ipopt") => :mediumpurple, + ("jump", "madnlp") => :sienna, ("exa_gpu", "madnlp") => :mediumturquoise, ) return get(fixed, (model, solver), palette[mod1(idx, length(palette))]) end - # ----------------------------------- # Helper: left margin for plots # -----------------------------------