Skip to content

Customizable Triton XPU reference for E2E accuracy workload #4229

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/e2e-accuracy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
description: PyTorch ref, keep empty for default
type: string
default: ""
triton_ref:
description: Triton XPU ref, keep empty for default
type: string
default: ""
suite:
description: Test suite
type: choice
Expand Down Expand Up @@ -124,6 +128,7 @@ jobs:
uses: ./.github/workflows/e2e-reusable.yml
with:
pytorch_ref: ${{ inputs.pytorch_ref }}
triton_ref: ${{ inputs.triton_ref }}
suite: ${{ matrix.suite }}
mode: ${{ matrix.mode }}
test_mode: accuracy
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/e2e-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
description: PyTorch ref, keep empty for default
type: string
default: ""
triton_ref:
description: Triton XPU ref, keep empty for default
type: string
default: ""
suite:
description: Test suite
type: string
Expand Down Expand Up @@ -69,6 +73,8 @@ jobs:

- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ inputs.triton_ref }}

- name: Load pip cache
id: pip-cache
Expand Down