Skip to content

Commit a8b88f2

Browse files
authored
feat(prover): Bump CUDA to 12.4 for circuit prover (#3351)
## What ❔ Upgrade CUDA from 12.2 to 12.4 for circuit prover. <!-- What are the changes this PR brings about? --> <!-- Example: This PR adds a PR template to the repo. --> <!-- (For bigger PRs adding more context is appreciated) --> ## Why ❔ <!-- Why are these changes done? What goal do they contribute to? What are the principles behind them? --> <!-- Example: PR templates ensure PR reviewers, observers, and future iterators are in context about the evolution of repos. --> ## Checklist <!-- Check your PR fulfills the following items. --> <!-- For draft PRs check the boxes as you complete them. --> - [ ] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [ ] Tests for the changes have been added / updated. - [ ] Documentation comments have been added / updated. - [ ] Code has been formatted via `zkstack dev fmt` and `zkstack dev lint`. ref ZKD-2085
1 parent f27b4f3 commit a8b88f2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docker/circuit-prover-gpu-gar/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG PROVER_IMAGE
22
FROM us-docker.pkg.dev/matterlabs-infra/matterlabs-docker/circuit-prover-gpu:2.0-$PROVER_IMAGE as prover
33

4-
FROM nvidia/cuda:12.2.0-runtime-ubuntu22.04 as app
4+
FROM nvidia/cuda:12.4.0-runtime-ubuntu22.04 as app
55

66
# HACK copying to root is the only way to make Docker layer caching work for these files for some reason
77
COPY *.bin /

docker/circuit-prover-gpu/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nvidia/cuda:12.2.0-devel-ubuntu22.04 AS builder
1+
FROM nvidia/cuda:12.4.0-devel-ubuntu22.04 AS builder
22

33
ARG DEBIAN_FRONTEND=noninteractive
44

@@ -45,7 +45,7 @@ COPY . .
4545

4646
RUN cd prover && cargo build --release --bin zksync_circuit_prover
4747

48-
FROM nvidia/cuda:12.2.0-runtime-ubuntu22.04
48+
FROM nvidia/cuda:12.4.0-runtime-ubuntu22.04
4949

5050
RUN apt-get update && apt-get install -y curl libpq5 ca-certificates && rm -rf /var/lib/apt/lists/*
5151

0 commit comments

Comments
 (0)