-
Notifications
You must be signed in to change notification settings - Fork 292
36 lines (34 loc) · 1.12 KB
/
torchao.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Torchao nightly workflow (A100)
on:
# DEBUG
pull_request:
workflow_dispatch:
schedule:
- cron: '00 18 * * *' # run at 6:00 PM UTC, K8s containers will roll out at 12PM EST
jobs:
timm:
if: false
uses: ./.github/workflows/_linux-benchmark-cuda.yml
with:
userbenchmark: torchao
userbenchmark-run-args: "--ci --dashboard --timm"
secrets:
HUGGING_FACE_HUB_TOKEN: ${{ secrets.HUGGING_FACE_HUB_TOKEN }}
torchbench:
uses: ./.github/workflows/_linux-benchmark-cuda.yml
with:
userbenchmark: torchao
userbenchmark-run-args: "--ci --dashboard --torchbench"
secrets:
HUGGING_FACE_HUB_TOKEN: ${{ secrets.HUGGING_FACE_HUB_TOKEN }}
huggingface:
if: false
uses: ./.github/workflows/_linux-benchmark-cuda.yml
with:
userbenchmark: torchao
userbenchmark-run-args: "--ci --dashboard --huggingface"
secrets:
HUGGING_FACE_HUB_TOKEN: ${{ secrets.HUGGING_FACE_HUB_TOKEN }}
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}-${{ github.event_name == 'workflow_dispatch' }}
cancel-in-progress: true