Skip to content
Closed
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
24 changes: 12 additions & 12 deletions .github/workflows/ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,18 @@ jobs:
fail-fast: false
matrix:
variance:
- name: Ubuntu-22.04 / CUDA-12.8.1 / x86_64
image: "ghcr.io/rust-gpu/rust-cuda-ubuntu22-cuda12:latest"
runner: ubuntu-latest
- name: Ubuntu-22.04 / CUDA-12.8.1 / ARM64
image: "ghcr.io/rust-gpu/rust-cuda-ubuntu22-cuda12:latest"
runner: ubuntu-22.04-arm
- name: Ubuntu-24.04 / CUDA-12.8.1 / x86_64
image: "ghcr.io/rust-gpu/rust-cuda-ubuntu24-cuda12:latest"
runner: ubuntu-latest
- name: Ubuntu-24.04 / CUDA-12.8.1 / ARM64
image: "ghcr.io/rust-gpu/rust-cuda-ubuntu24-cuda12:latest"
runner: ubuntu-24.04-arm
- name: Ubuntu-24.04 / CUDA-13.0.2 / x86_64
image: "ghcr.io/rust-gpu/rust-cuda-ubuntu24-cuda13:latest"
runner: ubuntu-latest
- name: Ubuntu-24.04 / CUDA-13.0.2 / ARM64
image: "ghcr.io/rust-gpu/rust-cuda-ubuntu24-cuda13:latest"
runner: ubuntu-24.04-arm
- name: RockyLinux-9 / CUDA-12.8.1 / x86_64
image: "ghcr.io/rust-gpu/rust-cuda-rockylinux9-cuda12:latest"
runner: ubuntu-latest
Expand Down Expand Up @@ -244,18 +244,18 @@ jobs:
matrix:
variance:
# Must match the build job's matrix definition
- name: Ubuntu-22.04 / CUDA-12.8.1 / x86_64
image: "ghcr.io/rust-gpu/rust-cuda-ubuntu22-cuda12:latest"
runner: ubuntu-latest
- name: Ubuntu-22.04 / CUDA-12.8.1 / ARM64
image: "ghcr.io/rust-gpu/rust-cuda-ubuntu22-cuda12:latest"
runner: ubuntu-22.04-arm
- name: Ubuntu-24.04 / CUDA-12.8.1 / x86_64
image: "ghcr.io/rust-gpu/rust-cuda-ubuntu24-cuda12:latest"
runner: ubuntu-latest
- name: Ubuntu-24.04 / CUDA-12.8.1 / ARM64
image: "ghcr.io/rust-gpu/rust-cuda-ubuntu24-cuda12:latest"
runner: ubuntu-24.04-arm
- name: Ubuntu-24.04 / CUDA-13.0.2 / x86_64
image: "ghcr.io/rust-gpu/rust-cuda-ubuntu24-cuda13:latest"
runner: ubuntu-latest
- name: Ubuntu-24.04 / CUDA-13.0.2 / ARM64
image: "ghcr.io/rust-gpu/rust-cuda-ubuntu24-cuda13:latest"
runner: ubuntu-24.04-arm
steps:
- name: Compute artifact name
id: test_artifact
Expand Down
33 changes: 16 additions & 17 deletions .github/workflows/ci_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,22 @@ jobs:
strategy:
fail-fast: false
matrix:
include:
- os: windows-latest
target: x86_64-pc-windows-msvc
cuda: "12.8.1"
linux-local-args: []
sub-packages:
[
"nvcc",
"nvrtc",
"nvrtc_dev",
"cuda_profiler_api",
"cudart",
"cublas",
"cublas_dev",
"curand",
"curand_dev",
]
os: windows-latest
target: x86_64-pc-windows-msvc
cuda: ["12.8.1", "13.0.2"]
linux-local-args: []
sub-packages:
[
"nvcc",
"nvrtc",
"nvrtc_dev",
"cuda_profiler_api",
"cudart",
"cublas",
"cublas_dev",
"curand",
"curand_dev",
]

steps:
- name: Checkout repository
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/container_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:
- runner: ubuntu-24.04-arm
arch: arm64
variance:
- name: Ubuntu-22.04/CUDA-12.8.1
image: "rust-gpu/rust-cuda-ubuntu22-cuda12"
dockerfile: ./container/ubuntu22-cuda12/Dockerfile
- name: Ubuntu-24.04/CUDA-12.8.1
image: "rust-gpu/rust-cuda-ubuntu24-cuda12"
dockerfile: ./container/ubuntu24-cuda12/Dockerfile
- name: Ubuntu-24.04/CUDA-13.0.2
image: "rust-gpu/rust-cuda-ubuntu24-cuda13"
dockerfile: ./container/ubuntu24-cuda13/Dockerfile
- name: RockyLinux-9/CUDA-12.8.1
image: "rust-gpu/rust-cuda-rockylinux9-cuda12"
dockerfile: ./container/rockylinux9-cuda12/Dockerfile
Expand Down Expand Up @@ -154,10 +154,10 @@ jobs:
fail-fast: false
matrix:
variance:
- name: Ubuntu-22.04/CUDA-12.8.1
image: "rust-gpu/rust-cuda-ubuntu22-cuda12"
- name: Ubuntu-24.04/CUDA-12.8.1
image: "rust-gpu/rust-cuda-ubuntu24-cuda12"
- name: Ubuntu-24.04/CUDA-13.0.2
image: "rust-gpu/rust-cuda-ubuntu24-cuda13"
- name: RockyLinux-9/CUDA-12.8.1
image: "rust-gpu/rust-cuda-rockylinux9-cuda12"
steps:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nvcr.io/nvidia/cuda:12.8.1-cudnn-devel-ubuntu22.04 AS llvm-builder
FROM nvcr.io/nvidia/cuda:13.0.2-cudnn-devel-ubuntu24.04 AS llvm-builder

RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -qq -y install \
build-essential \
Expand Down Expand Up @@ -50,7 +50,7 @@ RUN curl -sSf -L -O https://github.com/llvm/llvm-project/releases/download/llvmo
cd ../.. && \
rm -rf llvm-7.1.0.src*

FROM nvcr.io/nvidia/cuda:12.8.1-cudnn-devel-ubuntu22.04
FROM nvcr.io/nvidia/cuda:13.0.2-cudnn-devel-ubuntu24.04

RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -qq -y install \
build-essential \
Expand Down
Loading