Skip to content
Closed
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
26 changes: 26 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]') }}
Comment on lines +217 to +227
Copy link

Copilot AI Nov 18, 2025

Choose a reason for hiding this comment

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

The README.md file should be updated to reflect that CUDA builds are now available for ARM64 platforms. Currently, lines 104-105 in README.md state that CUDA variants are only available for x86_64 platform, which will be inaccurate after this PR is merged.

Suggested addition to README.md around line 105:

- Starting from `2025-XX-XX`, we create CUDA enabled variants of `pytorch-notebook` and `tensorflow-notebook` images for `aarch64` platform

Copilot uses AI. Check for mistakes.

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-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-cuda11:
uses: ./.github/workflows/docker-build-test-upload.yml
with:
Expand Down Expand Up @@ -392,7 +416,9 @@ jobs:
aarch64-r,
aarch64-julia,
aarch64-tensorflow,
aarch64-tensorflow-cuda,
aarch64-pytorch,
aarch64-pytorch-cuda12,
aarch64-datascience,
aarch64-pyspark,
aarch64-all-spark,
Expand Down