/* Copyright (c) 2018 PaddlePaddle 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. */ #pragma once #include #include #include #include #include #include #include "paddle/fluid/framework/convert_utils.h" #include "paddle/fluid/framework/data_type.h" #include "paddle/fluid/framework/data_type_transform.h" #include "paddle/fluid/framework/lod_tensor.h" #include "paddle/fluid/framework/op_registry.h" #include "paddle/fluid/framework/raw_tensor.h" #include "paddle/fluid/framework/string_array.h" #include "paddle/fluid/platform/device_context.h" #include "paddle/phi/backends/dynload/port.h" #include "paddle/phi/core/dense_tensor.h" #include "paddle/phi/core/serialization.h" namespace paddle { namespace operators { inline void SaveToMemory(const std::string& file_path, const std::ostringstream& ss, bool save_to_memory, std::string* output) { if (save_to_memory) { PADDLE_ENFORCE_NE(output, nullptr, phi::errors::InvalidArgument( "Cannot find variable Y for save_combine_op")); *output = ss.str(); } else { MkDirRecursively(DirName(file_path).c_str()); std::ofstream fout(file_path, std::ios::binary); PADDLE_ENFORCE_EQ(static_cast(fout), true, phi::errors::Unavailable( "Cannot open %s to save variables.", file_path)); fout << ss.str(); fout.close(); } } template void SaveCombineTensorKernel(const Context& dev_ctx, const std::vector& x, const std::string& file_path, bool overwrite, bool save_as_fp16, bool save_to_memory, phi::ExtendedTensor* out) { std::string* y = nullptr; if (out != nullptr) { auto raw_out = static_cast(out); y = raw_out->GetMutable(); } bool is_present = FileExists(file_path); if (is_present && !overwrite) { PADDLE_THROW(phi::errors::PreconditionNotMet( "%s exists! Cannot save_combine to it when overwrite is set to " "false.", file_path, overwrite)); } std::ostringstream ss; PADDLE_ENFORCE_GT(x.size(), 0UL, phi::errors::InvalidArgument( "The number of variables to be saved is %d, expect " "it to be greater than 0.", x.size())); for (size_t i = 0; i < x.size(); i++) { auto& tensor = *(x[i]); PADDLE_ENFORCE_EQ( tensor.IsInitialized(), true, phi::errors::InvalidArgument( "The Tensor with Index (%d) to be saved is not initialized.", i)); // Serialize tensors one by one // Check types to see if a fp16 transformation is required auto in_dtype = framework::TransToProtoVarType(tensor.dtype()); auto out_dtype = save_as_fp16 ? framework::proto::VarType::FP16 : in_dtype; if (in_dtype != out_dtype) { auto place = dev_ctx.GetPlace(); auto in_kernel_type = framework::OpKernelType(in_dtype, place); auto out_kernel_type = framework::OpKernelType(out_dtype, place); phi::DenseTensor out; framework::TransDataType(in_kernel_type, out_kernel_type, tensor, &out); // copy LoD info to the new tensor out.set_lod(tensor.lod()); phi::SerializeToStream(ss, out, dev_ctx); } else { phi::SerializeToStream(ss, tensor, dev_ctx); } } SaveToMemory(file_path, ss, save_to_memory, y); } template void SaveCombineVocabKernel( const Context& dev_ctx, const std::vector& inputs, const std::string& file_path, bool overwrite, bool save_as_fp16, bool save_to_memory, phi::ExtendedTensor* out) { std::string* y = nullptr; if (out != nullptr) { auto raw_out = static_cast(out); y = raw_out->GetMutable(); } std::vector x; x.reserve(inputs.size()); for (auto input : inputs) { x.push_back(static_cast(input)); } bool is_present = FileExists(file_path); if (is_present && !overwrite) { PADDLE_THROW(phi::errors::PreconditionNotMet( "%s exists! Cannot save_combine to it when overwrite is set to " "false.", file_path, overwrite)); } std::ostringstream ss; PADDLE_ENFORCE_GT(x.size(), 0UL, phi::errors::InvalidArgument( "The number of variables to be saved is %d, expect " "it to be greater than 0.", x.size())); for (size_t i = 0; i < x.size(); i++) { auto& tensor = *(x[i]); std::unordered_map data; for (auto it = tensor.begin(); it != tensor.end(); ++it) { std::string t; paddle::framework::ConvertWstrToStr(it->first, &t); data.emplace(t, it->second); } paddle::framework::StringMapToStream(ss, data); } SaveToMemory(file_path, ss, save_to_memory, y); } template class SaveCombineOpKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto place = ctx.GetPlace(); auto filename = ctx.Attr("file_path"); auto overwrite = ctx.Attr("overwrite"); auto save_as_fp16 = ctx.Attr("save_as_fp16"); auto save_to_memory = ctx.Attr("save_to_memory"); auto output = ctx.Output("Y"); auto inp_var_names = ctx.InputNames("X"); auto& inp_vars = ctx.MultiInputVar("X"); PADDLE_ENFORCE_GT(inp_var_names.size(), 0UL, platform::errors::InvalidArgument( "The number of variables to be saved is %d, expect " "it to be greater than 0.", inp_var_names.size())); // get device context from pool platform::DeviceContextPool& pool = platform::DeviceContextPool::Instance(); auto& dev_ctx = *pool.Get(place); for (size_t i = 0; i < inp_var_names.size(); i++) { PADDLE_ENFORCE_NOT_NULL( inp_vars[i], platform::errors::InvalidArgument("Cannot find variable %s to save.", inp_var_names[i])); PADDLE_ENFORCE_EQ( inp_vars[i]->IsType() || inp_vars[i]->IsType(), true, platform::errors::InvalidArgument( "SaveCombine operator only supports saving " "phi::DenseTensor or Vocab variable, %s has wrong type.", inp_var_names[i])); if (inp_vars.size() > 0 && inp_vars[0]->IsType()) { std::vector x(inp_vars.size()); for (auto inp_var : inp_vars) { x.push_back(&(inp_var->Get())); } SaveCombineTensorKernel(dev_ctx, x, filename, overwrite, save_as_fp16, save_to_memory, output); } else { std::vector x(inp_vars.size()); for (auto inp_var : inp_vars) { x.push_back(&(inp_var->Get())); } SaveCombineVocabKernel(dev_ctx, x, filename, overwrite, save_as_fp16, save_to_memory, output); } } } }; } // namespace operators } // namespace paddle