@@ -33,7 +33,7 @@ Docker Hub.
33
33
Example
34
34
``` bash
35
35
# 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
37
37
```
38
38
39
39
### Aliases
@@ -52,7 +52,7 @@ docker pull emacski/tensorflow-serving:1.14.0-linux_arm_armv7-a_neon_vfpv3
52
52
Example
53
53
``` bash
54
54
# 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
56
56
# or
57
57
docker pull emacski/tensorflow-serving:latest-linux_arm64
58
58
```
@@ -86,9 +86,9 @@ docker pull emacski/tensorflow-serving
86
86
Example
87
87
``` bash
88
88
# 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
92
92
```
93
93
94
94
## Building from Source
@@ -159,16 +159,13 @@ bazel build //tensorflow_model_server --config=linux_arm_armv7-a_neon_vfpv4
159
159
```
160
160
161
161
#### 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.
163
163
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
167
165
168
166
Example building an image tuned for Cortex-A72
169
167
``` 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
172
169
# resulting image tar: bazel-bin/tensorflow_model_server/image.tar
173
170
```
174
171
0 commit comments