Skip to content

Commit

Permalink
Updated timings
Browse files Browse the repository at this point in the history
Fixing #12 didn't have the positive impact I was expecting speed wise, but still good to have fixed
  • Loading branch information
Foggalong committed Jun 25, 2024
1 parent 92ae275 commit c8de5c7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions examples/1000/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Timings

This is how long to solve the $n = 1000$ example with each method at various commits. Timings in seconds (all shown to three significant figures) are the average of three runs, repeated five times with the best average taken. The first two solvers are standard non-robust optimization, and the last three are all robust optimization (direct or SQP).
This is how long to solve the $n = 1000$ example with each method at various commits. Timings in seconds (all shown to three significant figures) are the average of three runs, repeated five times with the best average taken. The first two solvers are standard non-robust optimization, and the last three are all robust optimization (conic or SQP).

| Commit | Gurobi (standard) | HiGHS (standard) | Gurobi (direct) | Gurobi (SQP) | HiGHS (SQP) | Total |
| :-----: | ----------------: | ---------------: | --------------: | -----------: | ----------: | ----: |
| 7d866d8 | 0.688 | 0.197 | 2.690 | 24.400 | 1.700 | 492.8 |
| Commit | Gurobi (standard) | HiGHS (standard) | Gurobi (conic) | Gurobi (SQP) | HiGHS (SQP) | Total |
| :-----: | ----------------: | ---------------: | -------------: | -----------: | ----------: | ----: |
| 7d866d8 | 0.688 | 0.197 | 2.690 | 24.400 | 1.700 | 492.8 |
| 90a6040 | 0.690 | 0.204 | 2.770 | 24.600 | 1.700 | 499.9 |
| 92ae275 | 0.676 | 0.204 | 2.750 | 24.600 | 1.680 | 507.3 |

0 comments on commit c8de5c7

Please sign in to comment.