blob: 1e4316dc2e84703a2dec829b8903d03a1b333559 [file] [log] [blame]
load("//tensorflow:tensorflow.bzl", "py_test")
package(
default_visibility = ["//visibility:public"],
licenses = ["notice"], # Apache 2.0
)
py_library(
name = "mlir",
srcs = ["mlir.py"],
srcs_version = "PY2AND3",
deps = [
"//tensorflow/python:pywrap_mlir",
"//tensorflow/python/util:tf_export",
],
)
py_test(
name = "mlir_test",
srcs = ["mlir_test.py"],
python_version = "PY3",
deps = [
":mlir",
"//tensorflow/python:client_testlib",
"//tensorflow/python:dtypes",
"//tensorflow/python:errors",
"//tensorflow/python:logging_ops",
"//tensorflow/python:tensor_spec",
"//tensorflow/python/eager:def_function",
],
)