blob: 3a17635feaaccb6053e83662cde6018007aaa3b8 [file] [log] [blame]
Jegathesan Shanmugambdba2722020-03-26 22:47:37 +05301FROM ubuntu:16.04
2ENV TERM linux
3ENV DEBIAN_FRONTEND noninteractive
4
5# Forward system proxy setting
6# ARG proxy
7# ENV http_proxy $proxy
8# ENV https_proxy $proxy
9
10# Basic apt update
11RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends locales ca-certificates && rm -rf /var/lib/apt/lists/*
12
13# Set the locale to en_US.UTF-8, because the Yocto build fails without any locale set.
14RUN locale-gen en_US.UTF-8 && update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8
15ENV LANG en_US.UTF-8
16ENV LC_ALL en_US.UTF-8
17
18# Again, off the certificare
19RUN echo "check_certificate = off" >> ~/.wgetrc
20RUN echo "[global] \n\
21trusted-host = pypi.python.org \n \
22\t pypi.org \n \
23\t files.pythonhosted.org" >> /etc/pip.conf
24
25# Get basic packages
26RUN apt-get update && apt-get install -y \
27 apparmor \
28 aufs-tools \
29 automake \
30 bash-completion \
31 btrfs-tools \
32 build-essential \
33 cmake \
34 createrepo \
35 curl \
36 dpkg-sig \
37 g++ \
38 gcc \
39 git \
40 iptables \
41 jq \
42 libapparmor-dev \
43 libc6-dev \
44 libcap-dev \
45 libsystemd-dev \
46 libyaml-dev \
47 mercurial \
48 net-tools \
49 parallel \
50 pkg-config \
51 python-dev \
52 python-mock \
53 python-pip \
54 python-setuptools \
55 python-websocket \
56 golang-go \
57 iproute2 \
58 iputils-ping \
59 vim-common \
60 vim \
61 wget \
62 libtool \
63 unzip \
64 scons \
65 curl \
66 autoconf \
67 libtool \
68 build-essential \
69 g++ \
70 cmake && rm -rf /var/lib/apt/lists/*
71
72# Install Cross-compiling ToolChain
73RUN apt-get update && apt-get install -y crossbuild-essential-arm64
74
75# Build and install Google's Protobuf library
76# Download and Extract
77RUN mkdir -p $HOME/google && \
78 cd $HOME/google && \
Keith Mok34b9aba2021-03-18 21:42:16 -070079 wget https://github.com/protocolbuffers/protobuf/releases/download/v3.12.0/protobuf-all-3.12.0.tar.gz && \
80 tar -zxvf protobuf-all-3.12.0.tar.gz
Jegathesan Shanmugambdba2722020-03-26 22:47:37 +053081
82# Build a native (x86_64) version
Keith Mok34b9aba2021-03-18 21:42:16 -070083RUN cd $HOME/google/protobuf-3.12.0 && \
Jegathesan Shanmugambdba2722020-03-26 22:47:37 +053084 mkdir x86_build && cd x86_build && \
85 ../configure --prefix=$HOME/armnn-devenv/google/x86_64_pb_install && \
Keith Mok34b9aba2021-03-18 21:42:16 -070086 make install -j$(nproc)
Jegathesan Shanmugambdba2722020-03-26 22:47:37 +053087
88# Build the arm64 version of the protobuf libraries
Keith Mok34b9aba2021-03-18 21:42:16 -070089RUN cd $HOME/google/protobuf-3.12.0 && \
Jegathesan Shanmugambdba2722020-03-26 22:47:37 +053090 mkdir arm64_build && cd arm64_build && \
91 export CC=aarch64-linux-gnu-gcc && \
92 export CXX=aarch64-linux-gnu-g++ && \
93 ../configure --host=aarch64-linux \
94 --prefix=$HOME/armnn-devenv/google/arm64_pb_install \
95 --with-protoc=$HOME/armnn-devenv/google/x86_64_pb_install/bin/protoc && \
Keith Mok34b9aba2021-03-18 21:42:16 -070096 make install -j$(nproc)
Jegathesan Shanmugambdba2722020-03-26 22:47:37 +053097
Jegathesan Shanmugambdba2722020-03-26 22:47:37 +053098# Dep Error - Bug ARMNN
99RUN apt-get update && apt-get install -y \
100 python-numpy
101
102# Setup Env
103# ENV PATH=$HOME/armnn-devenv/google/x86_64_pb_install/bin/:$PATH
104# ENV LD_LIBRARY_PATH=$HOME/armnn-devenv/google/x86_64_pb_install/lib/:$LD_LIBRARY_PATH
105
Jegathesan Shanmugambdba2722020-03-26 22:47:37 +0530106
107# Build Boost library for arm64
108RUN cd $HOME && wget http://downloads.sourceforge.net/project/boost/boost/1.64.0/boost_1_64_0.tar.gz && \
109 tar xfz boost_1_64_0.tar.gz && \
110 rm boost_1_64_0.tar.gz && \
111 cd boost_1_64_0 && \
112 echo "using gcc : arm : aarch64-linux-gnu-g++ ;" > user_config.jam && \
113 ./bootstrap.sh --prefix=$HOME/armnn-devenv/boost_arm64_install && \
Keith Mok34b9aba2021-03-18 21:42:16 -0700114 ./b2 install toolset=gcc-arm link=static cxxflags=-fPIC --with-filesystem --with-test --with-log --with-program_options -j$(nproc) --user-config=user_config.jam
115
116# Download ArmNN
117RUN cd $HOME/armnn-devenv && git clone https://github.com/ARM-software/armnn.git
Jegathesan Shanmugambdba2722020-03-26 22:47:37 +0530118
119# Build Compute Library
Keith Mok34b9aba2021-03-18 21:42:16 -0700120RUN cd $HOME/armnn-devenv/ && git clone https://review.mlplatform.org/ml/ComputeLibrary && \
Jegathesan Shanmugambdba2722020-03-26 22:47:37 +0530121 cd ComputeLibrary && \
Keith Mok34b9aba2021-03-18 21:42:16 -0700122 git checkout $($HOME/armnn-devenv/armnn/scripts/get_compute_library.sh -p) && \
123 scons Werror=0 arch=arm64-v8a neon=1 opencl=1 embed_kernels=1 extra_cxx_flags="-fPIC" -j$(nproc) internal_only=0
124
125# Build Tensorflow 2.3.1
126RUN cd $HOME/armnn-devenv && git clone https://github.com/tensorflow/tensorflow.git && \
127 cd tensorflow && \
128 git checkout fcc4b966f1265f466e82617020af93670141b009 && \
129 ../armnn/scripts/generate_tensorflow_protobuf.sh ../tensorflow-protobuf ../google/x86_64_pb_install
130
131# Download Flatbuffer
132RUN cd $HOME/armnn-devenv && \
133 wget -O flatbuffers-1.12.0.tar.gz https://github.com/google/flatbuffers/archive/v1.12.0.tar.gz && \
134 tar xf flatbuffers-1.12.0.tar.gz && \
135 cd flatbuffers-1.12.0 && \
136 rm -f CMakeCache.txt
137
138# Build a native (x86_64) version
139RUN cd $HOME/armnn-devenv && cd flatbuffers-1.12.0 && \
140 mkdir build && \
141 cd build && \
142 cmake .. -DFLATBUFFERS_BUILD_FLATC=1 \
143 -DCMAKE_INSTALL_PREFIX:PATH=$HOME/armnn-devenv/flatbuffers \
144 -DFLATBUFFERS_BUILD_TESTS=0 && \
145 make all install -j$(nproc)
146
147# Build arm64 version of flatbuffer
148RUN cd $HOME/armnn-devenv&& cd flatbuffers-1.12.0 && \
149 mkdir build-arm64 && \
150 cd build-arm64 && \
151 CXXFLAGS="-fPIC" cmake .. -DCMAKE_C_COMPILER=/usr/bin/aarch64-linux-gnu-gcc \
152 -DCMAKE_CXX_COMPILER=/usr/bin/aarch64-linux-gnu-g++ \
153 -DFLATBUFFERS_BUILD_FLATC=1 \
154 -DCMAKE_INSTALL_PREFIX:PATH=$HOME/armnn-devenv/flatbuffers-arm64 \
155 -DFLATBUFFERS_BUILD_TESTS=0 && \
156 make all install -j$(nproc)
157
158# Build onnx
159RUN cd $HOME/armnn-devenv && git clone https://github.com/onnx/onnx.git && \
160 cd onnx && \
161 git fetch https://github.com/onnx/onnx.git 553df22c67bee5f0fe6599cff60f1afc6748c635 && git checkout FETCH_HEAD && \
162 LD_LIBRARY_PATH=$HOME/armnn-devenv/google/x86_64_pb_install/lib:$LD_LIBRARY_PATH \
163 $HOME/armnn-devenv/google/x86_64_pb_install/bin/protoc \
164 onnx/onnx.proto --proto_path=. --proto_path=../google/x86_64_pb_install/include --cpp_out $HOME/armnn-devenv/onnx
165
166# Build TfLite
167RUN cd $HOME/armnn-devenv && \
168 mkdir tflite && \
169 cd tflite && \
170 cp ../tensorflow/tensorflow/lite/schema/schema.fbs . && \
171 ../flatbuffers-1.12.0/build/flatc -c --gen-object-api --reflect-types --reflect-names schema.fbs
Jegathesan Shanmugambdba2722020-03-26 22:47:37 +0530172
173# Build ArmNN
Keith Mok34b9aba2021-03-18 21:42:16 -0700174RUN cd $HOME/armnn-devenv && \
Jegathesan Shanmugambdba2722020-03-26 22:47:37 +0530175 cd armnn && mkdir build && cd build && \
176 export CXX=aarch64-linux-gnu-g++ && \
177 export CC=aarch64-linux-gnu-gcc && \
178 cmake .. \
Keith Mok34b9aba2021-03-18 21:42:16 -0700179 -DCMAKE_CXX_FLAGS=-w \
180 -DBUILD_TESTS=1 \
Jegathesan Shanmugambdba2722020-03-26 22:47:37 +0530181 -DARMCOMPUTE_ROOT=$HOME/armnn-devenv/ComputeLibrary \
182 -DARMCOMPUTE_BUILD_DIR=$HOME/armnn-devenv/ComputeLibrary/build/ \
183 -DBOOST_ROOT=$HOME/armnn-devenv/boost_arm64_install/ \
184 -DARMCOMPUTENEON=1 -DARMCOMPUTECL=1 -DARMNNREF=1 \
Keith Mok34b9aba2021-03-18 21:42:16 -0700185 -DONNX_GENERATED_SOURCES=$HOME/armnn-devenv/onnx \
186 -DBUILD_ONNX_PARSER=1 \
Keith Mok34b9aba2021-03-18 21:42:16 -0700187 -DBUILD_TF_LITE_PARSER=1 \
188 -DTF_LITE_GENERATED_PATH=$HOME/armnn-devenv/tflite \
189 -DFLATBUFFERS_ROOT=$HOME/armnn-devenv/flatbuffers-arm64 \
190 -DFLATC_DIR=$HOME/armnn-devenv/flatbuffers-1.12.0/build \
191 -DPROTOBUF_ROOT=$HOME/armnn-devenv/google/x86_64_pb_install \
192 -DPROTOBUF_LIBRARY_DEBUG=$HOME/armnn-devenv/google/arm64_pb_install/lib/libprotobuf.so.23.0.0 \
193 -DPROTOBUF_LIBRARY_RELEASE=$HOME/armnn-devenv/google/arm64_pb_install/lib/libprotobuf.so.23.0.0 && \
194 make -j$(nproc)