/* Copyright 2015 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 #include #include #include "tensorflow/core/framework/op_kernel.h" #include "tensorflow/core/framework/register_types.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/framework/tensor_shape.h" #include "tensorflow/core/lib/core/status.h" namespace tensorflow { template class ListDiffOp : public OpKernel { public: explicit ListDiffOp(OpKernelConstruction* context) : OpKernel(context) { const DataType dt = DataTypeToEnum::v(); const DataType dtidx = DataTypeToEnum::v(); OP_REQUIRES_OK(context, context->MatchSignature({dt, dt}, {dt, dtidx})); } void Compute(OpKernelContext* context) override { const Tensor& x = context->input(0); const Tensor& y = context->input(1); OP_REQUIRES(context, TensorShapeUtils::IsVector(x.shape()), errors::InvalidArgument("x should be a 1D vector.")); OP_REQUIRES(context, TensorShapeUtils::IsVector(y.shape()), errors::InvalidArgument("y should be a 1D vector.")); const auto Tx = x.vec(); const size_t x_size = Tx.size(); const auto Ty = y.vec(); const size_t y_size = Ty.size(); OP_REQUIRES(context, x_size < std::numeric_limits::max(), errors::InvalidArgument("x too large for int32 indexing")); std::unordered_set y_set; y_set.reserve(y_size); for (size_t i = 0; i < y_size; ++i) { y_set.insert(Ty(i)); } // Compute the size of the output. int64 out_size = 0; for (size_t i = 0; i < x_size; ++i) { if (y_set.count(Tx(i)) == 0) { ++out_size; } } // Allocate and populate outputs. Tensor* out = nullptr; OP_REQUIRES_OK(context, context->allocate_output(0, {out_size}, &out)); auto Tout = out->vec(); Tensor* indices = nullptr; OP_REQUIRES_OK(context, context->allocate_output(1, {out_size}, &indices)); auto Tindices = indices->vec(); for (Tidx i = 0, p = 0; i < static_cast(x_size); ++i) { if (y_set.count(Tx(i)) == 0) { OP_REQUIRES(context, p < out_size, errors::InvalidArgument( "Tried to set output index ", p, " when output Tensor only had ", out_size, " elements. Check that your " "input tensors are not being concurrently mutated.")); Tout(p) = Tx(i); Tindices(p) = i; p++; } } } }; #define REGISTER_LISTDIFF(type) \ REGISTER_KERNEL_BUILDER(Name("ListDiff") \ .Device(DEVICE_CPU) \ .TypeConstraint("T") \ .TypeConstraint("out_idx"), \ ListDiffOp) \ REGISTER_KERNEL_BUILDER(Name("ListDiff") \ .Device(DEVICE_CPU) \ .TypeConstraint("T") \ .TypeConstraint("out_idx"), \ ListDiffOp) TF_CALL_REAL_NUMBER_TYPES(REGISTER_LISTDIFF); REGISTER_LISTDIFF(string); #undef REGISTER_LISTDIFF } // namespace tensorflow