save_op.cc 6.6 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Y
Yu Yang 已提交
2

L
Luo Tao 已提交
3 4 5
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
Y
Yu Yang 已提交
6

L
Luo Tao 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
Y
Yu Yang 已提交
8

L
Luo Tao 已提交
9 10 11 12 13
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. */
Y
Yu Yang 已提交
14 15 16 17 18 19

#include <stdint.h>
#include <sys/stat.h>
#include <fstream>
#include <numeric>

Y
Yi Wang 已提交
20
#include "paddle/fluid/framework/data_type.h"
K
Kexin Zhao 已提交
21
#include "paddle/fluid/framework/data_type_transform.h"
Y
Yi Wang 已提交
22 23 24
#include "paddle/fluid/framework/framework.pb.h"
#include "paddle/fluid/framework/lod_tensor.h"
#include "paddle/fluid/framework/op_registry.h"
T
tangwei12 已提交
25
#include "paddle/fluid/framework/selected_rows.h"
T
bug fix  
tangwei12 已提交
26
#include "paddle/fluid/framework/variable.h"
Y
Yi Wang 已提交
27
#include "paddle/fluid/platform/device_context.h"
Y
Yu Yang 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67

namespace paddle {
namespace operators {

// TODO(yuyang18): If the functions below are needed by other files, move them
// to paddle::filesystem namespace.
constexpr char kSEP = '/';
static bool FileExists(const std::string &filepath) {
  struct stat buffer;
  return (stat(filepath.c_str(), &buffer) == 0);
}

static std::string DirName(const std::string &filepath) {
  auto pos = filepath.rfind(kSEP);
  if (pos == std::string::npos) {
    return "";
  }
  return filepath.substr(0, pos);
}

static void MkDir(const char *path) {
  if (mkdir(path, 0755)) {
    PADDLE_ENFORCE_EQ(errno, EEXIST, "%s mkdir failed!", path);
  }
}

static void MkDirRecursively(const char *fullpath) {
  if (*fullpath == '\0') return;  // empty string
  if (FileExists(fullpath)) return;

  MkDirRecursively(DirName(fullpath).c_str());
  MkDir(fullpath);
}

class SaveOp : public framework::OperatorBase {
 public:
  SaveOp(const std::string &type, const framework::VariableNameMap &inputs,
         const framework::VariableNameMap &outputs,
         const framework::AttributeMap &attrs)
      : OperatorBase(type, inputs, outputs, attrs) {}
68 69 70 71

