aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/cpu/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/compiler/xla/service/cpu/BUILD')
-rw-r--r--tensorflow/compiler/xla/service/cpu/BUILD18
1 files changed, 17 insertions, 1 deletions
diff --git a/tensorflow/compiler/xla/service/cpu/BUILD b/tensorflow/compiler/xla/service/cpu/BUILD
index d82922a359..1067b38f93 100644
--- a/tensorflow/compiler/xla/service/cpu/BUILD
+++ b/tensorflow/compiler/xla/service/cpu/BUILD
@@ -178,6 +178,7 @@ cc_library(
":runtime_matmul",
":runtime_matmul_mkl",
":runtime_single_threaded_conv2d",
+ ":runtime_single_threaded_fft",
":runtime_single_threaded_matmul",
"@llvm//:execution_engine",
"@llvm//:core",
@@ -516,7 +517,6 @@ cc_library(
deps = [
"//tensorflow/compiler/xla:executable_run_options",
"//tensorflow/compiler/xla:xla_data_proto",
- "//tensorflow/core:framework",
"//tensorflow/core:framework_lite",
"//third_party/eigen3",
],
@@ -579,6 +579,22 @@ cc_library(
)
cc_library(
+ name = "runtime_single_threaded_fft",
+ srcs = [
+ "runtime_fft_impl.h",
+ "runtime_single_threaded_fft.cc",
+ ],
+ hdrs = ["runtime_single_threaded_fft.h"],
+ copts = runtime_copts(),
+ visibility = ["//visibility:public"],
+ deps = [
+ "//tensorflow/compiler/xla:xla_data_proto",
+ "//tensorflow/core:framework_lite",
+ "//third_party/eigen3",
+ ],
+)
+
+cc_library(
name = "runtime_single_threaded_matmul",
srcs = ["runtime_single_threaded_matmul.cc"],
hdrs = ["runtime_single_threaded_matmul.h"],