Skip to content

Commit f6e5c20

Browse files
committed
Update benchmarks
1 parent 663e684 commit f6e5c20

File tree

2 files changed

+22
-21
lines changed

2 files changed

+22
-21
lines changed

HybridKKT.jl/Makefile

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,45 @@
1-
21
JULIAEXEC=julia
32

4-
install:
5-
$(JULIAEXEC) --project -e "using Pkg; Pkg.instantiate()"
3+
install:
4+
$(JULIAEXEC) --project -e "using Pkg; Pkg.instantiate()"
65

7-
clean:
8-
rm -rf results/
6+
clean:
7+
rm -rf results/
98

109
build:
11-
zip -r results.zip results/
10+
zip -r results.zip results/
1211

1312
update:
14-
$(JULIAEXEC) --project -e "using Pkg; Pkg.update()"
15-
13+
$(JULIAEXEC) --project -e "using Pkg; Pkg.update()"
14+
1615
tests:
17-
$(JULIAEXEC) --project benchmarks/COPS/benchmark.jl --quick
18-
$(JULIAEXEC) --project benchmarks/OPF/benchmark.jl --quick
16+
$(JULIAEXEC) --project benchmarks/COPS/benchmark.jl --quick
17+
$(JULIAEXEC) --project benchmarks/OPF/benchmark.jl --quick
18+
$(JULIAEXEC) --project benchmarks/CUTEst/benchmark.jl --quick
1919

20-
table1:
21-
$(JULIAEXEC) --project benchmarks/OPF/benchmark_linear_solvers.jl
20+
table1:
21+
$(JULIAEXEC) --project benchmarks/OPF/benchmark_linear_solvers.jl
2222

2323
table2:
24-
$(JULIAEXEC) --project benchmarks/OPF/relaxation_convergence.jl
24+
$(JULIAEXEC) --project benchmarks/OPF/relaxation_convergence.jl
2525

2626
figure1:
27-
$(JULIAEXEC) --project benchmarks/OPF/hybrid_convergence.jl
27+
$(JULIAEXEC) --project benchmarks/OPF/hybrid_convergence.jl
2828

2929
figure2:
30-
$(JULIAEXEC) --project benchmarks/OPF/benchmark_kkt.jl
30+
$(JULIAEXEC) --project benchmarks/OPF/benchmark_kkt.jl
3131

3232
opf_benchmark:
33-
$(JULIAEXEC) --project benchmarks/OPF/benchmark.jl
33+
$(JULIAEXEC) --project benchmarks/OPF/benchmark.jl
3434

3535
cops_benchmark:
36-
$(JULIAEXEC) --project benchmarks/COPS/benchmark.jl
36+
$(JULIAEXEC) --project benchmarks/COPS/benchmark.jl
3737

38-
benchmarks: opf_benchmark cops_benchmark
38+
cutest_benchmark:
39+
$(JULIAEXEC) --project benchmarks/CUTEst/benchmark.jl
3940

40-
article: table1 figure1 figure2
41+
benchmarks: opf_benchmark cops_benchmark cutest_benchmark
4142

42-
all: benchmarks article
43+
article: table1 figure1 figure2
4344

45+
all: benchmarks article

HybridKKT.jl/benchmarks/OPF/benchmark_linear_solvers.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import Comonicon
32

43
include(joinpath(@__DIR__, "..", "common.jl"))

0 commit comments

Comments
 (0)