From 2408e359cc9e51bedf561fc62c0a40e337fa63b9 Mon Sep 17 00:00:00 2001 From: Josh Levenberg Date: Tue, 23 Feb 2016 13:53:22 -0800 Subject: Give tensorflow/core/kernels/ its own BUILD file. Change: 115379524 --- tensorflow/core/kernels/concat_op.h | 42 ------------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 tensorflow/core/kernels/concat_op.h (limited to 'tensorflow/core/kernels/concat_op.h') 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 - -#include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor" -#include "tensorflow/core/framework/device_base.h" - -namespace tensorflow { - -// Assumes all inputs are nonempty -template -void ConcatCPU(DeviceBase* d, - const std::vector< - std::unique_ptr::ConstMatrix>>& inputs, - typename TTypes::Matrix* output); - -// Assumes all inputs are nonempty -template -void ConcatGPU(const Eigen::GpuDevice& d, - const std::vector< - std::unique_ptr::ConstMatrix>>& inputs, - typename TTypes::Matrix* output); - -} // namespace tensorflow - -#endif // TENSORFLOW_KERNELS_CONCAT_OP_H_ -- cgit v1.2.3