Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/docker-tag-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ jobs:
image: ${{ inputs.image }}
variant: ${{ inputs.variant }}
platform: aarch64
if: ${{ !contains(inputs.variant, 'cuda') }}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You either have to make it work for pytorch-cuda11, or do not download it here, otherwise it will fail

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

added pytorch-cuda11 to keep thing easier to read. (and ppl using GH100 can use this image 😀)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dictcp it seems we can't build it, so you need to revert last commit and make an exception here


- name: Download x86_64 image tar and apply tags 🏷
uses: ./.github/actions/apply-single-tags
Expand Down
39 changes: 39 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,18 @@ jobs:
needs: x86_64-scipy
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}

aarch64-tensorflow-cuda:
uses: ./.github/workflows/docker-build-test-upload.yml
with:
parent-image: scipy-notebook
image: tensorflow-notebook
variant: cuda
platform: aarch64
runs-on: ubuntu-24.04-arm
timeout-minutes: 25
needs: aarch64-scipy
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}

x86_64-tensorflow-cuda:
uses: ./.github/workflows/docker-build-test-upload.yml
with:
Expand Down Expand Up @@ -248,6 +260,18 @@ jobs:
needs: x86_64-scipy
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}

aarch64-pytorch-cuda11:
uses: ./.github/workflows/docker-build-test-upload.yml
with:
parent-image: scipy-notebook
image: pytorch-notebook
variant: cuda11
platform: aarch64
runs-on: ubuntu-24.04-arm
timeout-minutes: 25
needs: aarch64-scipy
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}

x86_64-pytorch-cuda11:
uses: ./.github/workflows/docker-build-test-upload.yml
with:
Expand All @@ -260,6 +284,18 @@ jobs:
needs: x86_64-scipy
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}

aarch64-pytorch-cuda12:
uses: ./.github/workflows/docker-build-test-upload.yml
with:
parent-image: scipy-notebook
image: pytorch-notebook
variant: cuda12
platform: aarch64
runs-on: ubuntu-24.04-arm
timeout-minutes: 25
needs: aarch64-scipy
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}

x86_64-pytorch-cuda12:
uses: ./.github/workflows/docker-build-test-upload.yml
with:
Expand Down Expand Up @@ -392,7 +428,10 @@ jobs:
aarch64-r,
aarch64-julia,
aarch64-tensorflow,
aarch64-tensorflow-cuda,
aarch64-pytorch,
aarch64-pytorch-cuda11,
aarch64-pytorch-cuda12,
aarch64-datascience,
aarch64-pyspark,
aarch64-all-spark,
Expand Down
Loading