|
1 | | -name: nv-lightning-v100 |
2 | | - |
3 | | -on: |
4 | | - workflow_dispatch: |
5 | | - pull_request: |
6 | | - paths-ignore: |
7 | | - - 'docs/**' |
8 | | - - 'blogs/**' |
9 | | - - 'deepspeed/inference/v2/**' |
10 | | - - 'tests/unit/inference/v2/**' |
11 | | - merge_group: |
12 | | - branches: [ master ] |
13 | | - schedule: |
14 | | - - cron: "0 0 * * *" |
15 | | - |
16 | | -concurrency: |
17 | | - group: ${{ github.workflow }}-${{ github.ref }} |
18 | | - cancel-in-progress: true |
19 | | - |
20 | | -jobs: |
21 | | - unit-tests: |
22 | | - runs-on: [self-hosted, nvidia, cu124, v100] |
23 | | - |
24 | | - steps: |
25 | | - - uses: actions/checkout@v4 |
26 | | - |
27 | | - - id: setup-venv |
28 | | - uses: ./.github/workflows/setup-venv |
29 | | - |
30 | | - - name: Install pytorch |
31 | | - run: | |
32 | | - pip install -U --cache-dir $TORCH_CACHE torch torchvision --index-url https://download.pytorch.org/whl/cu124 |
33 | | - python -c "import torch; print('torch:', torch.__version__, torch)" |
34 | | - python -c "import torch; print('CUDA available:', torch.cuda.is_available())" |
35 | | -
|
36 | | - - name: Install deepspeed |
37 | | - run: | |
38 | | - pip install .[dev,autotuning] |
39 | | - ds_report |
40 | | -
|
41 | | - - name: Python environment |
42 | | - run: | |
43 | | - pip list |
44 | | -
|
45 | | - - name: PyTorch Lightning Tests |
46 | | - run: | |
47 | | - unset TORCH_CUDA_ARCH_LIST # only jit compile for current arch |
48 | | - pip install pytorch-lightning |
49 | | - pip install "protobuf<4.21.0" |
50 | | - cd tests |
51 | | - pytest $PYTEST_OPTS lightning/ |
| 1 | +# name: nv-lightning-v100 |
| 2 | + |
| 3 | +# disabled as the v100s are no more - need to port to modal while removing v100 |
| 4 | + |
| 5 | +# on: |
| 6 | +# workflow_dispatch: |
| 7 | +# pull_request: |
| 8 | +# paths-ignore: |
| 9 | +# - 'docs/**' |
| 10 | +# - 'blogs/**' |
| 11 | +# - 'deepspeed/inference/v2/**' |
| 12 | +# - 'tests/unit/inference/v2/**' |
| 13 | +# merge_group: |
| 14 | +# branches: [ master ] |
| 15 | +# schedule: |
| 16 | +# - cron: "0 0 * * *" |
| 17 | + |
| 18 | +# concurrency: |
| 19 | +# group: ${{ github.workflow }}-${{ github.ref }} |
| 20 | +# cancel-in-progress: true |
| 21 | + |
| 22 | +# jobs: |
| 23 | +# unit-tests: |
| 24 | +# runs-on: [self-hosted, nvidia, cu124, v100] |
| 25 | + |
| 26 | +# steps: |
| 27 | +# - uses: actions/checkout@v4 |
| 28 | + |
| 29 | +# - id: setup-venv |
| 30 | +# uses: ./.github/workflows/setup-venv |
| 31 | + |
| 32 | +# - name: Install pytorch |
| 33 | +# run: | |
| 34 | +# pip install -U --cache-dir $TORCH_CACHE torch torchvision --index-url https://download.pytorch.org/whl/cu124 |
| 35 | +# python -c "import torch; print('torch:', torch.__version__, torch)" |
| 36 | +# python -c "import torch; print('CUDA available:', torch.cuda.is_available())" |
| 37 | + |
| 38 | +# - name: Install deepspeed |
| 39 | +# run: | |
| 40 | +# pip install .[dev,autotuning] |
| 41 | +# ds_report |
| 42 | + |
| 43 | +# - name: Python environment |
| 44 | +# run: | |
| 45 | +# pip list |
| 46 | + |
| 47 | +# - name: PyTorch Lightning Tests |
| 48 | +# run: | |
| 49 | +# unset TORCH_CUDA_ARCH_LIST # only jit compile for current arch |
| 50 | +# pip install pytorch-lightning |
| 51 | +# pip install "protobuf<4.21.0" |
| 52 | +# cd tests |
| 53 | +# pytest $PYTEST_OPTS lightning/ |
0 commit comments