Skip to content

Commit 4afff92

Browse files
committed
fix
1 parent d3c40b9 commit 4afff92

25 files changed

+39
-39
lines changed

.cuda_ext.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
"build": [
33
{
44
"torch_command": "pip install torch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 --index-url https://download.pytorch.org/whl/cu121",
5-
"cuda_image": "hpcaitech/cuda-conda:12.1"
5+
"cuda_image": "image-cloud.luchentech.com/hpcaitech/cuda-conda:12.1"
66
},
77
{
88
"torch_command": "pip install torch==2.5.1 torchvision==0.20.1 torchaudio==2.5.1 --index-url https://download.pytorch.org/whl/cu124",
9-
"cuda_image": "hpcaitech/cuda-conda:12.4"
9+
"cuda_image": "image-cloud.luchentech.com/hpcaitech/cuda-conda:12.4"
1010
}
1111
]
1212
}

.github/workflows/build_on_schedule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: github.repository == 'hpcaitech/ColossalAI'
1313
runs-on: [self-hosted, gpu]
1414
container:
15-
image: hpcaitech/pytorch-cuda:2.2.2-12.1.0
15+
image: image-cloud.luchentech.com/hpcaitech/pytorch-cuda:2.2.2-12.1.0
1616
options: --gpus all --rm -v /dev/shm -v /data/scratch/:/data/scratch/
1717
timeout-minutes: 90
1818
steps:

.github/workflows/close_inactive.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
close-issues:
99
if: github.event.pull_request.draft == false && github.base_ref == 'main' && github.event.pull_request.base.repo.full_name == 'hpcaitech/ColossalAI'
10-
runs-on: ubuntu-latest
10+
runs-on: [self-hosted, ubuntu-latest]-latest
1111
permissions:
1212
issues: write
1313
pull-requests: write

.github/workflows/compatiblity_test_on_dispatch.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
matrix_preparation:
1717
name: Prepare Container List
18-
runs-on: ubuntu-latest
18+
runs-on: [self-hosted, ubuntu-latest]-latest
1919
outputs:
2020
matrix: ${{ steps.set-matrix.outputs.matrix }}
2121
steps:
@@ -31,7 +31,7 @@ jobs:
3131
do
3232
for cv in $CUDA_VERSIONS
3333
do
34-
DOCKER_IMAGE+=("\"hpcaitech/pytorch-cuda:${tv}-${cv}\"")
34+
DOCKER_IMAGE+=("\"image-cloud.luchentech.com/hpcaitech/pytorch-cuda:${tv}-${cv}\"")
3535
done
3636
done
3737
@@ -44,7 +44,7 @@ jobs:
4444
name: Test for PyTorch Compatibility
4545
needs: matrix_preparation
4646
if: github.repository == 'hpcaitech/ColossalAI'
47-
runs-on: [self-hosted, 8-gpu]
47+
runs-on: [self-hosted, ubuntu-latest]
4848
strategy:
4949
fail-fast: false
5050
matrix: ${{fromJson(needs.matrix_preparation.outputs.matrix)}}

.github/workflows/compatiblity_test_on_pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
matrix_preparation:
1111
name: Prepare Container List
12-
runs-on: ubuntu-latest
12+
runs-on: [self-hosted, ubuntu-latest]-latest
1313
outputs:
1414
matrix: ${{ steps.set-matrix.outputs.matrix }}
1515
concurrency:
@@ -23,7 +23,7 @@ jobs:
2323
DOCKER_IMAGE=()
2424
2525
while read tag; do
26-
DOCKER_IMAGE+=("\"hpcaitech/pytorch-cuda:${tag}\"")
26+
DOCKER_IMAGE+=("\"image-cloud.luchentech.com/hpcaitech/pytorch-cuda:${tag}\"")
2727
done <.compatibility
2828
2929
container=$( IFS=',' ; echo "${DOCKER_IMAGE[*]}" )
@@ -35,7 +35,7 @@ jobs:
3535
name: Test for PyTorch Compatibility
3636
needs: matrix_preparation
3737
if: github.repository == 'hpcaitech/ColossalAI'
38-
runs-on: [self-hosted, 8-gpu]
38+
runs-on: [self-hosted, ubuntu-latest]
3939
strategy:
4040
fail-fast: false
4141
matrix: ${{fromJson(needs.matrix_preparation.outputs.matrix)}}

