.github/workflows/performance.yaml #526
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
name: MIGraphX Performance Tests | ||
on: | ||
pull_request: | ||
branches: [develop] | ||
types: [opened, synchronize, closed] | ||
schedule: | ||
- cron: "0 6 * * 1-6" | ||
workflow_dispatch: | ||
inputs: | ||
rocm_release: | ||
description: ROCm Version | ||
required: true | ||
default: '5.4.2' | ||
performance_reports_repo: | ||
description: Repository where performance reports are stored | ||
required: true | ||
default: 'ROCmSoftwarePlatform/migraphx-reports' | ||
benchmark_utils_repo: | ||
description: Repository where benchmark utils are stored | ||
required: true | ||
default: "ROCmSoftwarePlatform/migraphx-benchmark-utils" | ||
organization: | ||
description: Organization based on which location of files will be different | ||
required: true | ||
default: "AMD" | ||
result_number: | ||
description: Last N results | ||
required: true | ||
default: '10' | ||
flags: | ||
description: -m for Max value; -s for Std dev; -r for Threshold file | ||
required: true | ||
default: '-r' | ||
concurrency: "perftest-${{ github.head_ref || github.base_ref || 'schedule' }}" | ||
jobs: | ||
release: | ||
uses: ROCmSoftwarePlatform/migraphx-benchmark/.github/workflows/perf-test.yml@main | ||
Check failure on line 41 in .github/workflows/performance.yaml GitHub Actions / .github/workflows/performance.yamlInvalid workflow file
|
||
with: | ||
rocm_release: ${{ github.event.inputs.rocm_release || '5.4.2' }} | ||
result_number: ${{ github.event.inputs.result_number || '10' }} | ||
flags: ${{ github.event.inputs.flags || '-r' }} | ||
performance_reports_repo: ${{ github.event.inputs.performance_reports_repo || 'ROCmSoftwarePlatform/migraphx-reports' }} | ||
benchmark_utils_repo: ${{ github.event.inputs.benchmark_utils_repo || 'ROCmSoftwarePlatform/migraphx-benchmark-utils' }} | ||
organization: ${{ github.event.inputs.organization || 'AMD' }} | ||
secrets: | ||
gh_token: ${{ secrets.MIGRAPHX_BOT_TOKEN }} | ||
mail_user: ${{ secrets.MAIL_USERNAME }} | ||
mail_pass: ${{ secrets.MAIL_PASSWORD }} |