Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deactive logs in benchmark scripts #59

Merged
merged 2 commits into from
Aug 25, 2021
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: 6 additions & 1 deletion benchmark/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
To run benchmarks, run the following script.
```
# to compare current version and master using 10 cores and CUTEst and PowerModels.jl problems,
julia runbenchmarks.jl 10 power cutest current master
julia runbenchmarks.jl 10 power cutest current master
```

By default, logs are deactivated. To active them, please add `verbose` to the options:
```
julia runbenchmarks.jl 10 power cutest current master verbose
```
14 changes: 7 additions & 7 deletions benchmark/benchmark-cutest.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
include("config.jl")

function get_status(code::Symbol)
function get_status(code::Symbol)
if code == :first_order
return 1
elseif code == :acceptable
Expand All @@ -13,13 +13,13 @@ end
@everywhere using CUTEst

if SOLVER == "master"
@everywhere solver = nlp -> madnlp(nlp,linear_solver=MadNLPMa57,max_wall_time=900.,tol=1e-6)
@everywhere solver = nlp -> madnlp(nlp,linear_solver=MadNLPMa57,max_wall_time=900.,tol=1e-6, print_level=PRINT_LEVEL)
@everywhere using MadNLP, MadNLPHSL
elseif SOLVER == "current"
@everywhere solver = nlp -> madnlp(nlp,linear_solver=MadNLPMa57,max_wall_time=900.,tol=1e-6)
@everywhere solver = nlp -> madnlp(nlp,linear_solver=MadNLPMa57,max_wall_time=900.,tol=1e-6, print_level=PRINT_LEVEL)
@everywhere using MadNLP, MadNLPHSL
elseif SOLVER == "ipopt"
@everywhere solver = nlp -> ipopt(nlp,linear_solver="ma57",max_cpu_time=900.,tol=1e-6)
@everywhere solver = nlp -> ipopt(nlp,linear_solver="ma57",max_cpu_time=900.,tol=1e-6, print_level=PRINT_LEVEL)
@everywhere using NLPModelsIpopt
elseif SOLVER == "knitro"
# TODO
Expand Down Expand Up @@ -51,7 +51,7 @@ function benchmark(solver,probs;warm_up_probs = [])

println("Decoding problems")
broadcast(decodemodel,probs)

println("Solving problems")
retvals = pmap(prob->evalmodel(prob,solver),probs)
time = [retval.elapsed_time for retval in retvals]
Expand All @@ -63,7 +63,7 @@ exclude = [
"PFIT1","PFIT2","PFIT4","DENSCHNE","SPECANNE","DJTL", "EG3","OET7",
"PRIMAL3","TAX213322","TAXR213322","TAX53322","TAXR53322","HIMMELP2","MOSARQP2","LUKVLE11",
"CYCLOOCT","CYCLOOCF","LIPPERT1","GAUSSELM","A2NSSSSL",
"YATP1LS","YATP2LS","YATP1CLS","YATP2CLS","BA-L52LS","BA-L73LS","BA-L21LS","CRESC132"
"YATP1LS","YATP2LS","YATP1CLS","YATP2CLS","BA-L52LS","BA-L73LS","BA-L21LS","CRESC132"
]


Expand All @@ -76,4 +76,4 @@ time,status = benchmark(solver,probs;warm_up_probs = ["EIGMINA"])

writedlm("name-cutest.csv",probs,',')
writedlm("time-cutest-$(SOLVER).csv",time,',')
writedlm("status-cutest-$(SOLVER).csv",status),','
writedlm("status-cutest-$(SOLVER).csv",status),','
23 changes: 15 additions & 8 deletions benchmark/benchmark-power.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
const PGLIB_PATH = ENV["PGLIB_PATH"]
if haskey(ENV, "PGLIB_PATH")
const PGLIB_PATH = ENV["PGLIB_PATH"]
else
error("Unable to find path to PGLIB benchmark.\n"*
"Please set environment variable `PGLIB_PATH` to run benchmark with PowerModels.jl")
end

include("config.jl")

using MathOptInterface; const MOI=MathOptInterface
function get_status(code::MOI.TerminationStatusCode)
using MathOptInterface
const MOI = MathOptInterface

