Skip to content

Commit 32f0393

Browse files
committed
Accelerated Python: Add MPI to Docker image.
1 parent afa5f21 commit 32f0393

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

tutorials/accelerated-python/brev/dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ RUN set -ex \
1616
&& rm -f /opt/requirements.txt \
1717
&& `# Install system packages` \
1818
&& apt-get update -y \
19-
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends git-lfs \
19+
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
20+
git-lfs \
21+
openmpi-bin \
22+
libopenmpi-dev \
2023
&& apt-get clean -y \
2124
&& rm -rf /var/lib/apt/lists/* \
2225
&& `# Setup Bash` \

tutorials/accelerated-python/brev/requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,6 @@ numba-cuda
2020
# NVIDIA devtools
2121
nvtx
2222
nsightful[notebook] @ git+https://github.com/brycelelbach/nsightful.git
23+
24+
# Distributed computing
25+
mpi4py

0 commit comments

Comments
 (0)