.github/workflows/compatiblity_test_on_schedule.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
matrix_preparation:
1111
name: Prepare Container List
12-
runs-on: ubuntu-latest
12+
runs-on: [self-hosted, ubuntu-latest]-latest
1313
outputs:
1414
matrix: ${{ steps.set-matrix.outputs.matrix }}
1515
steps:
@@ -20,7 +20,7 @@ jobs:
2020
DOCKER_IMAGE=()
2121
2222
while read tag; do
23-
DOCKER_IMAGE+=("\"hpcaitech/pytorch-cuda:${tag}\"")
23+
DOCKER_IMAGE+=("\"image-cloud.luchentech.com/hpcaitech/pytorch-cuda:${tag}\"")
2424
done <.compatibility
2525
2626
container=$( IFS=',' ; echo "${DOCKER_IMAGE[*]}" )
@@ -32,7 +32,7 @@ jobs:
3232
name: Test for PyTorch Compatibility
3333
needs: matrix_preparation
3434
if: github.repository == 'hpcaitech/ColossalAI'
35-
runs-on: [self-hosted, 8-gpu]
35+
runs-on: [self-hosted, ubuntu-latest]
3636
strategy:
3737
fail-fast: false
3838
matrix: ${{fromJson(needs.matrix_preparation.outputs.matrix)}}

.github/workflows/doc_build_on_schedule_after_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build-doc:
1212
name: Trigger Documentation Build Workflow
1313
if: github.repository == 'hpcaitech/ColossalAI'
14-
runs-on: ubuntu-latest
14+
runs-on: [self-hosted, ubuntu-latest]-latest
1515
steps:
1616
- name: trigger workflow in ColossalAI-Documentation
1717
run: |

.github/workflows/doc_check_on_pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: |
1616
github.event.pull_request.draft == false &&
1717
github.event.pull_request.base.repo.full_name == 'hpcaitech/ColossalAI'
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-[self-hosted, ubuntu-latest]
1919
concurrency:
2020
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-check-i18n
2121
cancel-in-progress: true
@@ -33,7 +33,7 @@ jobs:
3333
if: |
3434
github.event.pull_request.draft == false &&
3535
github.event.pull_request.base.repo.full_name == 'hpcaitech/ColossalAI'
36-
runs-on: ubuntu-latest
36+
runs-on: [self-hosted, ubuntu-latest]-latest
3737
concurrency:
3838
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-check-doc
3939
cancel-in-progress: true

.github/workflows/doc_test_on_pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: |
1616
github.event.pull_request.draft == false &&
1717
github.event.pull_request.base.repo.full_name == 'hpcaitech/ColossalAI' && github.event_name == 'pull_request'
18-
runs-on: ubuntu-latest
18+
runs-on: [self-hosted, ubuntu-latest]-latest
1919
outputs:
2020
any_changed: ${{ steps.changed-files.outputs.any_changed }}
2121
changed_files: ${{ steps.changed-files.outputs.all_changed_files }}
@@ -56,7 +56,7 @@ jobs:
5656
needs: detect-changed-doc
5757
runs-on: [self-hosted, gpu]
5858
container:
59-
image: hpcaitech/pytorch-cuda:2.2.2-12.1.0
59+
image: image-cloud.luchentech.com/hpcaitech/pytorch-cuda:2.2.2-12.1.0
6060
options: --gpus all --rm
6161
timeout-minutes: 30
6262
defaults:

.github/workflows/doc_test_on_schedule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Test the changed Doc
1313
runs-on: [self-hosted, gpu]
1414
container:
15-
image: hpcaitech/pytorch-cuda:2.2.2-12.1.0
15+
image: image-cloud.luchentech.com/hpcaitech/pytorch-cuda:2.2.2-12.1.0
1616
options: --gpus all --rm
1717
timeout-minutes: 60
1818
steps:

0 commit comments

Comments
 (0)