Clif wraps the TPU topology proto target to enable use in clif files.

PiperOrigin-RevId: 258233713
This commit is contained in:
Sudip Roy 2019-07-15 14:07:09 -07:00 committed by TensorFlower Gardener
parent f314ebf818
commit 49c3f30a78

View File

@ -3,6 +3,7 @@ load(
"tf_additional_all_protos", "tf_additional_all_protos",
"tf_proto_library", "tf_proto_library",
"tf_proto_library_py", "tf_proto_library_py",
"tf_pyclif_proto_library",
) )
package( package(
@ -71,3 +72,10 @@ tf_proto_library_py(
], ],
visibility = ["//visibility:public"], visibility = ["//visibility:public"],
) )
tf_pyclif_proto_library(
name = "topology_pyclif",
proto_lib = ":topology_proto",
proto_srcfile = "topology.proto",
visibility = ["//visibility:public"],
)