Compute Benchmarks Nightly #7
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: Compute Benchmarks Nightly | |
on: | |
schedule: | |
- cron: '0 0 * * *' # Runs at midnight UTC every day | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
nightly: | |
name: Compute Benchmarks Nightly level-zero | |
uses: ./.github/workflows/benchmarks-reusable.yml | |
with: | |
str_name: 'level_zero' | |
unit: 'gpu' | |
pr_no: 0 | |
bench_script_params: '--save baseline' | |
sycl_config_params: '' | |
sycl_repo: 'intel/llvm' | |
sycl_commit: '' | |
nightly2: | |
# we need to wait until previous job is done so that the html report | |
# contains both runs | |
needs: nightly | |
name: Compute Benchmarks Nightly level-zero v2 | |
uses: ./.github/workflows/benchmarks-reusable.yml | |
with: | |
str_name: 'level_zero_v2' | |
unit: 'gpu' | |
pr_no: 0 | |
bench_script_params: '--save baseline-v2' | |
sycl_config_params: '' | |
sycl_repo: 'intel/llvm' | |
sycl_commit: '' | |
upload_report: true |