Support dynamic fill value to hl.full #1828
This file contains hidden or 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: Run Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- release/* | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test_cuda126_a10g: | |
name: test-cuda12.6-py${{ matrix.python-version }}-a10g | |
strategy: | |
fail-fast: true | |
matrix: | |
python-version: ["3.10", "3.12"] | |
include: | |
- name: A10G | |
runs-on: linux.g5.4xlarge.nvidia.gpu | |
torch-spec: '--pre torch --index-url https://download.pytorch.org/whl/nightly/cu126' | |
gpu-arch-type: "cuda" | |
gpu-arch-version: "12.6" | |
uses: pytorch/test-infra/.github/workflows/linux_job_v2.yml@main | |
with: | |
timeout: 60 | |
runner: ${{ matrix.runs-on }} | |
gpu-arch-type: ${{ matrix.gpu-arch-type }} | |
gpu-arch-version: ${{ matrix.gpu-arch-version }} | |
submodules: recursive | |
script: | | |
conda create -n venv python=${{ matrix.python-version }} -y | |
conda activate venv | |
python -m pip install --upgrade pip | |
pip install ${{ matrix.torch-spec }} | |
./.github/scripts/install_triton.sh | |
pip install -r requirements.txt | |
python -m unittest discover -s test/ -p "*.py" -v -t . |