@@ -36,24 +36,24 @@ jobs:
3636 matrix :
3737 runner_type : ["linux.g5.4xlarge.nvidia.gpu"]
3838 with :
39- job-name : " linux-py3.10-cu126 "
39+ job-name : " linux-py3.10-cu128 "
4040 runner : ${{ matrix.runner_type }}
4141 test-infra-repository : ${{ github.repository }}
4242 test-infra-ref : ${{ github.ref }}
4343 submodules : ${{ 'true' }}
4444 gpu-arch-type : cuda
45- gpu-arch-version : " 12.6 "
45+ gpu-arch-version : " 12.8 "
4646 timeout : 60
4747 script : |
4848 nvidia-smi
49- nvcc --version | grep "cuda_12.6 "
49+ nvcc --version | grep "cuda_12.8 "
5050 conda create --yes --quiet -n test python=3.10
5151 conda activate test
52- python3 -m pip install --index-url https://download.pytorch.org/whl/nightly/cu126 --pre torch
52+ python3 -m pip install --index-url https://download.pytorch.org/whl/nightly/cu128 --pre torch
5353 # Can import pytorch, cuda is available
5454 python3 -c 'import torch;cuda_avail = torch.cuda.is_available();print("CUDA available: " + str(cuda_avail));assert(cuda_avail)'
5555 python3 -c 'import torch;t = torch.ones([2,2], device="cuda:0");print(t);print("tensor device:" + str(t.device))'
56- python3 -c 'import torch;assert(torch.version.cuda == "12.6 ")'
56+ python3 -c 'import torch;assert(torch.version.cuda == "12.8 ")'
5757 test-gpu-containers :
5858 uses : ./.github/workflows/linux_job_v2.yml
5959 permissions :
@@ -62,24 +62,24 @@ jobs:
6262 matrix :
6363 runner_type : ["linux.aws.a100"]
6464 with :
65- job-name : " linux-py3.10-cu128 -container"
65+ job-name : " linux-py3.10-cu126 -container"
6666 runner : ${{ matrix.runner_type }}
6767 test-infra-repository : ${{ github.repository }}
6868 test-infra-ref : ${{ github.ref }}
6969 submodules : ${{ 'true' }}
7070 gpu-arch-type : cuda
71- gpu-arch-version : " 12.8 "
71+ gpu-arch-version : " 12.6 "
7272 timeout : 60
7373 script : |
7474 nvidia-smi
75- nvcc --version | grep "cuda_12.8 "
75+ nvcc --version | grep "cuda_12.6 "
7676 conda create --yes --quiet -n test python=3.10
7777 conda activate test
78- python3 -m pip install --index-url https://download.pytorch.org/whl/nightly/cu128 --pre torch
78+ python3 -m pip install --index-url https://download.pytorch.org/whl/nightly/cu126 --pre torch
7979 # Can import pytorch, cuda is available
8080 python3 -c 'import torch;cuda_avail = torch.cuda.is_available();print("CUDA available: " + str(cuda_avail));assert(cuda_avail)'
8181 python3 -c 'import torch;t = torch.ones([2,2], device="cuda:0");print(t);print("tensor device:" + str(t.device))'
82- python3 -c 'import torch;assert(torch.version.cuda == "12.8 ")'
82+ python3 -c 'import torch;assert(torch.version.cuda == "12.6 ")'
8383 test-docker-image :
8484 uses : ./.github/workflows/linux_job_v2.yml
8585 permissions :
0 commit comments