benchmark_hpu #6
This file contains hidden or 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
| # Run benchmarks on a permanent HPU instance and return parsed results to Slab CI bot. | |
| name: benchmark_hpu | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| command: | |
| description: "Benchmark command to run" | |
| type: choice | |
| default: integer | |
| options: | |
| - integer | |
| - hlapi | |
| - hlapi_erc20 | |
| op_flavor: | |
| description: "Operations set to run" | |
| type: choice | |
| default: default | |
| options: | |
| - default | |
| - fast_default | |
| all_precisions: | |
| description: "Run all precisions" | |
| type: boolean | |
| default: false | |
| bench_type: | |
| description: "Benchmarks type" | |
| type: choice | |
| default: latency | |
| options: | |
| - latency | |
| - throughput | |
| - both | |
| v80_pcie_dev: | |
| description: "V80 PCIe device number" | |
| default: 24 | |
| v80_serial_number: | |
| description: "V80 serial number" | |
| default: XFL12NWY3ZKG | |
| permissions: {} | |
| jobs: | |
| run-benchmarks: | |
| name: benchmark_hpu/run-benchmarks | |
| uses: ./.github/workflows/benchmark_hpu_common.yml | |
| with: | |
| command: ${{ inputs.command }} | |
| op_flavor: ${{ inputs.op_flavor }} | |
| bench_type: ${{ inputs.bench_type }} | |
| all_precisions: ${{ inputs.all_precisions }} | |
| v80_pcie_dev: ${{ inputs.v80_pcie_dev }} | |
| v80_serial_number: ${{ inputs.v80_serial_number }} | |
| secrets: | |
| BOT_USERNAME: ${{ secrets.BOT_USERNAME }} | |
| SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }} | |
| SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
| REPO_CHECKOUT_TOKEN: ${{ secrets.REPO_CHECKOUT_TOKEN }} | |
| JOB_SECRET: ${{ secrets.JOB_SECRET }} | |
| SLAB_ACTION_TOKEN: ${{ secrets.SLAB_ACTION_TOKEN }} | |
| SLAB_URL: ${{ secrets.SLAB_URL }} | |
| SLAB_BASE_URL: ${{ secrets.SLAB_BASE_URL }} | |
| SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} |