-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from PaddlePaddle/master
Master
- Loading branch information
Showing
563 changed files
with
26,809 additions
and
6,392 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
*.DS_Store | ||
build/ | ||
*.user | ||
.vscode | ||
.idea | ||
.project | ||
.cproject | ||
.pydevproject | ||
Makefile | ||
.test_env/ | ||
third_party/ | ||
*~ | ||
bazel-* | ||
|
||
!build/*.deb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# A image for building paddle binaries | ||
# Use cuda devel base image for both cpu and gpu environment | ||
FROM nvidia/cuda:8.0-cudnn5-devel-ubuntu14.04 | ||
MAINTAINER PaddlePaddle Authors <[email protected]> | ||
|
||
ARG UBUNTU_MIRROR | ||
RUN /bin/bash -c 'if [[ -n ${UBUNTU_MIRROR} ]]; then sed -i 's#http://archive.ubuntu.com/ubuntu#${UBUNTU_MIRROR}#g' /etc/apt/sources.list; fi' | ||
|
||
# ENV variables | ||
ARG WITH_GPU | ||
ARG WITH_AVX | ||
ARG WITH_DOC | ||
ARG WITH_STYLE_CHECK | ||
|
||
ENV WOBOQ OFF | ||
ENV WITH_GPU=${WITH_GPU:-OFF} | ||
ENV WITH_AVX=${WITH_AVX:-ON} | ||
ENV WITH_DOC=${WITH_DOC:-OFF} | ||
ENV WITH_STYLE_CHECK=${WITH_STYLE_CHECK:-OFF} | ||
|
||
ENV HOME /root | ||
# Add bash enhancements | ||
COPY ./paddle/scripts/docker/root/ /root/ | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y git python-pip python-dev openssh-server bison && \ | ||
apt-get install -y wget unzip tar xz-utils bzip2 gzip coreutils && \ | ||
apt-get install -y curl sed grep graphviz libjpeg-dev zlib1g-dev && \ | ||
apt-get install -y python-numpy python-matplotlib gcc g++ gfortran && \ | ||
apt-get install -y automake locales clang-format-3.8 swig doxygen && \ | ||
apt-get clean -y | ||
|
||
# git credential to skip password typing | ||
RUN git config --global credential.helper store | ||
|
||
# Fix locales to en_US.UTF-8 | ||
RUN localedef -i en_US -f UTF-8 en_US.UTF-8 | ||
|
||
# FIXME: due to temporary ipykernel dependency issue, specify ipykernel jupyter | ||
# version util jupyter fixes this issue. | ||
RUN pip install --upgrade pip && \ | ||
pip install -U 'protobuf==3.1.0' && \ | ||
pip install -U wheel pillow BeautifulSoup && \ | ||
pip install -U docopt PyYAML sphinx && \ | ||
pip install -U sphinx-rtd-theme==0.1.9 recommonmark && \ | ||
pip install pre-commit 'requests==2.9.2' 'ipython==5.3.0' && \ | ||
pip install 'ipykernel==4.6.0' 'jupyter==1.0.0' | ||
|
||
RUN curl -sSL https://cmake.org/files/v3.4/cmake-3.4.1.tar.gz | tar -xz && \ | ||
cd cmake-3.4.1 && ./bootstrap && make -j `nproc` && make install && \ | ||
cd .. && rm -rf cmake-3.4.1 | ||
|
||
VOLUME ["/woboq_out"] | ||
|
||
# Configure OpenSSH server. c.f. https://docs.docker.com/engine/examples/running_ssh_service | ||
RUN mkdir /var/run/sshd | ||
RUN echo 'root:root' | chpasswd | ||
RUN sed -ri 's/^PermitRootLogin\s+.*/PermitRootLogin yes/' /etc/ssh/sshd_config | ||
RUN sed -ri 's/UsePAM yes/#UsePAM yes/g' /etc/ssh/sshd_config | ||
EXPOSE 22 | ||
|
||
# development image default do build work | ||
CMD ["bash", "/paddle/paddle/scripts/docker/build.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.