cuda11.1.1.dockerfile 3.42 KB
Newer Older
1
2
FROM nvcr.io/nvidia/pytorch:20.12-py3

3
4
# OS:
#   - Ubuntu: 20.04
5
#   - OpenMPI: 4.0.5
6
#   - Docker Client: 20.10.8
7
8
9
10
11
12
13
14
15
# NVIDIA:
#   - CUDA: 11.1.1
#   - cuDNN: 8.0.5
#   - NCCL: bootstrap_tag
# Mellanox:
#   - OFED: 5.2-2.2.3.0
#   - HPC-X: v2.8.3
#   - NCCL RDMA SHARP plugins: 7cccbc1

16
17
LABEL maintainer="SuperBench"

18
ENV DEBIAN_FRONTEND=noninteractive
19
20
RUN apt-get update && \
    apt-get install -y --no-install-recommends \
21
22
    autoconf \
    automake \
23
24
25
    build-essential \
    curl \
    dmidecode \
26
27
28
29
    git \
    jq \
    libaio-dev \
    libcap2 \
30
    libnuma-dev \
31
32
    libpci-dev \
    libtinfo5 \
33
    libtool \
34
    lshw \
35
36
37
38
    net-tools \
    openssh-client \
    openssh-server \
    pciutils \
39
40
41
42
43
44
45
    util-linux \
    vim \
    wget \
    && \
    apt-get autoremove && \
    apt-get clean && \
    rm -rf /var/lib/apt/lists/* /tmp/* /opt/cmake-3.14.6-Linux-x86_64
46

47
48
49
50
51
52
53
# Install Docker
ENV DOCKER_VERSION=20.10.8
RUN cd /tmp && \
    wget 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

54
# Update system config
55
56
57
58
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 && \
59
    sed -i "s/[# ]*PermitUserEnvironment no/PermitUserEnvironment yes/" /etc/ssh/sshd_config && \
60
    sed -i "s/[# ]*Port.*/Port 22/" /etc/ssh/sshd_config && \
61
62
    echo -e "* soft nofile 1048576\n* hard nofile 1048576" >> /etc/security/limits.conf && \
    echo -e "root soft nofile 1048576\nroot hard nofile 1048576" >> /etc/security/limits.conf
63
64

# Install OFED
65
ENV OFED_VERSION=5.2-2.2.3.0
66
67
68
69
70
71
RUN cd /tmp && \
    wget -q http://content.mellanox.com/ofed/MLNX_OFED-${OFED_VERSION}/MLNX_OFED_LINUX-${OFED_VERSION}-ubuntu20.04-x86_64.tgz && \
    tar xzf MLNX_OFED_LINUX-${OFED_VERSION}-ubuntu20.04-x86_64.tgz && \
    MLNX_OFED_LINUX-${OFED_VERSION}-ubuntu20.04-x86_64/mlnxofedinstall --user-space-only --without-fw-update --force --all && \
    rm -rf /tmp/MLNX_OFED_LINUX-${OFED_VERSION}*

72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Install HPC-X
RUN cd /opt && \
    wget -q https://azhpcstor.blob.core.windows.net/azhpc-images-store/hpcx-v2.8.3-gcc-MLNX_OFED_LINUX-${OFED_VERSION}-ubuntu20.04-x86_64.tbz && \
    tar xf hpcx-v2.8.3-gcc-MLNX_OFED_LINUX-${OFED_VERSION}-ubuntu20.04-x86_64.tbz && \
    ln -s hpcx-v2.8.3-gcc-MLNX_OFED_LINUX-${OFED_VERSION}-ubuntu20.04-x86_64 hpcx && \
    rm hpcx-v2.8.3-gcc-MLNX_OFED_LINUX-${OFED_VERSION}-ubuntu20.04-x86_64.tbz

# Install NCCL RDMA SHARP plugins
RUN cd /tmp && \
    git clone https://github.com/Mellanox/nccl-rdma-sharp-plugins.git && \
    cd nccl-rdma-sharp-plugins && \
    git reset --hard 7cccbc1 && \
    ./autogen.sh && \
    ./configure --prefix=/usr/local --with-cuda=/usr/local/cuda && \
    make -j && \
    make install && \
    cd /tmp && \
    rm -rf nccl-rdma-sharp-plugins

# Install NCCL patch
RUN cd /tmp && \
    git clone -b bootstrap_tag https://github.com/NVIDIA/nccl.git && \
    cd nccl && \
    make -j src.build && \
    make install && \
    cd /tmp && \
    rm -rf nccl

100
ENV PATH="${PATH}" \
101
    LD_LIBRARY_PATH="/usr/local/lib:${LD_LIBRARY_PATH}" \
102
103
    SB_HOME="/opt/superbench" \
    SB_MICRO_PATH="/opt/superbench"
104
105

WORKDIR ${SB_HOME}
106

107
ADD third_party third_party
108
RUN make -j -C third_party cuda
109
110

ADD . .
111
RUN python3 -m pip install .[nvidia,torch,ort] && \
112
    make cppbuild