-
Notifications
You must be signed in to change notification settings - Fork 4k
GH-48582: [CI][GPU][C++][Python] Add new CUDA jobs using the new self-hosted runners #48583
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+136
−78
Merged
Changes from 18 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
31347da
GH-48582: [CI][GPU][C++][Python] Add new cuda jobs using the new self…
raulcd 0fd6459
Set Ubuntu for archery via env
raulcd 9abdba1
Try using g6f.large instances
raulcd 0e015b8
Back to g4dn.xlarge to test
raulcd 795704c
Try removing runs-on from matrix
raulcd cf8c88b
Add Python cuda jobs
raulcd e6c72b8
Try spot instances
raulcd 5196286
Try updating CUDA to 13.1.80 for numba Python compatibility
raulcd 996443a
Revert "Try updating CUDA to 13.1.80 for numba Python compatibility"
raulcd bd77345
Remove unnecessary cuda jobs from archery tasks
raulcd 499cfeb
Check nvidia-smi output
raulcd d79e0f4
Try installing cuda-compat-13-0
raulcd 8acc7c7
Remove stray cuda tasks
raulcd 6cba3c1
Move Cuda jobs to its own extra workflow
raulcd 74df3f5
Use Cuda 12.9.0 as is the last one from the instances
raulcd cacc1a4
Remove unnecessary cuda-compat-13-0 installation
raulcd 452b575
Use cpp/** instead of cpp/src/arrow/gpu/**
raulcd 683247c
Remove trigger on push to branches and pull_requests paths
raulcd c135022
Simplify environment variables for cuda and ubuntu now that we are no…
raulcd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,144 @@ | ||
| # Licensed to the Apache Software Foundation (ASF) under one | ||
| # or more contributor license agreements. See the NOTICE file | ||
| # distributed with this work for additional information | ||
| # regarding copyright ownership. The ASF licenses this file | ||
| # to you under the Apache License, Version 2.0 (the | ||
| # "License"); you may not use this file except in compliance | ||
| # with the License. You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, | ||
| # software distributed under the License is distributed on an | ||
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| # KIND, either express or implied. See the License for the | ||
| # specific language governing permissions and limitations | ||
| # under the License. | ||
|
|
||
| name: CUDA Extra | ||
|
|
||
| on: | ||
| push: | ||
| tags: | ||
| - '**' | ||
| pull_request: | ||
| types: | ||
| - labeled | ||
| - opened | ||
| - reopened | ||
| - synchronize | ||
| schedule: | ||
| - cron: | | ||
| 0 6 * * * | ||
|
|
||
| concurrency: | ||
| group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }} | ||
| cancel-in-progress: true | ||
|
|
||
| permissions: | ||
| actions: read | ||
| contents: read | ||
| pull-requests: read | ||
|
|
||
| jobs: | ||
| check-labels: | ||
| if: github.event_name != 'schedule' || github.repository == 'apache/arrow' | ||
| uses: ./.github/workflows/check_labels.yml | ||
| secrets: inherit | ||
| with: | ||
| parent-workflow: cuda_extra | ||
|
|
||
| docker: | ||
| needs: check-labels | ||
| name: ${{ matrix.title }} | ||
| runs-on: "runs-on=${{ github.run_id }}/family=g4dn.xlarge/image=ubuntu24-gpu-x64/spot=capacity-optimized" | ||
| if: >- | ||
| needs.check-labels.outputs.force == 'true' || | ||
| contains(fromJSON(needs.check-labels.outputs.ci-extra-labels || '[]'), 'CI: Extra') || | ||
| contains(fromJSON(needs.check-labels.outputs.ci-extra-labels || '[]'), 'CI: Extra: CUDA') | ||
| timeout-minutes: 75 | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| include: | ||
| - envs: | ||
| - CUDA=12.9.0 | ||
| - UBUNTU=24.04 | ||
raulcd marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| image: ubuntu-cuda-cpp | ||
| title: AMD64 Ubuntu 24 CUDA 12.9.0 | ||
| - envs: | ||
| - CUDA=11.7.1 | ||
| - UBUNTU=22.04 | ||
| image: ubuntu-cuda-cpp | ||
| title: AMD64 Ubuntu 22 CUDA 11.7.1 | ||
| - envs: | ||
| - CUDA=12.9.0 | ||
| - UBUNTU=24.04 | ||
| image: ubuntu-cuda-python | ||
| title: AMD64 Ubuntu 24 CUDA 12.9.0 Python | ||
| - envs: | ||
| - CUDA=11.7.1 | ||
| - UBUNTU=22.04 | ||
| image: ubuntu-cuda-python | ||
| title: AMD64 Ubuntu 22 CUDA 11.7.1 Python | ||
| env: | ||
| ARCHERY_DEBUG: 1 | ||
| ARROW_ENABLE_TIMING_TESTS: OFF | ||
| DOCKER_VOLUME_PREFIX: ".docker/" | ||
| steps: | ||
| - name: Checkout Arrow | ||
| uses: actions/checkout@v6 | ||
| with: | ||
| fetch-depth: 0 | ||
| submodules: recursive | ||
| - name: Cache Docker Volumes | ||
| uses: actions/cache@v5 | ||
| with: | ||
| path: .docker | ||
| key: extra-${{ matrix.image }}-${{ hashFiles('cpp/**') }} | ||
| restore-keys: extra-${{ matrix.image }}- | ||
| - name: Setup Python | ||
| uses: actions/setup-python@v6 | ||
| with: | ||
| python-version: 3 | ||
| - name: Setup Archery | ||
| run: python3 -m pip install -e dev/archery[docker] | ||
| - name: Display NVIDIA SMI details | ||
| run: | | ||
| nvidia-smi | ||
| nvidia-smi -L | ||
| nvidia-smi -q -d Memory | ||
| - name: Execute Docker Build | ||
| continue-on-error: ${{ matrix.continue-on-error || false }} | ||
| env: | ||
| ARCHERY_DOCKER_USER: ${{ secrets.DOCKERHUB_USER }} | ||
| ARCHERY_DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }} | ||
| ENVS: ${{ toJSON(matrix.envs) }} | ||
| run: | | ||
| # GH-40558: reduce ASLR to avoid ASAN/LSAN crashes | ||
| sudo sysctl -w vm.mmap_rnd_bits=28 | ||
| source ci/scripts/util_enable_core_dumps.sh | ||
| if [ "${ENVS}" != "null" ]; then | ||
| echo "${ENVS}" | jq -r '.[]' | while read env; do | ||
| echo "${env}" >> .env | ||
| done | ||
raulcd marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| fi | ||
raulcd marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| archery docker run ${{ matrix.run-options || '' }} ${{ matrix.image }} | ||
| - name: Docker Push | ||
| if: >- | ||
| success() && | ||
| github.event_name == 'push' && | ||
| github.repository == 'apache/arrow' && | ||
| github.ref_name == 'main' | ||
| env: | ||
| ARCHERY_DOCKER_USER: ${{ secrets.DOCKERHUB_USER }} | ||
| ARCHERY_DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }} | ||
| continue-on-error: true | ||
| run: archery docker push ${{ matrix.image }} | ||
|
|
||
| report-extra-cpp: | ||
| if: github.event_name == 'schedule' && always() | ||
| needs: | ||
| - docker | ||
| uses: ./.github/workflows/report_ci.yml | ||
| secrets: inherit | ||
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.