2

Docker を使用して OSX El Capitan に TensorFlow サービスをインストールしようとしていますが、エラーが発生し続けます。これが私がフォローしているチュートリアルです:

https://tensorflow.github.io/serving/docker.html

エラーの原因となっているコマンドは次のとおりです。

bazel test tensorflow_serving/...

これが私が得ているエラーです:

for (int i = 0; i < suffix.size(); ++i) {
                                   ^
ERROR: /root/.cache/bazel/_bazel_root/f8d1071c69ea316497c31e40fe01608c/external/tf/tensorflow/core/kernels/BUILD:212:1: C++ compilation of rule '@tf//tensorflow/core/kernels:mirror_pad_op' failed: gcc failed: error executing command /usr/bin/gcc -U_FORTIFY_SOURCE '-D_FORTIFY_SOURCE=1' -fstack-protector -Wall -Wunused-but-set-parameter -Wno-free-nonheap-object -fno-omit-frame-pointer '-std=c++0x' -iquote external/tf -iquote ... (remaining 65 argument(s) skipped): com.google.devtools.build.lib.shell.BadExitStatusException: Process exited with status 4.
gcc: internal compiler error: Killed (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
4

1 に答える 1

3

解決しました!問題は VM のメモリ不足にあったようです。

これが私がそれを修正した方法です:

1)マシンを作成するときは、メモリが多いことを確認してください(私のものはわずか1GBでした)。4GB の Docker マシンを作成する方法は次のとおりです。

docker-machine create -d virtualbox --virtualbox-memory 4096 default

2) bazel コマンドを実行するときに、使用するメモリの量を制限するパラメーターを渡します。ここでは、2GB のみを使用してコマンドを実行しています。

bazel build -c opt --copt=-mavx --verbose_failures --local_resources 2048,2.0,1.0 -j 1 //tensorflow_serving/example:mnist_export 

元のコマンドの場所:

bazel build //tensorflow_serving/example:mnist_export
于 2016-03-28T18:19:40.203 に答える