File tree 2 files changed +12
-1
lines changed
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ sh_binary(
22
22
"//tensorboard:version" , # Version module (read by setup.py)
23
23
"//tensorboard/plugins/beholder" , # User-facing beholder API
24
24
"//tensorboard/plugins/hparams" , # User-facing hparams API
25
- "//tensorboard/plugins/mesh:summary " , # User-facing mesh summary API
25
+ "//tensorboard/plugins/mesh" , # User-facing mesh API
26
26
"//tensorboard/plugins/projector" , # User-facing projector API
27
27
"//tensorboard/summary:tf_summary" , # tf.summary API for TF 2.0
28
28
],
Original file line number Diff line number Diff line change @@ -5,6 +5,17 @@ exports_files(["LICENSE"])
5
5
6
6
load ("//tensorboard/defs:protos.bzl" , "tb_proto_library" )
7
7
8
+ # Public-facing API, included in Pip package.
9
+ py_library (
10
+ name = "mesh" ,
11
+ srcs = ["__init__.py" ],
12
+ srcs_version = "PY2AND3" ,
13
+ visibility = ["//visibility:public" ],
14
+ deps = [
15
+ ":summary" ,
16
+ ],
17
+ )
18
+
8
19
py_library (
9
20
name = "metadata" ,
10
21
srcs = ["metadata.py" ],
You can’t perform that action at this time.
0 commit comments