Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
MIGraphX
Commits
637d1a7b
Unverified
Commit
637d1a7b
authored
Jul 24, 2022
by
Chris Austen
Committed by
GitHub
Jul 24, 2022
Browse files
Add performance testing yamls (#1313)
* Add performance check per commit
parent
c722117d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
75 additions
and
0 deletions
+75
-0
.github/workflows/benchmark.yaml
.github/workflows/benchmark.yaml
+15
-0
.github/workflows/performance.yaml
.github/workflows/performance.yaml
+44
-0
.github/workflows/rocm-image-release.yaml
.github/workflows/rocm-image-release.yaml
+16
-0
No files found.
.github/workflows/benchmark.yaml
0 → 100644
View file @
637d1a7b
name
:
MiGraphX Benchmark
on
:
workflow_dispatch
:
jobs
:
benchmark
:
uses
:
ROCmSoftwarePlatform/actions/.github/workflows/benchmarks.yml@main
with
:
rocm_version
:
5.2
script_repo
:
migraphx-benchmark/benchmark-utils
result_path
:
/usr/share/migraphx/test-results
result_repo
:
ROCmSoftwarePlatform/comparison-results
secrets
:
gh_token
:
${{ secrets.MIGRAPHX_BOT_TOKEN }}
.github/workflows/performance.yaml
0 → 100644
View file @
637d1a7b
name
:
MIGraphX Performance Tests
on
:
push
:
branches
:
[
develop
]
pull_request
:
branches
:
[
develop
]
schedule
:
-
cron
:
"
0
5
*
*
1-6"
workflow_dispatch
:
inputs
:
rocm_release
:
description
:
ROCm Version
required
:
true
default
:
'
5.2'
performance_reports_repo
:
description
:
Result repository
required
:
true
default
:
'
ROCmSoftwarePlatform/migraphx-reports'
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
:
'
-s'
concurrency
:
benchmark
jobs
:
release
:
uses
:
rocmsoftwareplatform/migraphx-benchmark/.github/workflows/perf-test.yml@main
with
:
rocm_release
:
${{ github.event.inputs.rocm_release || '5.2' }}
result_number
:
${{ github.event.inputs.result_number || '10' }}
flags
:
${{ github.event.inputs.flags || '-s' }}
performance_reports_repo
:
${{ github.event.inputs.performance_reports_repo || 'ROCmSoftwarePlatform/migraphx-reports' }}
secrets
:
gh_token
:
${{ secrets.MIGRAPHX_BOT_TOKEN }}
mail_user
:
${{ secrets.MAIL_USERNAME }}
mail_pass
:
${{ secrets.MAIL_PASSWORD }}
.github/workflows/rocm-image-release.yaml
0 → 100644
View file @
637d1a7b
name
:
ROCM Docker image build
on
:
workflow_dispatch
:
inputs
:
rocm_release
:
description
:
ROCm release version
required
:
true
jobs
:
release
:
uses
:
ROCmSoftwarePlatform/actions/.github/workflows/rocm-release.yml@main
with
:
rocm_release
:
${{ github.event.inputs.rocm_release }}
secrets
:
gh_token
:
${{ secrets.MIGRAPHX_BOT_TOKEN }}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment