/* Copyright 2016 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. ==============================================================================*/ // See docs in ../ops/io_ops.cc. #include #include #include "tensorflow/core/framework/op_kernel.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/framework/types.h" #include "tensorflow/core/framework/types.pb.h" #include "tensorflow/core/kernels/bounds_check.h" #include "tensorflow/core/kernels/save_restore_tensor.h" #include "tensorflow/core/lib/core/status.h" #include "tensorflow/core/lib/io/path.h" #include "tensorflow/core/platform/env.h" #include "tensorflow/core/platform/logging.h" #include "tensorflow/core/platform/types.h" #include "tensorflow/core/util/saved_tensor_slice_util.h" #include "tensorflow/core/util/tensor_bundle/tensor_bundle.h" #include "tensorflow/core/util/tensor_slice_reader.h" namespace tensorflow { namespace { // Shared validations of the inputs to the SaveV2 and RestoreV2 ops. void ValidateInputs(bool is_save_op, OpKernelContext* context, const Tensor& prefix, const Tensor& tensor_names, const Tensor& shape_and_slices) { const int kFixedInputs = 3; // Prefix, tensor names, shape_and_slices. const int num_tensors = static_cast(tensor_names.NumElements()); OP_REQUIRES( context, prefix.NumElements() == 1, errors::InvalidArgument("Input prefix should have a single element, got ", prefix.NumElements(), " instead.")); OP_REQUIRES(context, TensorShapeUtils::IsVector(tensor_names.shape()) && TensorShapeUtils::IsVector(shape_and_slices.shape()), errors::InvalidArgument( "Input tensor_names and shape_and_slices " "should be an 1-D tensors, got ", tensor_names.shape().DebugString(), " and ", shape_and_slices.shape().DebugString(), " instead.")); OP_REQUIRES(context, tensor_names.NumElements() == shape_and_slices.NumElements(), errors::InvalidArgument("tensor_names and shape_and_slices " "have different number of elements: ", tensor_names.NumElements(), " vs. ", shape_and_slices.NumElements())); OP_REQUIRES(context, FastBoundsCheck(tensor_names.NumElements() + kFixedInputs, std::numeric_limits::max()), errors::InvalidArgument("Too many inputs to the op")); OP_REQUIRES( context, shape_and_slices.NumElements() == num_tensors, errors::InvalidArgument("Expected ", num_tensors, " elements in shapes_and_slices, but got ", context->input(2).NumElements())); if (is_save_op) { OP_REQUIRES(context, context->num_inputs() == num_tensors + kFixedInputs, errors::InvalidArgument( "Got ", num_tensors, " tensor names but ", context->num_inputs() - kFixedInputs, " tensors.")); OP_REQUIRES(context, context->num_inputs() == num_tensors + kFixedInputs, errors::InvalidArgument( "Expected a total of ", num_tensors + kFixedInputs, " inputs as input #1 (which is a string " "tensor of saved names) contains ", num_tensors, " names, but received ", context->num_inputs(), " inputs")); } } } // namespace // Saves a list of named tensors using the tensor bundle library. class SaveV2 : public OpKernel { public: explicit SaveV2(OpKernelConstruction* context) : OpKernel(context) {} void Compute(OpKernelContext* context) override { const Tensor& prefix = context->input(0); const Tensor& tensor_names = context->input(1); const Tensor& shape_and_slices = context->input(2); ValidateInputs(true /* is save op */, context, prefix, tensor_names, shape_and_slices); const int kFixedInputs = 3; // Prefix, tensor names, shape_and_slices. const int num_tensors = static_cast(tensor_names.NumElements()); const string& prefix_string = prefix.scalar()(); const auto& tensor_names_flat = tensor_names.flat(); const auto& shape_and_slices_flat = shape_and_slices.flat(); BundleWriter writer(Env::Default(), prefix_string); OP_REQUIRES_OK(context, writer.status()); VLOG(1) << "BundleWriter, prefix_string: " << prefix_string; for (int i = 0; i < num_tensors; ++i) { const string& tensor_name = tensor_names_flat(i); const Tensor& tensor = context->input(i + kFixedInputs); if (!shape_and_slices_flat(i).empty()) { const string& shape_spec = shape_and_slices_flat(i); TensorShape shape; TensorSlice slice(tensor.dims()); TensorShape slice_shape; OP_REQUIRES_OK(context, checkpoint::ParseShapeAndSlice( shape_spec, &shape, &slice, &slice_shape)); OP_REQUIRES(context, slice_shape.IsSameSize(tensor.shape()), errors::InvalidArgument("Slice in shape_and_slice " "specification does not match the " "shape of the tensor to save: ", shape_spec, ", tensor: ", tensor.shape().DebugString())); OP_REQUIRES_OK(context, writer.AddSlice(tensor_name, shape, slice, tensor)); } else { OP_REQUIRES_OK(context, writer.Add(tensor_name, tensor)); } } OP_REQUIRES_OK(context, writer.Finish()); } }; REGISTER_KERNEL_BUILDER(Name("SaveV2").Device(DEVICE_CPU), SaveV2); // Restores a list of named tensors from a tensor bundle (V2 checkpoint format). class RestoreV2 : public OpKernel { public: explicit RestoreV2(OpKernelConstruction* context) : OpKernel(context) { OP_REQUIRES_OK(context, context->GetAttr("dtypes", &dtypes_)); } void Compute(OpKernelContext* context) override { const Tensor& prefix = context->input(0); const Tensor& tensor_names = context->input(1); const Tensor& shape_and_slices = context->input(2); OP_REQUIRES(context, tensor_names.NumElements() == dtypes_.size(), errors::InvalidArgument("Got ", tensor_names.NumElements(), " tensor names, but ", dtypes_.size(), " expected dtypes.")); ValidateInputs(false /* not save op */, context, prefix, tensor_names, shape_and_slices); const string& prefix_string = prefix.scalar()(); // Intention: we plan to use the RestoreV2 op as a backward-compatible // reader as we upgrade to the V2 format. This allows transparent upgrade. // We here attempt to read a V1 checkpoint, if "prefix_string" does not // refer to a V2 checkpoint. Env* env = Env::Default(); std::vector paths; if (!env->GetMatchingPaths(MetaFilename(prefix_string), &paths).ok() || paths.empty()) { // Cannot find V2's metadata file, so "prefix_string" does not point to a // V2 checkpoint. Invokes the V1 read path instead. for (size_t i = 0; i < tensor_names.NumElements(); ++i) { RestoreTensor(context, &checkpoint::OpenTableTensorSliceReader, /* preferred_shard */ -1, /* restore_slice */ true, /* restore_index */ i); if (!context->status().ok()) { return; } } return; } // If found, invokes the V2 reader. OP_REQUIRES_OK(context, RestoreTensorsV2(context, prefix, tensor_names, shape_and_slices, dtypes_)); } private: // Expected dtypes of the to-restore tensors. std::vector dtypes_; }; REGISTER_KERNEL_BUILDER(Name("RestoreV2").Device(DEVICE_CPU), RestoreV2); // The final step in saving sharded V2 checkpoints: merges metadata files. class MergeV2Checkpoints : public OpKernel { public: explicit MergeV2Checkpoints(OpKernelConstruction* context) : OpKernel(context) { OP_REQUIRES_OK(context, context->GetAttr("delete_old_dirs", &delete_old_dirs_)); } void Compute(OpKernelContext* context) override { const Tensor& checkpoint_prefixes = context->input(0); const Tensor& destination_prefix = context->input(1); OP_REQUIRES(context, TensorShapeUtils::IsVector(checkpoint_prefixes.shape()), errors::InvalidArgument( "Input checkpoint_prefixes should be an 1-D tensor, got ", checkpoint_prefixes.shape().DebugString(), " instead.")); OP_REQUIRES(context, TensorShapeUtils::IsScalar(destination_prefix.shape()), errors::InvalidArgument( "Input destination_prefix should be a scalar tensor, got ", destination_prefix.shape().DebugString(), " instead.")); const gtl::ArraySlice input_prefixes = gtl::ArraySlice(checkpoint_prefixes.flat()); Env* env = Env::Default(); const string& merged_prefix = destination_prefix.scalar()(); OP_REQUIRES_OK( context, tensorflow::MergeBundles(env, input_prefixes, merged_prefix)); if (delete_old_dirs_) { const string merged_dir(io::Dirname(merged_prefix)); for (const string& input_prefix : input_prefixes) { const string dirname(io::Dirname(input_prefix)); if (dirname == merged_dir) continue; Status status = env->DeleteDir(dirname); // For sharded save, only the first delete will go through and all // others will hit NotFound. Use vlog to be less verbose. if (!status.ok()) VLOG(1) << status; } } } private: // On merge, whether or not to delete the input (temporary) directories. bool delete_old_dirs_; }; REGISTER_KERNEL_BUILDER(Name("MergeV2Checkpoints").Device(DEVICE_CPU), MergeV2Checkpoints); } // namespace tensorflow