aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/cpu/runtime_fft.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-12-23 04:22:33 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-12-23 04:26:14 -0800
commitc0c2775ce3de682f7913d1aeaf50bbc4d1521934 (patch)
tree8e3c8792537afe4ebc9c6bd665149f64df37d8c4 /tensorflow/compiler/xla/service/cpu/runtime_fft.cc
parent7d1072dd3374a0aa22637a0fd4a17a4ddd064110 (diff)
Automated g4 rollback of changelist 179983419
PiperOrigin-RevId: 180000981
Diffstat (limited to 'tensorflow/compiler/xla/service/cpu/runtime_fft.cc')
-rw-r--r--tensorflow/compiler/xla/service/cpu/runtime_fft.cc37
1 files changed, 0 insertions, 37 deletions
diff --git a/tensorflow/compiler/xla/service/cpu/runtime_fft.cc b/tensorflow/compiler/xla/service/cpu/runtime_fft.cc
deleted file mode 100644
index 848d2d2241..0000000000
--- a/tensorflow/compiler/xla/service/cpu/runtime_fft.cc
+++ /dev/null
@@ -1,37 +0,0 @@
-/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-==============================================================================*/
-
-#include "tensorflow/compiler/xla/service/cpu/runtime_fft.h"
-
-#define EIGEN_USE_THREADS
-
-#include "tensorflow/compiler/xla/executable_run_options.h"
-#include "tensorflow/compiler/xla/service/cpu/runtime_fft_impl.h"
-#include "tensorflow/core/platform/dynamic_annotations.h"
-#include "tensorflow/core/platform/types.h"
-
-using tensorflow::int32;
-using tensorflow::int64;
-
-TF_ATTRIBUTE_NO_SANITIZE_MEMORY void __xla_cpu_runtime_EigenFft(
- const void* run_options_ptr, void* out, void* operand, int32 fft_type,
- int32 fft_rank, int64 input_batch, int64 fft_length0, int64 fft_length1,
- int64 fft_length2) {
- const xla::ExecutableRunOptions* run_options =
- static_cast<const xla::ExecutableRunOptions*>(run_options_ptr);
- tensorflow::xla::EigenFftImpl(*run_options->intra_op_thread_pool(), out,
- operand, fft_type, fft_rank, input_batch,
- fft_length0, fft_length1, fft_length2);
-}