-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
181 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Run gradient benchmarks | ||
|
||
on: | ||
pull_request: | ||
types: [labeled, opened, synchronize, reopened] | ||
|
||
# Only trigger the benchmark job when you add `run Hessian benchmark` label to the PR | ||
jobs: | ||
Benchmark: | ||
runs-on: ubuntu-latest | ||
if: contains(github.event.pull_request.labels.*.name, 'run Hessian benchmark') | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: julia-actions/setup-julia@latest | ||
with: | ||
version: 1 | ||
- uses: julia-actions/julia-buildpkg@latest | ||
- name: Install dependencies | ||
run: julia -e 'using Pkg; pkg"add PkgBenchmark [email protected]"' | ||
- name: Run benchmarks | ||
run: julia -e 'using BenchmarkCI; BenchmarkCI.judge(;baseline = "origin/main", script = joinpath(pwd(), "benchmark", "benchmarks_Hessian.jl"))' | ||
- name: Post results | ||
run: julia -e 'using BenchmarkCI; BenchmarkCI.postjudge()' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Run gradient benchmarks | ||
|
||
on: | ||
pull_request: | ||
types: [labeled, opened, synchronize, reopened] | ||
|
||
# Only trigger the benchmark job when you add `run Hessian product benchmark` label to the PR | ||
jobs: | ||
Benchmark: | ||
runs-on: ubuntu-latest | ||
if: contains(github.event.pull_request.labels.*.name, 'run Hessian product benchmark') | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: julia-actions/setup-julia@latest | ||
with: | ||
version: 1 | ||
- uses: julia-actions/julia-buildpkg@latest | ||
- name: Install dependencies | ||
run: julia -e 'using Pkg; pkg"add PkgBenchmark [email protected]"' | ||
- name: Run benchmarks | ||
run: julia -e 'using BenchmarkCI; BenchmarkCI.judge(;baseline = "origin/main", script = joinpath(pwd(), "benchmark", "benchmarks_Hessianvector.jl"))' | ||
- name: Post results | ||
run: julia -e 'using BenchmarkCI; BenchmarkCI.postjudge()' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Run gradient benchmarks | ||
|
||
on: | ||
pull_request: | ||
types: [labeled, opened, synchronize, reopened] | ||
|
||
# Only trigger the benchmark job when you add `run Jacobian benchmark` label to the PR | ||
jobs: | ||
Benchmark: | ||
runs-on: ubuntu-latest | ||
if: contains(github.event.pull_request.labels.*.name, 'run Jacobian benchmark') | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: julia-actions/setup-julia@latest | ||
with: | ||
version: 1 | ||
- uses: julia-actions/julia-buildpkg@latest | ||
- name: Install dependencies | ||
run: julia -e 'using Pkg; pkg"add PkgBenchmark [email protected]"' | ||
- name: Run benchmarks | ||
run: julia -e 'using BenchmarkCI; BenchmarkCI.judge(;baseline = "origin/main", script = joinpath(pwd(), "benchmark", "benchmarks_Jacobian.jl"))' | ||
- name: Post results | ||
run: julia -e 'using BenchmarkCI; BenchmarkCI.postjudge()' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Run gradient benchmarks | ||
|
||
on: | ||
pull_request: | ||
types: [labeled, opened, synchronize, reopened] | ||
|
||
# Only trigger the benchmark job when you add `run Jacobian product benchmark` label to the PR | ||
jobs: | ||
Benchmark: | ||
runs-on: ubuntu-latest | ||
if: contains(github.event.pull_request.labels.*.name, 'run Jacobian product benchmark') | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: julia-actions/setup-julia@latest | ||
with: | ||
version: 1 | ||
- uses: julia-actions/julia-buildpkg@latest | ||
- name: Install dependencies | ||
run: julia -e 'using Pkg; pkg"add PkgBenchmark [email protected]"' | ||
- name: Run benchmarks | ||
run: julia -e 'using BenchmarkCI; BenchmarkCI.judge(;baseline = "origin/main", script = joinpath(pwd(), "benchmark", "benchmarks_Jacobianvector.jl"))' | ||
- name: Post results | ||
run: julia -e 'using BenchmarkCI; BenchmarkCI.postjudge()' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Include useful packages | ||
using ADNLPModels | ||
using Dates, DelimitedFiles, JLD2, LinearAlgebra, Printf, SparseArrays | ||
using BenchmarkTools, DataFrames | ||
#JSO packages | ||
using NLPModels, OptimizationProblems, SolverBenchmark | ||
# Most likely benchmark with JuMP as well | ||
using JuMP, NLPModelsJuMP | ||
|
||
include("problems_sets.jl") | ||
verbose_subbenchmark = false | ||
|
||
# Run locally with `tune!(SUITE)` and then `run(SUITE)` | ||
const SUITE = BenchmarkGroup() | ||
|
||
include("jacobian/benchmarks_coloring.jl") | ||
include("jacobian/benchmarks_jacobian.jl") | ||
include("jacobian/benchmarks_jacobian_residual.jl") | ||
|
||
include("hessian/benchmarks_coloring.jl") | ||
include("hessian/benchmarks_hessian.jl") | ||
include("hessian/benchmarks_hessian_lagrangian.jl") | ||
include("hessian/benchmarks_hessian_residual.jl") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Include useful packages | ||
using ADNLPModels | ||
using Dates, DelimitedFiles, JLD2, LinearAlgebra, Printf, SparseArrays | ||
using BenchmarkTools, DataFrames | ||
#JSO packages | ||
using NLPModels, OptimizationProblems, SolverBenchmark | ||
# Most likely benchmark with JuMP as well | ||
using JuMP, NLPModelsJuMP | ||
|
||
include("problems_sets.jl") | ||
verbose_subbenchmark = false | ||
|
||
# Run locally with `tune!(SUITE)` and then `run(SUITE)` | ||
const SUITE = BenchmarkGroup() | ||
|
||
include("hessian/benchmarks_hprod.jl") | ||
include("hessian/benchmarks_hprod_lagrangian.jl") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Include useful packages | ||
using ADNLPModels | ||
using Dates, DelimitedFiles, JLD2, LinearAlgebra, Printf, SparseArrays | ||
using BenchmarkTools, DataFrames | ||
#JSO packages | ||
using NLPModels, OptimizationProblems, SolverBenchmark | ||
# Most likely benchmark with JuMP as well | ||
using JuMP, NLPModelsJuMP | ||
|
||
include("problems_sets.jl") | ||
verbose_subbenchmark = false | ||
|
||
# Run locally with `tune!(SUITE)` and then `run(SUITE)` | ||
const SUITE = BenchmarkGroup() | ||
|
||
include("jacobian/benchmarks_coloring.jl") | ||
include("jacobian/benchmarks_jacobian.jl") | ||
include("jacobian/benchmarks_jacobian_residual.jl") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Include useful packages | ||
using ADNLPModels | ||
using Dates, DelimitedFiles, JLD2, LinearAlgebra, Printf, SparseArrays | ||
using BenchmarkTools, DataFrames | ||
#JSO packages | ||
using NLPModels, OptimizationProblems, SolverBenchmark | ||
# Most likely benchmark with JuMP as well | ||
using JuMP, NLPModelsJuMP | ||
|
||
include("problems_sets.jl") | ||
verbose_subbenchmark = false | ||
|
||
# Run locally with `tune!(SUITE)` and then `run(SUITE)` | ||
const SUITE = BenchmarkGroup() | ||
|
||
include("jacobian/benchmarks_jprod.jl") | ||
include("jacobian/benchmarks_jprod_residual.jl") | ||
include("jacobian/benchmarks_jtprod.jl") | ||
include("jacobian/benchmarks_jtprod_residual.jl") |