blob: 07ef16a624b626cdfea5021bb2a5774a32d0c6f9 [file] [log] [blame]
load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
load("//tensorflow:tensorflow.bzl", "get_compatible_with_portable")
package(
default_visibility = [
"//tensorflow:internal",
"@tf_runtime//:friends",
],
licenses = ["notice"],
)
cc_library(
name = "types",
srcs = ["types.cc"],
hdrs = ["types.h"],
compatible_with = get_compatible_with_portable(),
deps = [
"//tensorflow/compiler/xla/mlir/ir/runtime:rt_ops",
"@llvm-project//llvm:Support",
"@tf_runtime//:dtype",
"@tf_runtime//:support",
],
)