"...composable_kernel_rocm.git" did not exist on "5dee1b6498a664700d3344b878c08d935c9e2535"
Unverified Commit 94830abe authored by Chris Austen's avatar Chris Austen Committed by GitHub
Browse files

Enable performance repos to be swapped (#1589)

Enable multiple orgs for testing
parent d1b5f332
name: History name: History
on: on:
workflow_dispatch: workflow_dispatch:
inputs: inputs:
start_date: start_date:
description: Start date for results analysis description: Start date for results analysis
required: true required: true
default: 'yyyy-mm-dd' default: 'yyyy-mm-dd'
end_date: end_date:
description: End date for results analysis description: End date for results analysis
required: true required: true
default: 'yyyy-mm-dd' default: 'yyyy-mm-dd'
history_repo: history_repo:
description: Repository for history results between dates description: Repository for history results between dates
required: true required: true
default: 'ROCmSoftwarePlatform/migraphx-reports' default: 'ROCmSoftwarePlatform/migraphx-reports'
benchmark_utils_repo:
jobs: description: Repository where benchmark utils are stored
release: required: true
uses: migraphx-benchmark/actions/.github/workflows/history.yml@main default: "ROCmSoftwarePlatform/migraphx-benchmark-utils"
with:
start_date: ${{ github.event.inputs.start_date || 'yyyy-mm-dd' }} jobs:
end_date: ${{ github.event.inputs.end_date || 'yyyy-mm-dd' }} release:
history_repo: ${{ github.event.inputs.history_repo || 'ROCmSoftwarePlatform/migraphx-reports' }} uses: migraphx-benchmark/actions/.github/workflows/history.yml@main
secrets: with:
gh_token: ${{ secrets.MIGRAPHX_BOT_TOKEN }} start_date: ${{ github.event.inputs.start_date || 'yyyy-mm-dd' }}
mail_user: ${{ secrets.MAIL_USERNAME }} end_date: ${{ github.event.inputs.end_date || 'yyyy-mm-dd' }}
mail_pass: ${{ secrets.MAIL_PASSWORD }} history_repo: ${{ github.event.inputs.history_repo || 'ROCmSoftwarePlatform/migraphx-reports' }}
benchmark_utils_repo: ${{ github.event.inputs.benchmark_utils_repo || 'ROCmSoftwarePlatform/migraphx-benchmark-utils' }}
secrets:
gh_token: ${{ secrets.MIGRAPHX_BOT_TOKEN }}
mail_user: ${{ secrets.MAIL_USERNAME }}
mail_pass: ${{ secrets.MAIL_PASSWORD }}
...@@ -14,9 +14,17 @@ on: ...@@ -14,9 +14,17 @@ on:
required: true required: true
default: '5.4.2' default: '5.4.2'
performance_reports_repo: performance_reports_repo:
description: Result repository description: Repository where performance reports are stored
required: true required: true
default: 'ROCmSoftwarePlatform/migraphx-reports' 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: result_number:
description: Last N results description: Last N results
required: true required: true
...@@ -35,7 +43,9 @@ jobs: ...@@ -35,7 +43,9 @@ jobs:
rocm_release: ${{ github.event.inputs.rocm_release || '5.4.2' }} rocm_release: ${{ github.event.inputs.rocm_release || '5.4.2' }}
result_number: ${{ github.event.inputs.result_number || '10' }} result_number: ${{ github.event.inputs.result_number || '10' }}
flags: ${{ github.event.inputs.flags || '-r' }} flags: ${{ github.event.inputs.flags || '-r' }}
performance_reports_repo: ${{ github.event.inputs.performance_reports_repo || 'ROCmSoftwarePlatform/migraphx-reports' }} 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: secrets:
gh_token: ${{ secrets.MIGRAPHX_BOT_TOKEN }} gh_token: ${{ secrets.MIGRAPHX_BOT_TOKEN }}
mail_user: ${{ secrets.MAIL_USERNAME }} mail_user: ${{ secrets.MAIL_USERNAME }}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment