File tree Expand file tree Collapse file tree 4 files changed +60
-12
lines changed Expand file tree Collapse file tree 4 files changed +60
-12
lines changed Original file line number Diff line number Diff line change
1
+ name : Run 1xH100 Tests
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ - ' gh/**'
8
+ pull_request :
9
+ branches :
10
+ - main
11
+ - ' gh/**'
12
+
13
+ concurrency :
14
+ group : 1xH100_tests-${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_number || github.ref }}
15
+ cancel-in-progress : true
16
+
17
+ env :
18
+ HF_TOKEN : ${{ secrets.HF_TOKEN }}
19
+
20
+ jobs :
21
+ test :
22
+ strategy :
23
+ fail-fast : false
24
+ matrix :
25
+ include :
26
+ - name : H100
27
+ runs-on : linux.aws.h100
28
+ torch-spec : ' --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu126'
29
+ gpu-arch-type : " cuda"
30
+ gpu-arch-version : " 12.4"
31
+ permissions :
32
+ id-token : write
33
+ contents : read
34
+ uses : pytorch/test-infra/.github/workflows/linux_job_v2.yml@main
35
+ with :
36
+ timeout : 60
37
+ runner : ${{ matrix.runs-on }}
38
+ gpu-arch-type : ${{ matrix.gpu-arch-type }}
39
+ gpu-arch-version : ${{ matrix.gpu-arch-version }}
40
+ submodules : recursive
41
+ script : |
42
+ conda create -n venv python=3.9 -y
43
+ conda activate venv
44
+ export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH
45
+ python -m pip install --upgrade pip
46
+ pip install uv
47
+ pip install ${{ matrix.torch-spec }}
48
+ uv pip install -r dev-requirements.txt
49
+ uv pip install vllm
50
+ pip install .
51
+ pytest test/integration --verbose -s
52
+ pytest test/dtypes/test_affine_quantized_float.py --verbose -s
53
+ ./test/float8/test_everything_single_gpu.sh
Original file line number Diff line number Diff line change 1
- name : Run Float8 Single-GPU Tests
1
+ name : Run 1xL4 Tests
2
2
3
3
on :
4
4
push :
11
11
- ' gh/**'
12
12
13
13
concurrency :
14
- group : float8_single_gpu_test -${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_number || github.ref }}
14
+ group : 1xL4_tests -${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_number || github.ref }}
15
15
cancel-in-progress : true
16
16
17
17
env :
28
28
torch-spec : ' --pre torch --index-url https://download.pytorch.org/whl/nightly/cu126'
29
29
gpu-arch-type : " cuda"
30
30
gpu-arch-version : " 12.6"
31
- - name : H100
32
- runs-on : linux.aws.h100
33
- torch-spec : ' --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu126'
34
- gpu-arch-type : " cuda"
35
- gpu-arch-version : " 12.4"
36
31
permissions :
37
32
id-token : write
38
33
contents : read
53
48
uv pip install -r dev-requirements.txt
54
49
uv pip install vllm
55
50
pip install .
51
+ pytest test/integration --verbose -s
52
+ pytest test/dtypes/test_affine_quantized_float.py --verbose -s
56
53
./test/float8/test_everything_single_gpu.sh
Original file line number Diff line number Diff line change 1
- name : Run Float8 Multi-GPU Tests
1
+ name : Run 4xH100 tests
2
2
3
3
on :
4
4
push :
11
11
- ' gh/**'
12
12
13
13
concurrency :
14
- group : float8_multi_gpu_test -${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_number || github.ref }}
14
+ group : 4xH100_tests -${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_number || github.ref }}
15
15
cancel-in-progress : true
16
16
17
17
env :
Original file line number Diff line number Diff line change @@ -12,7 +12,5 @@ pytest test/float8/test_base.py --verbose -s
12
12
pytest test/float8/test_compile.py --verbose -s
13
13
pytest test/float8/test_numerics_integration.py --verbose -s
14
14
pytest test/float8/test_auto_filter.py --verbose -s
15
- pytest test/integration --verbose -s
16
- pytest test/dtypes/test_affine_quantized_float.py --verbose -s
17
15
18
- echo " all single gpu tests successful"
16
+ echo " all float8 single gpu tests successful"
You can’t perform that action at this time.
0 commit comments