 private:
  void RunImpl(const framework::Scope &scope,
               const platform::Place &place) const override {
Y
Yu Yang 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
    auto filename = Attr<std::string>("file_path");
    auto overwrite = Attr<bool>("overwrite");

    if (FileExists(filename) && !overwrite) {
      PADDLE_THROW("%s is existed, cannot save to it when overwrite=false",
                   filename, overwrite);
    }

    MkDirRecursively(DirName(filename).c_str());

    auto iname = Input("X");
    auto *var = scope.FindVar(iname);
    PADDLE_ENFORCE(var != nullptr, "Cannot find variable %s for save_op",
                   iname);

T
tangwei12 已提交
87 88 89
    if (var->IsType<framework::LoDTensor>()) {
      SaveLodTensor(filename, place, var);
    } else if (var->IsType<framework::SelectedRows>()) {
T
tangwei12 已提交
90
      SaveSelectedRows(scope, place, var);
T
tangwei12 已提交
91 92 93 94 95 96 97
    } else {
      PADDLE_ENFORCE(
          false,
          "SaveOp only support LoDTensor and SelectedRows, %s has wrong type",
          iname);
    }
  }
Y
Yu Yang 已提交
98

T
bug fix  
tangwei12 已提交
99 100
  void SaveLodTensor(const std::string &filename, const platform::Place &place,
                     framework::Variable *var) const {
Y
Yu Yang 已提交
101
    auto &tensor = var->Get<framework::LoDTensor>();
D
dzhwinter 已提交
102 103

    // get device context from pool
Y
Yu Yang 已提交
104 105
    platform::DeviceContextPool &pool = platform::DeviceContextPool::Instance();
    auto &dev_ctx = *pool.Get(place);
D
dzhwinter 已提交
106

T
tangwei12 已提交
107 108 109 110 111 112
    // FIXME(yuyang18): We save variable to local file now, but we should change
    // it to save an output stream.
    std::ofstream fout(filename);
    PADDLE_ENFORCE(static_cast<bool>(fout), "Cannot open %s to write",
                   filename);

T
bug fix  
tangwei12 已提交
113
    auto save_as_fp16 = Attr<bool>("save_as_fp16");
K
Kexin Zhao 已提交
114 115 116 117 118 119 120 121
    auto in_dtype = framework::ToDataType(tensor.type());
    auto out_dtype = save_as_fp16 ? framework::proto::VarType::FP16 : in_dtype;

    if (in_dtype != out_dtype) {
      auto in_kernel_type = framework::OpKernelType(in_dtype, place);
      auto out_kernel_type = framework::OpKernelType(out_dtype, place);
      framework::LoDTensor out;
      framework::TransDataType(in_kernel_type, out_kernel_type, tensor, &out);
K
Kexin Zhao 已提交
122 123
      // copy LoD info to the new tensor
      out.set_lod(tensor.lod());
K
Kexin Zhao 已提交
124 125 126 127
      framework::SerializeToStream(fout, out, dev_ctx);
    } else {
      framework::SerializeToStream(fout, tensor, dev_ctx);
    }
T
bug fix  
tangwei12 已提交
128
    fout.close();
T
tangwei12 已提交
129 130
  }

T
tangwei12 已提交
131
  void SaveSelectedRows(const framework::Scope &scope,
T
bug fix  
tangwei12 已提交
132 133
                        const platform::Place &place,
                        framework::Variable *var) const {
T
tangwei12 已提交
134 135 136 137 138 139 140 141

    auto lt_varname = string::Sprintf("%s.path", Input("X"));
    auto *lt_var = scope.FindVar(lt_varname)->GetMutable<std::string>();
    PADDLE_ENFORCE(lt_var != nullptr, "Cannot find variable %s for SaveSelectedRows",
                   lt_varname);
    std::string filename = lt_var->data();
    VLOG(4) << "SaveSelectedRows get File name: " << filename;

T
tangwei12 已提交
142 143 144 145 146 147 148 149 150 151 152 153
    auto &selectedRows = var->Get<framework::SelectedRows>();

    // get device context from pool
    platform::DeviceContextPool &pool = platform::DeviceContextPool::Instance();
    auto &dev_ctx = *pool.Get(place);

    // FIXME(yuyang18): We save variable to local file now, but we should change
    // it to save an output stream.
    std::ofstream fout(filename);
    PADDLE_ENFORCE(static_cast<bool>(fout), "Cannot open %s to write",
                   filename);
    framework::SerializeToStream(fout, selectedRows, dev_ctx);
T
bug fix  
tangwei12 已提交
154
    fout.close();
Y
Yu Yang 已提交
155 156 157 158 159
  }
};

class SaveOpProtoMaker : public framework::OpProtoAndCheckerMaker {
 public:
Y
Yu Yang 已提交
160
  void Make() override {
T
tangwei12 已提交
161
    AddInput("X", "(Tensor ) Input LoDTensor and SelectedRows to be saved");
162 163 164
    AddComment(R"DOC(
Save operator

T
tangwei12 已提交
165
This operator will serialize and write a tensor/selected rows variable to file on disk.
Y
Yu Yang 已提交
166
)DOC");
167 168 169
    AddAttr<bool>("overwrite",
                  "(boolean, default true)"
                  "Overwrite the output file if exist")
Y
Yu Yang 已提交
170
        .SetDefault(true);
K
Kexin Zhao 已提交
171 172 173 174 175 176
    AddAttr<bool>("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);
Y
Yu Yang 已提交
177
    AddAttr<std::string>("file_path",
178 179
                         "(string)"
                         "The \"file_path\" where the variable will be saved.")
Y
Yu Yang 已提交
180 181 182 183 184 185 186 187 188 189 190
        .AddCustomChecker(
            [](const std::string &path) { return !path.empty(); });
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;

REGISTER_OPERATOR(save, ops::SaveOp, ops::SaveOpProtoMaker);