-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into compathelper/new_version/2024-06-13-00-12-…
…18-544-03881401723
- Loading branch information
Showing
22 changed files
with
746 additions
and
139 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# To workaroud https://github.com/actions/first-interaction/issues/10 in a secure way, | ||
# we take the following steps to generate and comment a performance benchmark result: | ||
# 1. first "performance tracking" workflow will generate the benchmark results in an unprivileged environment triggered on `pull_request` event | ||
# 2. then this "performance tracking (comment)" workflow will show the result to us as a PR comment in a privileged environment | ||
# Note that this workflow can only be modifed by getting checked-in to the default branch | ||
# and thus is secure even though this workflow is granted with write permissions, etc. | ||
# xref: https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ | ||
|
||
name: Performance tracking (comment) | ||
|
||
on: | ||
workflow_run: | ||
workflows: | ||
- performance tracking | ||
types: | ||
- completed | ||
|
||
jobs: | ||
comment: | ||
runs-on: ubuntu-latest | ||
#runs-on: self-hosted | ||
if: > | ||
${{ github.event.workflow_run.event == 'pull_request' && | ||
github.event.workflow_run.conclusion == 'success' }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
# restore records from the artifacts | ||
- uses: dawidd6/action-download-artifact@v6 | ||
with: | ||
workflow: benchmark.yml | ||
name: performance-tracking | ||
workflow_conclusion: success | ||
- name: output benchmark result | ||
id: output-result-markdown | ||
run: | | ||
echo ::set-output name=body::$(cat ./benchmark-result.artifact) | ||
- name: output pull request number | ||
id: output-pull-request-number | ||
run: | | ||
echo ::set-output name=body::$(cat ./pull-request-number.artifact) | ||
# check if the previous comment exists | ||
- name: find comment | ||
uses: peter-evans/find-comment@v3 | ||
id: fc | ||
with: | ||
issue-number: ${{ steps.output-pull-request-number.outputs.body }} | ||
comment-author: 'github-actions[bot]' | ||
body-includes: Benchmark Result | ||
|
||
# create/update comment | ||
- name: create comment | ||
if: ${{ steps.fc.outputs.comment-id == 0 }} | ||
uses: peter-evans/create-or-update-comment@v4 | ||
with: | ||
issue-number: ${{ steps.output-pull-request-number.outputs.body }} | ||
body: ${{ steps.output-result-markdown.outputs.body }} | ||
- name: update comment | ||
if: ${{ steps.fc.outputs.comment-id != 0 }} | ||
uses: peter-evans/create-or-update-comment@v4 | ||
with: | ||
comment-id: ${{ steps.fc.outputs.comment-id }} | ||
body: ${{ steps.output-result-markdown.outputs.body }} |
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,57 @@ | ||
name: Performance tracking | ||
on: | ||
pull_request: | ||
|
||
env: | ||
PYTHON: ~ | ||
|
||
jobs: | ||
performance-tracking: | ||
runs-on: ubuntu-latest | ||
#runs-on: self-hosted | ||
steps: | ||
# setup | ||
- uses: actions/checkout@v4 | ||
- uses: julia-actions/setup-julia@latest | ||
with: | ||
version: '1.10' | ||
- uses: julia-actions/julia-buildpkg@latest | ||
- name: install dependencies | ||
run: julia -e 'using Pkg; pkg"add PkgBenchmark BenchmarkCI@0.1"' | ||
|
||
# run the benchmark suite | ||
- name: run benchmarks | ||
run: | | ||
julia -e ' | ||
using BenchmarkCI | ||
BenchmarkCI.judge() | ||
BenchmarkCI.displayjudgement() | ||
' | ||
# generate and record the benchmark result as markdown | ||
- name: generate benchmark result | ||
run: | | ||
body=$(julia -e ' | ||
using BenchmarkCI | ||
let | ||
judgement = BenchmarkCI._loadjudge(BenchmarkCI.DEFAULT_WORKSPACE) | ||
title = "Benchmark Result" | ||
ciresult = BenchmarkCI.CIResult(; judgement, title) | ||
BenchmarkCI.printcommentmd(stdout::IO, ciresult) | ||
end | ||
') | ||
body="${body//'%'/'%25'}" | ||
body="${body//$'\n'/'%0A'}" | ||
body="${body//$'\r'/'%0D'}" | ||
echo $body > ./benchmark-result.artifact | ||
# record the pull request number | ||
- name: record pull request number | ||
run: echo ${{ github.event.pull_request.number }} > ./pull-request-number.artifact | ||
|
||
# save as artifacts (performance tracking (comment) workflow will use it) | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: performance-tracking | ||
path: ./*.artifact |
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
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,7 @@ | ||
[deps] | ||
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed" | ||
PkgBenchmark = "32113eaa-f34f-5b0d-bd6c-c81e245fc73d" | ||
QuantumOptics = "6e0679c1-51ea-5a7c-ac74-d61b76210b0c" | ||
StochasticDiffEq = "789caeaf-c7a9-5a7d-9973-96adeb23e2a0" |
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,113 @@ | ||
using BenchmarkTools | ||
using QuantumOptics | ||
using OrdinaryDiffEq | ||
using StochasticDiffEq | ||
using LinearAlgebra | ||
using PkgBenchmark | ||
|
||
|
||
const SUITE = BenchmarkGroup() | ||
|
||
prob_list = ("schroedinger", "master", "stochastic_schroedinger", "stochastic_master") | ||
for prob in prob_list | ||
SUITE[prob] = BenchmarkGroup([prob]) | ||
for type in ("qo types", "base array types") | ||
SUITE[prob][type] = BenchmarkGroup() | ||
end | ||
end | ||
|
||
function bench_schroedinger(dim; pure=true) | ||
b = SpinBasis(dim) | ||
t₀, t₁ = (0.0, pi) | ||
H = sigmax(b) | ||
psi0 = spindown(b) | ||
if pure | ||
obj = psi0.data | ||
Hobj = H.data | ||
else | ||
obj = psi0 | ||
Hobj = H | ||
end | ||
schroed!(dpsi, psi, p, t) = timeevolution.dschroedinger!(dpsi, Hobj, psi) | ||
prob = ODEProblem(schroed!, obj, (t₀, t₁)) | ||
end | ||
function bench_master(dim; pure=true) | ||
b = SpinBasis(dim) | ||
t₀, t₁ = (0.0, pi) | ||
H = sigmax(b) | ||
psi0 = spindown(b) | ||
J = sigmam(b) | ||
rho0 = dm(psi0) | ||
rates = [0.3] | ||
if pure | ||
obj = rho0.data | ||
Jobj, Jdag = (J.data, dagger(J).data) | ||
Hobj = H.data | ||
else | ||
obj = rho0 | ||
Jobj, Jdag = (J, dagger(J)) | ||
Hobj = H | ||
end | ||
master!(drho, rho, p, t) = timeevolution.dmaster_h!(drho, Hobj, [Jobj], [Jdag], rates, rho, copy(obj)) | ||
prob = ODEProblem(master!, obj, (t₀, t₁)) | ||
end | ||
function bench_stochastic_schroedinger(dim; pure=true) | ||
b = SpinBasis(dim) | ||
t₀, t₁ = (0.0, pi) | ||
H = sigmax(b) | ||
Hs = sigmay(b) | ||
psi0 = spindown(b) | ||
if pure | ||
obj = psi0.data | ||
Hobj = H.data | ||
Hsobj = Hs.data | ||
else | ||
obj = psi0 | ||
Hobj = H | ||
Hsobj = Hs | ||
end | ||
schroed!(dpsi, psi, p, t) = timeevolution.dschroedinger!(dpsi, Hobj, psi) | ||
stoch_schroed!(dpsi, psi, p, t) = timeevolution.dschroedinger!(dpsi, Hsobj, psi) | ||
prob = SDEProblem(schroed!, stoch_schroed!, obj, (t₀, t₁)) | ||
end | ||
function bench_stochastic_master(dim; pure=true) | ||
b = SpinBasis(dim) | ||
t₀, t₁ = (0.0, pi) | ||
H = sigmax(b) | ||
Hs = sigmay(b) | ||
psi0 = spindown(b) | ||
J = sigmam(b) | ||
rho0 = dm(psi0) | ||
rates = [0.3] | ||
if pure | ||
obj = rho0.data | ||
Jobj, Jdag = (J.data, dagger(J).data) | ||
Hobj = H.data | ||
Hsobj = Hs.data | ||
else | ||
obj = rho0 | ||
Jobj, Jdag = (J, dagger(J)) | ||
Hobj = H | ||
Hsobj = Hs | ||
end | ||
master!(drho, rho, p, t) = timeevolution.dmaster_h!(drho, Hobj, [Jobj], [Jdag], rates, rho, copy(obj)) | ||
stoch_master!(drho, rho, p, t) = timeevolution.dmaster_h!(drho, Hsobj, [Jobj], [Jdag], rates, rho, copy(obj)) | ||
prob = SDEProblem(master!, stoch_master!, obj, (t₀, t₁)) | ||
end | ||
|
||
for dim in (1//2, 20//1, 50//1, 100//1) | ||
for solver in zip(("schroedinger", "master"), (:(bench_schroedinger), :(bench_master))) | ||
name, bench = (solver[1], solver[2]) | ||
# benchmark solving ODE problems on data of QO types | ||
SUITE[name]["base array types"][string(dim)] = @benchmarkable solve(prob, DP5(); save_everystep=false) setup=(prob=eval($bench)($dim; pure=true)) | ||
# benchmark solving ODE problems on custom QO types | ||
SUITE[name]["qo types"][string(dim)] = @benchmarkable solve(prob, DP5(); save_everystep=false) setup=(prob=eval($bench)($dim; pure=false)) | ||
end | ||
for solver in zip(("stochastic schroedinger", "stochastic master"), (:(bench_stochastic_schroedinger), :(bench_stochastic_master))) | ||
name, bench = (solver[1], solver[2]) | ||
# benchmark solving ODE problems on data of QO types | ||
SUITE[name]["base array types"][string(dim)] = @benchmarkable solve(prob, EM(), dt=1/100; save_everystep=false) setup=(prob=eval($bench)($dim; pure=true)) | ||
# benchmark solving ODE problems on custom QO types | ||
SUITE[name]["qo types"][string(dim)] = @benchmarkable solve(prob, EM(), dt=1/100; save_everystep=false) setup=(prob=eval($bench)($dim; pure=false)) | ||
end | ||
end |
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
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
Oops, something went wrong.