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

Add the workflow for continuous benchmark #679

Merged
merged 1 commit into from
Aug 19, 2024
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
17 changes: 17 additions & 0 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Benchmarks

on:
push:
branches:
- main
jobs:
detray_benchmark_job:
runs-on: ubuntu-latest
steps:
- run: >
curl -X POST --fail
-F token=${{ secrets.TRACCC_BENCHMARK_TRIGGER_TOKEN }}
-F ref=master
--form variables[MERGE_TIME]="$(date '+%Y-%m-%d_%H:%M:%S')"
--form variables[SOURCE_SHA]="${{ github.sha }}"
https://gitlab.cern.ch/api/v4/projects/190887/trigger/pipeline
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,16 @@ Attaching file performance_track_finding.root as _file0...
root [1] finding_trackeff_vs_eta->Draw()
```

## Continuous benchmark

Monitoring the event throughput of track reconstruction with the toy geometry

- Number of events: 100
- Number of tracks per event: 5000
- Algorithms used: seeding, track finding and track fitting

<img src="https://gitlab.cern.ch/acts/traccc-benchmark/-/raw/master/plots/toy_data.png?ref_type=heads" width="500" height="500" />

## Troubleshooting

The following are potentially useful instructions for troubleshooting various
Expand Down
Loading