-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Description
System:
Red Hat Enterprise Linux Server release 7.4 (Maipo), ppc64le
Tensorboard:
Built from source tag 0.4.0-rc3
Bazel:
0.5.4
Build Steps:
bazel build //tensorboard/pip_package:build_pip_package
bazel-bin/tensorboard/pip_package/build_pip_package /tmp
Issue:
The wheel file created when installed, doesn't copy the bazel-bin/tensorboard/tensorboard executable. And obviously, whatever is needed by this executable like tensorboard.runfiles is also not copied. Also the external pre-requisites like protobuf, html5lib, werkzeug, paper-, iron- are not copied into the wheel file.
On x86, I tried installing two packages tensorboard and tensorflow-tensorboard using pip. And 1st one provides complete package including all the dependencies. It looks like it comes from https://github.com/dmlc/tensorboard while the 2nd one is similar to what I see on ppc64le which came from https://github.com/tensorflow/tensorboard.
So, not sure if this is the bug in tensorflow-tensorboard package or the package is still evolving.
Meanwhile I tried modifying build_pip_package.sh to copy all the external dependencies and it worked.