kse-01/tensorflow/third_party/ngraph/build_defs.bzl

12 lines
330 B
Python
Raw Normal View History

2023-10-09 11:37:31 +00:00
"""Build configurations for nGraph."""
def clean_dep(dep):
return str(Label(dep))
def if_ngraph(if_true, if_false = []):
"""select()'ing on whether we're building with nGraph support."""
return select({
clean_dep("//tensorflow:with_ngraph_support"): if_true,
"//conditions:default": if_false,
})