Skip to content
Merged
Show file tree
Hide file tree
Changes from 8 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
11 changes: 2 additions & 9 deletions .github/workflows/gpu_l4_golden_parity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,6 @@ jobs:
with:
python-version: "3.12"

- name: Cache pip packages
uses: actions/cache@v5
with:
path: ~/.cache/pip
key: pip-gpu-${{ hashFiles('pyproject.toml', 'requirements/ci/requirements.txt') }}
restore-keys: |
pip-gpu-

- name: Cache HuggingFace models
uses: actions/cache@v5
with:
Expand All @@ -65,7 +57,8 @@ jobs:
- name: Install dependencies
run: |
pip install -r requirements/ci/requirements.txt
pip install onnxruntime-gpu
pip install soundfile librosa ml_dtypes flatbuffers numpy packaging protobuf sympy coloredlogs
pip install --pre --index-url https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/ort-cuda-13-nightly/pypi/simple/ onnxruntime-gpu onnxruntime-genai-cuda --no-deps
Comment thread
justinchuby marked this conversation as resolved.
Outdated
pip install -e '.[testing,transformers]'
Comment thread
justinchuby marked this conversation as resolved.
Outdated

- name: Check for golden test data
Expand Down
11 changes: 2 additions & 9 deletions .github/workflows/gpu_l5_generation_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,6 @@ jobs:
with:
python-version: "3.12"

- name: Cache pip packages
uses: actions/cache@v5
with:
path: ~/.cache/pip
key: pip-gpu-${{ hashFiles('pyproject.toml', 'requirements/ci/requirements.txt') }}
restore-keys: |
pip-gpu-

- name: Cache HuggingFace models
uses: actions/cache@v5
with:
Expand All @@ -65,7 +57,8 @@ jobs:
- name: Install dependencies
run: |
pip install -r requirements/ci/requirements.txt
pip install onnxruntime-gpu
pip install soundfile librosa ml_dtypes flatbuffers numpy packaging protobuf sympy coloredlogs
pip install --pre --index-url https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/ort-cuda-13-nightly/pypi/simple/ onnxruntime-gpu onnxruntime-genai-cuda --no-deps
Comment thread
justinchuby marked this conversation as resolved.
Outdated
pip install -e '.[testing,transformers]'
Comment thread
justinchuby marked this conversation as resolved.
Outdated

- name: Run L5 generation E2E tests
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,8 @@ jobs:
- name: Install dependencies
run: |
pip install -r requirements/ci/requirements.txt
pip install onnxruntime-gpu
pip install soundfile librosa ml_dtypes flatbuffers numpy packaging protobuf sympy coloredlogs
pip install --pre --index-url https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/ort-cuda-13-nightly/pypi/simple/ onnxruntime-gpu onnxruntime-genai-cuda --no-deps
Comment thread
justinchuby marked this conversation as resolved.
Outdated
pip install -e '.[testing]'
Comment thread
justinchuby marked this conversation as resolved.
Outdated
- name: Run fast integration tests
env:
Expand Down
14 changes: 3 additions & 11 deletions .github/workflows/validation_examples_gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,6 @@ jobs:
with:
python-version: "3.12"

- name: Cache pip packages
uses: actions/cache@v5
with:
path: ~/.cache/pip
key: pip-examples-gpu-${{ hashFiles('pyproject.toml', 'requirements/ci/requirements.txt') }}
restore-keys: |
pip-examples-gpu-

- name: Cache HuggingFace models
uses: actions/cache@v5
with:
Expand All @@ -89,9 +81,9 @@ jobs:
- name: Install dependencies
run: |
pip install -r requirements/ci/requirements.txt
pip install -e '.[testing,transformers,ort-genai]'
pip install onnxruntime-gpu
pip install soundfile librosa ml_dtypes
pip install -e '.[testing,transformers]'
pip install soundfile librosa ml_dtypes flatbuffers numpy packaging protobuf sympy coloredlogs
Comment thread
justinchuby marked this conversation as resolved.
pip install --pre --index-url https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/ort-cuda-13-nightly/pypi/simple/ onnxruntime-gpu onnxruntime-genai-cuda --no-deps
Comment thread
justinchuby marked this conversation as resolved.
Outdated

- name: Run ${{ matrix.name }}
env:
Expand Down
Loading