Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ on:
env:
CUDA_DEVICE_ORDER: PCI_BUS_ID
RUNNER: 10.0.14.248
TORCH_CUDA_ARCH_LIST: '8.0 8.6 8.9 9.0'
TORCH_CUDA_ARCH_LIST: '8.0 8.6 8.9 9.0 12.0'
RELEASE_MODE: 1
CI: 1
GPTQMODEL_FORCE_BUILD: 1
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ on:
env:
CUDA_DEVICE_ORDER: PCI_BUS_ID
CUDA_VISIBLE_DEVICES: 0
TORCH_CUDA_ARCH_LIST: '8.6 8.9 9.0'
TORCH_CUDA_ARCH_LIST: '8.6 8.9 9.0 12.0'
PYTORCH_CUDA_ALLOC_CONF: 'expandable_segments:True'
MAX_JOBS: 8
RUNNER: 10.0.13.31
Expand Down Expand Up @@ -571,6 +571,10 @@ jobs:
uv pip install auto_round
fi

if [[ "${{ matrix.test_script }}" == "test_olora_finetuning_xpu" ]]; then
uv pip install intel_extension_for_pytorch -U
fi

if [[ "${{ matrix.test_script }}" == "models/test_pangu_alpha" ]]; then
uv pip install jieba
fi
Expand Down