aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/concat_op.h
diff options
context:
space:
mode:
authorGravatar Josh Levenberg <josh11b@tensorflow.org>2016-02-23 13:53:22 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-02-24 15:31:20 -0800
commit2408e359cc9e51bedf561fc62c0a40e337fa63b9 (patch)
tree09bdde4aa893a7466a2258099804ee59ca049412 /tensorflow/core/kernels/concat_op.h
parente7c6ffde2e212c2b6998fbb162ba60c5f5026573 (diff)
Give tensorflow/core/kernels/ its own BUILD file.
Change: 115379524
Diffstat (limited to 'tensorflow/core/kernels/concat_op.h')
-rw-r--r--tensorflow/core/kernels/concat_op.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/tensorflow/core/kernels/concat_op.h b/tensorflow/core/kernels/concat_op.h
deleted file mode 100644
index 29fd86d18d..0000000000
--- a/tensorflow/core/kernels/concat_op.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/* Copyright 2015 Google Inc. 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.
-==============================================================================*/
-
-#ifndef TENSORFLOW_KERNELS_CONCAT_OP_H_
-#define TENSORFLOW_KERNELS_CONCAT_OP_H_
-
-#include <vector>
-
-#include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor"
-#include "tensorflow/core/framework/device_base.h"
-
-namespace tensorflow {
-
-// Assumes all inputs are nonempty
-template <typename T>
-void ConcatCPU(DeviceBase* d,
- const std::vector<
- std::unique_ptr<typename TTypes<T, 2>::ConstMatrix>>& inputs,
- typename TTypes<T, 2>::Matrix* output);
-
-// Assumes all inputs are nonempty
-template <typename T>
-void ConcatGPU(const Eigen::GpuDevice& d,
- const std::vector<
- std::unique_ptr<typename TTypes<T, 2>::ConstMatrix>>& inputs,
- typename TTypes<T, 2>::Matrix* output);
-
-} // namespace tensorflow
-
-#endif // TENSORFLOW_KERNELS_CONCAT_OP_H_