cuda12.2.dockerfile 4.44 KB
Newer Older
1
FROM nvcr.io/nvidia/pytorch:23.10-py3
2
3

# OS:
4
5
#   - Ubuntu: 22.04
#   - OpenMPI: 4.1.5rc2
6
7
#   - Docker Client: 20.10.8
# NVIDIA:
8
9
#   - CUDA: 12.2.2
#   - cuDNN: 8.9.5
10
#   - NCCL: v2.18.3-1
11
# Mellanox:
12
13
#   - OFED: 23.07-0.5.1.2
#   - HPC-X: v2.16
14
# Intel:
15
#   - mlc: v3.11
16
17
18
19
20
21
22
23
24
25
26
27

LABEL maintainer="SuperBench"

ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
    apt-get install -y --no-install-recommends \
    autoconf \
    automake \
    bc \
    build-essential \
    curl \
    dmidecode \
28
    ffmpeg \
29
30
31
32
    git \
    iproute2 \
    jq \
    libaio-dev \
33
34
35
    libavcodec-dev \
    libavformat-dev \
    libavutil-dev \
36
37
    libboost-program-options-dev \
    libcap2 \
38
    libcurl4-openssl-dev \
39
40
    libnuma-dev \
    libpci-dev \
41
    libswresample-dev \
42
43
44
    libtinfo5 \
    libtool \
    lshw \
45
    python3-mpi4py \
46
    net-tools \
47
    nlohmann-json3-dev \
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
    openssh-client \
    openssh-server \
    pciutils \
    sudo \
    util-linux \
    vim \
    wget \
    && \
    apt-get autoremove && \
    apt-get clean && \
    rm -rf /var/lib/apt/lists/* /tmp/*

ARG NUM_MAKE_JOBS=

# Install Docker
ENV DOCKER_VERSION=20.10.8
RUN cd /tmp && \
    wget -q https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz -O docker.tgz && \
    tar --extract --file docker.tgz --strip-components 1 --directory /usr/local/bin/ && \
    rm docker.tgz

# Update system config
RUN mkdir -p /root/.ssh && \
    touch /root/.ssh/authorized_keys && \
    mkdir -p /var/run/sshd && \
    sed -i "s/[# ]*PermitRootLogin prohibit-password/PermitRootLogin yes/" /etc/ssh/sshd_config && \
    sed -i "s/[# ]*PermitUserEnvironment no/PermitUserEnvironment yes/" /etc/ssh/sshd_config && \
    sed -i "s/[# ]*Port.*/Port 22/" /etc/ssh/sshd_config && \
    echo "* soft nofile 1048576\n* hard nofile 1048576" >> /etc/security/limits.conf && \
    echo "root soft nofile 1048576\nroot hard nofile 1048576" >> /etc/security/limits.conf

# Install OFED
80
ENV OFED_VERSION=23.07-0.5.1.2
81
RUN cd /tmp && \
82
83
84
    wget -q https://content.mellanox.com/ofed/MLNX_OFED-${OFED_VERSION}/MLNX_OFED_LINUX-${OFED_VERSION}-ubuntu22.04-x86_64.tgz && \
    tar xzf MLNX_OFED_LINUX-${OFED_VERSION}-ubuntu22.04-x86_64.tgz && \
    MLNX_OFED_LINUX-${OFED_VERSION}-ubuntu22.04-x86_64/mlnxofedinstall --user-space-only --without-fw-update --without-ucx-cuda --force --all && \
85
86
87
    rm -rf /tmp/MLNX_OFED_LINUX-${OFED_VERSION}*

# Install HPC-X
88
ENV HPCX_VERSION=v2.16
89
90
RUN cd /opt && \
    rm -rf hpcx && \
91
    wget -q https://content.mellanox.com/hpc/hpc-x/${HPCX_VERSION}/hpcx-${HPCX_VERSION}-gcc-mlnx_ofed-ubuntu22.04-cuda12-gdrcopy2-nccl2.18-x86_64.tbz -O hpcx.tbz && \
92
    tar xf hpcx.tbz && \
93
    mv hpcx-${HPCX_VERSION}-gcc-mlnx_ofed-ubuntu22.04-cuda12-gdrcopy2-nccl2.18-x86_64 hpcx && \
94
    rm hpcx.tbz
95
96
97

# Install Intel MLC
RUN cd /tmp && \
98
    wget -q https://downloadmirror.intel.com/793041/mlc_v3.11.tgz -O mlc.tgz && \
99
100
101
102
    tar xzf mlc.tgz Linux/mlc && \
    cp ./Linux/mlc /usr/local/bin/ && \
    rm -rf ./Linux mlc.tgz

rafsalas19's avatar
rafsalas19 committed
103
104
105
106
107
108
# Install AOCC compiler
RUN cd /tmp && \
    wget https://download.amd.com/developer/eula/aocc-compiler/aocc-compiler-4.0.0_1_amd64.deb && \
    apt install -y ./aocc-compiler-4.0.0_1_amd64.deb && \
    rm -rf aocc-compiler-4.0.0_1_amd64.deb

rafsalas19's avatar
rafsalas19 committed
109
110
111
112
113
114
115
# Install AMD BLIS
RUN cd /tmp && \
    wget https://download.amd.com/developer/eula/blis/blis-4-0/aocl-blis-linux-aocc-4.0.tar.gz && \
    tar xzf aocl-blis-linux-aocc-4.0.tar.gz && \
    mv amd-blis /opt/AMD && \
    rm -rf aocl-blis-linux-aocc-4.0.tar.gz

116
117
118
119
120
121
122
# Install NCCL 2.18.3
RUN cd /tmp && \
    git clone -b v2.18.3-1 https://github.com/NVIDIA/nccl.git && \
    cd nccl && \
    make -j src.build && \
    make install && \
    rm -rf /tmp/nccl
123
124
125
126
127
128
129
130
131
132

ENV PATH="${PATH}" \
    LD_LIBRARY_PATH="/usr/local/lib:${LD_LIBRARY_PATH}" \
    SB_HOME=/opt/superbench \
    SB_MICRO_PATH=/opt/superbench \
    ANSIBLE_DEPRECATION_WARNINGS=FALSE \
    ANSIBLE_COLLECTIONS_PATH=/usr/share/ansible/collections

RUN echo PATH="$PATH" > /etc/environment && \
    echo LD_LIBRARY_PATH="$LD_LIBRARY_PATH" >> /etc/environment && \
133
134
    echo SB_MICRO_PATH="$SB_MICRO_PATH" >> /etc/environment && \
    echo "source /opt/hpcx/hpcx-init.sh && hpcx_load" >> /etc/bash.bashrc
135

136
137
138
139
140
141
# Add config files
ADD dockerfile/etc /opt/microsoft/

WORKDIR ${SB_HOME}

ADD third_party third_party
142
RUN make -C third_party cuda_with_msccl
143
144

ADD . .
145
146
RUN python3 -m pip install --upgrade setuptools==65.7 && \
    python3 -m pip install --no-cache-dir .[nvworker] && \
147
148
149
    make cppbuild && \
    make postinstall && \
    rm -rf .git