Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mesh: explictly define public API, for consistency #2208

Merged
merged 1 commit into from
May 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tensorboard/pip_package/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ sh_binary(
"//tensorboard:version", # Version module (read by setup.py)
"//tensorboard/plugins/beholder", # User-facing beholder API
"//tensorboard/plugins/hparams", # User-facing hparams API
"//tensorboard/plugins/mesh:summary", # User-facing mesh summary API
"//tensorboard/plugins/mesh", # User-facing mesh API
"//tensorboard/plugins/projector", # User-facing projector API
"//tensorboard/summary:tf_summary", # tf.summary API for TF 2.0
],
Expand Down
11 changes: 11 additions & 0 deletions tensorboard/plugins/mesh/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ exports_files(["LICENSE"])

load("//tensorboard/defs:protos.bzl", "tb_proto_library")

# Public-facing API, included in Pip package.
py_library(
name = "mesh",
srcs = ["__init__.py"],
srcs_version = "PY2AND3",
visibility = ["//visibility:public"],
deps = [
":summary",
],
)

py_library(
name = "metadata",
srcs = ["metadata.py"],
Expand Down