@@ -33,7 +33,7 @@ Docker Hub.
3333Example
3434``` bash
3535# on beaglebone black
36- docker pull emacski/tensorflow-serving:1.14 .0-linux_arm_armv7-a_neon_vfpv3
36+ docker pull emacski/tensorflow-serving:1.15 .0-linux_arm_armv7-a_neon_vfpv3
3737```
3838
3939### Aliases
@@ -52,7 +52,7 @@ docker pull emacski/tensorflow-serving:1.14.0-linux_arm_armv7-a_neon_vfpv3
5252Example
5353``` bash
5454# on Raspberry PI 3 B+
55- docker pull emacski/tensorflow-serving:1.14 .0-linux_arm64
55+ docker pull emacski/tensorflow-serving:1.15 .0-linux_arm64
5656# or
5757docker pull emacski/tensorflow-serving:latest-linux_arm64
5858```
@@ -86,9 +86,9 @@ docker pull emacski/tensorflow-serving
8686Example
8787``` bash
8888# on Raspberry PI 3 B+
89- docker pull emacski/tensorflow-serving:1.14 .0
90- # the actual image used is emacski/tensorflow-serving:1.14 .0-linux_arm64
91- # itself actually being emacski/tensorflow-serving:1.14 .0-linux_arm64_armv8-a
89+ docker pull emacski/tensorflow-serving:1.15 .0
90+ # the actual image used is emacski/tensorflow-serving:1.15 .0-linux_arm64
91+ # itself actually being emacski/tensorflow-serving:1.15 .0-linux_arm64_armv8-a
9292```
9393
9494## Building from Source
@@ -159,16 +159,13 @@ bazel build //tensorflow_model_server --config=linux_arm_armv7-a_neon_vfpv4
159159```
160160
161161#### Build Docker Image for Custom ARM target
162- Just specify the image target and base arch config and custom copile options.
162+ Just specify the ` image.tar ` target and base arch config group and custom copile options.
163163
164- For ` linux_arm64 ` options see: https://gcc.gnu.org/onlinedocs/gcc-8.3.0/gcc/AArch64-Options.html
165-
166- For ` linux_arm ` options see: https://gcc.gnu.org/onlinedocs/gcc-8.3.0/gcc/ARM-Options.html
164+ For ` linux_arm64 ` and ` linux_arm ` options see: https://releases.llvm.org/9.0.0/tools/clang/docs/CrossCompilation.html
167165
168166Example building an image tuned for Cortex-A72
169167``` bash
170- bazel build //tensorflow_model_server:image.tar --config=linux_arm64 \
171- --copt=-mtune=cortex-a72
168+ bazel build //tensorflow_model_server:image.tar --config=linux_arm64 --copt=-mcpu=cortex-a72
172169# resulting image tar: bazel-bin/tensorflow_model_server/image.tar
173170```
174171
0 commit comments