/* Copyright (c) 2016 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. */ #include "paddle/fluid/operators/save_op.h" #include #include #include #include #include namespace paddle { namespace operators { class SaveOp : public framework::OperatorWithKernel { public: using framework::OperatorWithKernel::OperatorWithKernel; void InferShape(framework::InferShapeContext *ctx) const override {} protected: phi::KernelKey GetExpectedKernelType( const framework::ExecutionContext &ctx) const override { auto data_type = OperatorWithKernel::IndicateVarDataType(ctx, "X"); return phi::KernelKey(data_type, ctx.GetPlace()); } }; class SaveOpProtoMaker : public framework::OpProtoAndCheckerMaker { public: void Make() override { AddInput("X", "(Tensor ) Input phi::DenseTensor and SelectedRows to be saved"); AddComment(R"DOC( Save operator This operator will serialize and write phi::DenseTensor / SelectedRows variable to file on disk. )DOC"); AddAttr("overwrite", "(boolean, default true)" "Overwrite the output file if exist") .SetDefault(true); AddAttr("save_as_fp16", "(boolean, default false)" "If true, the tensor will be converted to float16 data " "type and then saved. Otherwise, the tensor will be " "directly saved without data type conversion.") .SetDefault(false); AddAttr("file_path", "(string)" "The \"file_path\" where the variable will be saved.") .AddCustomChecker( [](const std::string &path) { return !path.empty(); }); AddOutput(LOOKUP_TABLE_PATH, "(string)" "for pserver: The \"kLookupTablePath\" where checkpoint notify " "to save lookup table variables" " to directory specified.") .AsDispensable(); } }; class SaveOpVarTypeInference : public framework::VarTypeInference { public: void operator()(framework::InferVarTypeContext *ctx) const override { auto var_type = framework::proto::VarType::RAW; ctx->InsertVar(LOOKUP_TABLE_PATH, var_type); } }; } // namespace operators } // namespace paddle namespace ops = paddle::operators; REGISTER_OPERATOR(save, ops::SaveOp, ops::SaveOpProtoMaker, ops::SaveOpVarTypeInference); PD_REGISTER_KERNEL(save, CPU, ALL_LAYOUT, ops::SaveKernel, float, double, int, uint8_t, int8_t, int16_t, int64_t, phi::dtype::float16, phi::dtype::bfloat16) {} PD_REGISTER_KERNEL(save_sr, CPU, ALL_LAYOUT, ops::SaveSelectedRowsKernel, float, double, int, uint8_t, int8_t, int16_t, int64_t, phi::dtype::float16, phi::dtype::bfloat16) {} #if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP) PD_REGISTER_KERNEL(save, GPU, ALL_LAYOUT, ops::SaveKernel, float, double, int, uint8_t, int8_t, int16_t, int64_t, phi::dtype::float16, phi::dtype::bfloat16) {} PD_REGISTER_KERNEL(save_sr, GPU, ALL_LAYOUT, ops::SaveSelectedRowsKernel, float, double, int, uint8_t, int8_t, int16_t, int64_t, phi::dtype::float16, phi::dtype::bfloat16) {} #endif