/* 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/core/framework/partial_tensor_shape.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/graph/graph.h" #include "tensorflow/core/kernels/data/dataset.h" #include "tensorflow/core/util/batch_util.h" namespace tensorflow { namespace data { namespace { // See documentation in ../ops/dataset_ops.cc for a high-level // description of the following op. class TensorSliceDatasetOp : public DatasetOpKernel { public: explicit TensorSliceDatasetOp(OpKernelConstruction* ctx) : DatasetOpKernel(ctx) {} void MakeDataset(OpKernelContext* ctx, DatasetBase** output) override { OpInputList inputs; OP_REQUIRES_OK(ctx, ctx->input_list("components", &inputs)); std::vector components; components.reserve(inputs.size()); OP_REQUIRES(ctx, inputs[0].dims() > 0, errors::InvalidArgument( "All components must be at least 1-dimensional")); const int64 num_slices = inputs[0].dim_size(0); for (const Tensor& t : inputs) { components.push_back(t); OP_REQUIRES(ctx, t.dims() > 0, errors::InvalidArgument( "All components must be at least 1-dimensional")); OP_REQUIRES( ctx, t.dim_size(0) == num_slices, errors::InvalidArgument( "All components must have the same size in the 0th dimension")); } *output = new Dataset(ctx, std::move(components)); } private: class Dataset : public DatasetBase { public: explicit Dataset(OpKernelContext* ctx, std::vector tensors) : DatasetBase(DatasetContext(ctx)), tensors_(std::move(tensors)) { for (const Tensor& t : tensors_) { dtypes_.push_back(t.dtype()); gtl::InlinedVector partial_dim_sizes; // Handle scalar here. Check that everyone matches here? Or fail // at runtime? for (int i = 1; i < t.dims(); ++i) { partial_dim_sizes.push_back(t.dim_size(i)); } shapes_.emplace_back(std::move(partial_dim_sizes)); } } std::unique_ptr MakeIteratorInternal( const string& prefix) const override { return std::unique_ptr( new Iterator({this, strings::StrCat(prefix, "::TensorSlice")})); } const DataTypeVector& output_dtypes() const override { return dtypes_; } const std::vector& output_shapes() const override { return shapes_; } string DebugString() const override { return "TensorSliceDatasetOp::Dataset"; } protected: Status AsGraphDefInternal(SerializationContext* ctx, DatasetGraphDefBuilder* b, Node** output) const override { std::vector components; components.reserve(tensors_.size()); for (const Tensor& t : tensors_) { Node* node; std::vector>* input_list = ctx->input_list(); if (input_list) { TF_RETURN_IF_ERROR(b->AddPlaceholder(t, &node)); input_list->emplace_back(node->name(), t); } else { TF_RETURN_IF_ERROR(b->AddTensor(t, &node)); } components.emplace_back(node); } AttrValue dtypes; b->BuildAttrValue(dtypes_, &dtypes); TF_RETURN_IF_ERROR(b->AddDataset(this, {}, {{0, components}}, {{"Toutput_types", dtypes}}, output)); return Status::OK(); } private: class Iterator : public DatasetIterator { public: explicit Iterator(const Params& params) : DatasetIterator(params), i_(0), n_(params.dataset->tensors_[0].dim_size(0)) {} Status GetNextInternal(IteratorContext* ctx, std::vector* out_tensors, bool* end_of_sequence) override { mutex_lock l(mu_); if (i_ < n_) { out_tensors->clear(); out_tensors->reserve(dataset()->tensors_.size()); for (int i = 0; i < dataset()->tensors_.size(); ++i) { const Tensor& t = dataset()->tensors_[i]; Tensor t_slice(ctx->allocator({}), t.dtype(), TensorShape(dataset()->shapes_[i].dim_sizes())); TF_RETURN_IF_ERROR(batch_util::CopySliceToElement(t, &t_slice, i_)); out_tensors->emplace_back(std::move(t_slice)); } ++i_; *end_of_sequence = false; } else { *end_of_sequence = true; } return Status::OK(); } protected: Status SaveInternal(IteratorStateWriter* writer) override { mutex_lock l(mu_); TF_RETURN_IF_ERROR(writer->WriteScalar(full_name("i"), i_)); return Status::OK(); } Status RestoreInternal(IteratorContext* ctx, IteratorStateReader* reader) override { mutex_lock l(mu_); TF_RETURN_IF_ERROR(reader->ReadScalar(full_name("i"), &i_)); return Status::OK(); } private: mutex mu_; int64 i_ GUARDED_BY(mu_); const int64 n_; }; const std::vector tensors_; DataTypeVector dtypes_; std::vector shapes_; }; }; REGISTER_KERNEL_BUILDER(Name("TensorSliceDataset").Device(DEVICE_CPU), TensorSliceDatasetOp); } // namespace } // namespace data } // namespace tensorflow