function get_status(code::MOI.TerminationStatusCode)
if code == MOI.LOCALLY_SOLVED
return 1
elseif code == MOI.ALMOST_OPTIMAL
Expand All @@ -19,17 +26,17 @@ end
if SOLVER == "master"
@everywhere solver = prob ->
run_opf(joinpath(PGLIB_PATH,prob[1]), prob[2],
()->MadNLP.Optimizer(linear_solver=MadNLPMa57,max_wall_time=900.,tol=1e-6))
()->MadNLP.Optimizer(linear_solver=MadNLPMa57,max_wall_time=900.,tol=1e-6, print_level=PRINT_LEVEL))
@everywhere using MadNLP, MadNLPHSL
elseif SOLVER == "current"
@everywhere solver = prob ->
run_opf(joinpath(PGLIB_PATH,prob[1]), prob[2],
()->MadNLP.Optimizer(linear_solver=MadNLPMa57,max_wall_time=900.,tol=1e-6))
()->MadNLP.Optimizer(linear_solver=MadNLPMa57,max_wall_time=900.,tol=1e-6, print_level=PRINT_LEVEL))
@everywhere using MadNLP, MadNLPHSL
elseif SOLVER == "ipopt"
@everywhere solver = prob ->
run_opf(joinpath(PGLIB_PATH,prob[1]), prob[2],
()->Ipopt.Optimizer(linear_solver="ma57",max_cpu_time=900.,tol=1e-6))
()->Ipopt.Optimizer(linear_solver="ma57",max_cpu_time=900.,tol=1e-6, print_level=PRINT_LEVEL))
@everywhere using Ipopt
elseif SOLVER == "knitro"
# TODO
Expand All @@ -53,7 +60,7 @@ function benchmark(solver,probs;warm_up_probs = [])
rs = [remotecall.(solver,i,warm_up_probs) for i in procs() if i!= 1]
ws = [wait.(r) for r in rs]
fs= [fetch.(r) for r in rs]

println("Solving problems")
retvals = pmap(prob->evalmodel(prob,solver),probs)
time = [retval["solve_time"] for retval in retvals]
Expand All @@ -73,4 +80,4 @@ time,status = benchmark(solver,probs;warm_up_probs = [("pglib_opf_case1888_rte.m

writedlm("name-power.csv",name,',')
writedlm("time-power-$(SOLVER).csv",time)
writedlm("status-power-$(SOLVER).csv",status)
writedlm("status-power-$(SOLVER).csv",status)
11 changes: 11 additions & 0 deletions benchmark/config.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ using Pkg, Distributed, DelimitedFiles
const NP = ARGS[1]
const SOLVER = ARGS[2]


addprocs(parse(Int,NP),exeflags="--project=.")
Pkg.instantiate()

Expand All @@ -19,3 +20,13 @@ elseif SOLVER == "knitro"
else
error("Proper ARGS should be given")
end

# Set verbose option
if SOLVER == "ipopt"
const PRINT_LEVEL = (ARGS[3] == "verbose") ? 5 : 0
elseif SOLVER == "knitro"
const PRINT_LEVEL = (ARGS[3] == "verbose") ? 3 : 0
else
using MadNLP
const PRINT_LEVEL = (ARGS[3] == "verbose") ? MadNLP.INFO : MadNLP.ERROR
end
12 changes: 9 additions & 3 deletions benchmark/runbenchmarks.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,19 @@ const NP = ARGS[1]

const CLASSES = filter(e-> e in ["cutest","power"], ARGS)
const SOLVERS = filter(e-> e in ["current","master","ipopt","knitro"], ARGS)
const PROJECT_PATH = dirname(@__FILE__)
const VERBOSE = ("verbose" in ARGS) ? "verbose" : "none"

cd(@__DIR__)
cp(".Project.toml","Project.toml",force=true)
cp(
joinpath(PROJECT_PATH, ".Project.toml"),
joinpath(PROJECT_PATH, "Project.toml"),
force=true
)

for class in CLASSES
for solver in SOLVERS
run(`julia --project=. benchmark-$class.jl $NP $solver`)
launch_script = joinpath(PROJECT_PATH, "benchmark-$class.jl")
run(`julia --project=$PROJECT_PATH $launch_script $NP $solver $VERBOSE`)
end
end

Expand Down