Skip to content

Commit 31cfe10

Browse files
authored
misc: update devcontainer (#986)
Use cu128 and nightly pytorch for blackwell development.
1 parent afa9332 commit 31cfe10

File tree

4 files changed

+78
-11
lines changed

4 files changed

+78
-11
lines changed

.devcontainer/Dockerfile

+19-11
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,24 @@
1-
FROM nvidia/cuda:12.4.0-devel-ubuntu22.04
1+
FROM nvidia/cuda:12.8.0-devel-ubuntu24.04
22

33
# Update package lists and install system dependencies
44
RUN apt-get update && apt-get install -y \
55
curl \
6+
wget \
67
git \
78
clang-format \
8-
libibverbs-dev \
9-
librdmacm-dev \
10-
rdma-core \
11-
libnuma-dev \
9+
clangd-19 \
1210
vim \
13-
openmpi-bin \
14-
libopenmpi-dev \
1511
zsh \
1612
&& rm -rf /var/lib/apt/lists/*
1713

1814
# Install oh-my-zsh
1915
RUN sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended
2016

21-
# Install powerlevel10k theme
22-
RUN git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
23-
2417
# Install zsh-autosuggestions
2518
RUN git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
2619

2720
# Configure zsh
28-
RUN sed -i 's/ZSH_THEME="robbyrussell"/ZSH_THEME="powerlevel10k\/powerlevel10k"/' ~/.zshrc && \
21+
RUN sed -i 's/ZSH_THEME="robbyrussell"/ZSH_THEME="fino-time"/' ~/.zshrc && \
2922
sed -i 's/plugins=(git)/plugins=(git zsh-autosuggestions)/' ~/.zshrc
3023

3124
# Create a non-root user
@@ -53,6 +46,21 @@ RUN cp -r /root/.oh-my-zsh /home/$USERNAME/.oh-my-zsh && \
5346
USER $USERNAME
5447
WORKDIR /home/$USERNAME
5548

49+
# Install python
50+
COPY install/install_python.sh /install/install_python.sh
51+
RUN bash /install/install_python.sh py312
52+
53+
# clangd
54+
ENV PATH="/usr/lib/llvm-19/bin:$PATH"
55+
# conda
56+
ENV PATH="/home/devuser/conda/bin:$PATH"
57+
ENV PATH="/home/devuser/envs/py312/bin:$PATH"
58+
59+
# Install python packages
60+
COPY install/install_python_packages.sh /install/install_python_packages.sh
61+
RUN bash /install/install_python_packages.sh
62+
RUN echo "source activate py312" >> /home/devuser/.zshrc
63+
5664
# Set zsh as default shell
5765
ENV SHELL=/bin/zsh
5866
CMD [ "zsh" ]

.devcontainer/devcontainer.json

+7
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,15 @@
1010
"customizations": {
1111
"vscode": {
1212
"extensions": [
13+
"llvm-vs-code-extensions.vscode-clangd",
14+
"ms-python.python",
15+
"ms-python.black-formatter",
16+
"nvidia.nsight-vscode-edition"
1317
]
1418
}
1519
},
20+
"mounts": [
21+
"type=bind,source=${localEnv:HOME}/.ssh,target=/home/devuser/.ssh,readonly"
22+
],
1623
"remoteUser": "devuser"
1724
}
+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#!/bin/bash
2+
# Licensed to the Apache Software Foundation (ASF) under one
3+
# or more contributor license agreements. See the NOTICE file
4+
# distributed with this work for additional information
5+
# regarding copyright ownership. The ASF licenses this file
6+
# to you under the Apache License, Version 2.0 (the
7+
# "License"); you may not use this file except in compliance
8+
# with the License. You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing,
13+
# software distributed under the License is distributed on an
14+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
# KIND, either express or implied. See the License for the
16+
# specific language governing permissions and limitations
17+
# under the License.
18+
19+
set -e
20+
set -u
21+
set -o pipefail
22+
23+
24+
# Install python and pip. Don't modify this to add Python package dependencies,
25+
wget -O Miniforge3.sh "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh"
26+
bash Miniforge3.sh -b -p /home/devuser/conda
27+
28+
/home/devuser/conda/bin/conda create -n $1 python=3.12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/bin/bash
2+
# Licensed to the Apache Software Foundation (ASF) under one
3+
# or more contributor license agreements. See the NOTICE file
4+
# distributed with this work for additional information
5+
# regarding copyright ownership. The ASF licenses this file
6+
# to you under the Apache License, Version 2.0 (the
7+
# "License"); you may not use this file except in compliance
8+
# with the License. You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing,
13+
# software distributed under the License is distributed on an
14+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
# KIND, either express or implied. See the License for the
16+
# specific language governing permissions and limitations
17+
# under the License.
18+
19+
set -e
20+
set -u
21+
22+
pip3 install ninja pytest numpy scipy build cuda-python pytest
23+
pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu128
24+
pip3 install pre-commit

0 commit comments

Comments
 (0)