-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): run erc20 benchmarks in github
It also send results to zama's benchmark database.
- Loading branch information
Showing
3 changed files
with
254 additions
and
23 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,144 @@ | ||
# Run all ERC20 benchmarks on an AWS instance and return parsed results to Slab CI bot. | ||
name: ERC20 benchmarks | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# Weekly benchmarks will be triggered each Saturday at 5a.m. | ||
- cron: '0 5 * * 6' | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
RESULTS_FILENAME: parsed_benchmark_results_${{ github.sha }}.json | ||
ACTION_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
RUST_BACKTRACE: "full" | ||
RUST_MIN_STACK: "8388608" | ||
SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }} | ||
SLACK_ICON: https://pbs.twimg.com/profile_images/1274014582265298945/OjBKP9kn_400x400.png | ||
SLACK_USERNAME: ${{ secrets.BOT_USERNAME }} | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | ||
|
||
jobs: | ||
setup-instance: | ||
name: Setup instance (erc20-benchmarks) | ||
runs-on: ubuntu-latest | ||
outputs: | ||
runner-name: ${{ steps.start-instance.outputs.label }} | ||
steps: | ||
- name: Start instance | ||
id: start-instance | ||
uses: zama-ai/slab-github-runner@c0e7168795bd78f61f61146951ed9d0c73c9b701 | ||
with: | ||
mode: start | ||
github-token: ${{ secrets.SLAB_ACTION_TOKEN }} | ||
slab-url: ${{ secrets.SLAB_BASE_URL }} | ||
job-secret: ${{ secrets.JOB_SECRET }} | ||
backend: aws | ||
profile: bench | ||
|
||
erc20-benchmarks: | ||
name: Execute ERC20 benchmarks | ||
needs: setup-instance | ||
runs-on: ${{ needs.setup-instance.outputs.runner-name }} | ||
concurrency: | ||
group: ${{ github.workflow }}_${{ github.ref }} | ||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | ||
continue-on-error: true | ||
timeout-minutes: 720 # 12 hours | ||
steps: | ||
- name: Checkout tfhe-rs repo with tags | ||
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 | ||
with: | ||
fetch-depth: 0 | ||
token: ${{ secrets.FHE_ACTIONS_TOKEN }} | ||
|
||
- name: Get benchmark details | ||
run: | | ||
{ | ||
echo "BENCH_DATE=$(date --iso-8601=seconds)"; | ||
echo "COMMIT_DATE=$(git --no-pager show -s --format=%cd --date=iso8601-strict ${{ github.sha }})"; | ||
echo "COMMIT_HASH=$(git describe --tags --dirty)"; | ||
} >> "${GITHUB_ENV}" | ||
- name: Set up home | ||
# "Install rust" step require root user to have a HOME directory which is not set. | ||
run: | | ||
echo "HOME=/home/ubuntu" >> "${GITHUB_ENV}" | ||
- name: Install rust | ||
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a | ||
with: | ||
toolchain: nightly | ||
|
||
- name: Checkout Slab repo | ||
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 | ||
with: | ||
repository: zama-ai/slab | ||
path: slab | ||
token: ${{ secrets.FHE_ACTIONS_TOKEN }} | ||
|
||
- name: Run benchmarks | ||
run: | | ||
make bench_hlapi_erc20 | ||
- name: Parse results | ||
run: | | ||
python3 ./ci/benchmark_parser.py target/criterion ${{ env.RESULTS_FILENAME }} \ | ||
--database tfhe_rs \ | ||
--hardware "hpc7a.96xlarge" \ | ||
--project-version "${{ env.COMMIT_HASH }}" \ | ||
--branch ${{ github.ref_name }} \ | ||
--commit-date "${{ env.COMMIT_DATE }}" \ | ||
--bench-date "${{ env.BENCH_DATE }}" \ | ||
--walk-subdirs \ | ||
--name-suffix avx512 | ||
- name: Parse PBS counts | ||
run: | | ||
python3 ./ci/benchmark_parser.py tfhe/erc20_pbs_count.csv ${{ env.RESULTS_FILENAME }} \ | ||
--key-sizes \ | ||
--append-results | ||
- name: Upload parsed results artifact | ||
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 | ||
with: | ||
name: ${{ github.sha }}_erc20 | ||
path: ${{ env.RESULTS_FILENAME }} | ||
|
||
- name: Send data to Slab | ||
shell: bash | ||
run: | | ||
python3 slab/scripts/data_sender.py ${{ env.RESULTS_FILENAME }} "${{ secrets.JOB_SECRET }}" \ | ||
--slab-url "${{ secrets.SLAB_URL }}" | ||
- name: Slack Notification | ||
if: ${{ failure() }} | ||
continue-on-error: true | ||
uses: rtCamp/action-slack-notify@4e5fb42d249be6a45a298f3c9543b111b02f7907 | ||
env: | ||
SLACK_COLOR: ${{ job.status }} | ||
SLACK_MESSAGE: "ERC20 benchmarks finished with status: ${{ job.status }}. (${{ env.ACTION_RUN_URL }})" | ||
|
||
teardown-instance: | ||
name: Teardown instance (erc20-benchmarks) | ||
if: ${{ always() && needs.setup-instance.result != 'skipped' }} | ||
needs: [ setup-instance, erc20-benchmarks ] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Stop instance | ||
id: stop-instance | ||
uses: zama-ai/slab-github-runner@c0e7168795bd78f61f61146951ed9d0c73c9b701 | ||
with: | ||
mode: stop | ||
github-token: ${{ secrets.SLAB_ACTION_TOKEN }} | ||
slab-url: ${{ secrets.SLAB_BASE_URL }} | ||
job-secret: ${{ secrets.JOB_SECRET }} | ||
label: ${{ needs.setup-instance.outputs.runner-name }} | ||
|
||
- name: Slack Notification | ||
if: ${{ failure() }} | ||
continue-on-error: true | ||
uses: rtCamp/action-slack-notify@4e5fb42d249be6a45a298f3c9543b111b02f7907 | ||
env: | ||
SLACK_COLOR: ${{ job.status }} | ||
SLACK_MESSAGE: "Instance teardown (erc20-benchmarks) finished with status: ${{ job.status }}. (${{ env.ACTION_RUN_URL }})" |
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.