io.cc 7.1 KB
Newer Older
1
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14

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. */

Y
Yi Wang 已提交
15
#include "paddle/fluid/inference/io.h"
16

17
#include <algorithm>
18
#include <fstream>
19
#include <vector>
Y
Yi Wang 已提交
20 21
#include "paddle/fluid/framework/block_desc.h"
#include "paddle/fluid/framework/feed_fetch_type.h"
22
#include "paddle/fluid/framework/op_registry.h"
X
version  
Xin Pan 已提交
23
#include "paddle/fluid/framework/version.h"
T
tensor-tang 已提交
24
#include "paddle/fluid/platform/cpu_helper.h"
25
#include "paddle/fluid/pybind/pybind.h"
26

W
wanghaoshuang 已提交
27 28
DEFINE_string(devices, "", "The devices to be used which is joined by comma.");
DEFINE_bool(init_p2p, false, "Whether to init p2p.");
29 30
DEFINE_int32(math_num_threads, 1,
             "Number of threads used to run math functions.");
31

32
namespace paddle {
33
namespace inference {
34

35 36
void Init(const std::vector<std::string> argv) {
  framework::InitGflags(argv);
T
tensor-tang 已提交
37
  platform::SetNumThreads(FLAGS_math_num_threads);
38 39 40 41 42 43 44 45 46
  // init devices
  std::vector<int> devices;
  std::string token;
  std::istringstream tokenStream(FLAGS_devices);
  while (std::getline(tokenStream, token, ',')) {
    devices.push_back(std::stoi(token));
  }
  framework::InitDevices(FLAGS_init_p2p, devices);
}
47

48
void ReadBinaryFile(const std::string& filename, std::string* contents) {
49
  std::ifstream fin(filename, std::ios::in | std::ios::binary);
50 51 52
  PADDLE_ENFORCE_EQ(
      fin.is_open(), true,
      platform::errors::Unavailable("Failed to open file %s.", filename));
53
  fin.seekg(0, std::ios::end);
54 55
  contents->clear();
  contents->resize(fin.tellg());
56
  fin.seekg(0, std::ios::beg);
57
  fin.read(&(contents->at(0)), contents->size());
58
  fin.close();
59 60
}

L
Liu Yiqun 已提交
61 62
bool IsPersistable(const framework::VarDesc* var) {
  if (var->Persistable() &&
63
      var->GetType() != framework::proto::VarType::FEED_MINIBATCH &&
64 65
      var->GetType() != framework::proto::VarType::FETCH_LIST &&
      var->GetType() != framework::proto::VarType::RAW) {
L
Liu Yiqun 已提交
66
    return true;
67 68 69 70
  }
  return false;
}

71
void LoadPersistables(framework::Executor* executor, framework::Scope* scope,
72
                      const framework::ProgramDesc& main_program,
73
                      const std::string& dirname,
T
Tao Luo 已提交
74
                      const std::string& param_filename,
T
Tao Luo 已提交
75
                      bool model_from_memory = false) {
K
kexinzhao 已提交
76
  const framework::BlockDesc& global_block = main_program.Block(0);
77

78 79
  framework::ProgramDesc* load_program = new framework::ProgramDesc();
  framework::BlockDesc* load_block = load_program->MutableBlock(0);
80 81
  std::vector<std::string> paramlist;

K
kexinzhao 已提交
82
  for (auto* var : global_block.AllVars()) {
L
Liu Yiqun 已提交
83
    if (IsPersistable(var)) {
84
      VLOG(4) << "persistable variable's name: " << var->Name();
85 86

      framework::VarDesc* new_var = load_block->Var(var->Name());
F
fengjiayi 已提交
87
      new_var->SetShape(var->GetShape());
88 89
      new_var->SetDataType(var->GetDataType());
      new_var->SetType(var->GetType());
90 91 92 93 94 95

      if (var->GetType() !=
          framework::proto::VarType::Type::VarType_Type_SELECTED_ROWS) {
        new_var->SetLoDLevel(var->GetLoDLevel());
      }

96 97
      new_var->SetPersistable(true);

98 99 100 101 102 103 104 105 106 107
      if (!param_filename.empty()) {
        paramlist.push_back(new_var->Name());
      } else {
        // append_op
        framework::OpDesc* op = load_block->AppendOp();
        op->SetType("load");
        op->SetOutput("Out", {new_var->Name()});
        op->SetAttr("file_path", {dirname + "/" + new_var->Name()});
        op->CheckAttrs();
      }
108 109
    }
  }
110 111 112 113 114 115 116 117 118

  if (!param_filename.empty()) {
    // sort paramlist to have consistent ordering
    std::sort(paramlist.begin(), paramlist.end());
    // append just the load_combine op
    framework::OpDesc* op = load_block->AppendOp();
    op->SetType("load_combine");
    op->SetOutput("Out", paramlist);
    op->SetAttr("file_path", {param_filename});
T
Tao Luo 已提交
119
    op->SetAttr("model_from_memory", {model_from_memory});
120 121 122
    op->CheckAttrs();
  }

123
  executor->Run(*load_program, scope, 0, true, true);
124

125
  delete load_program;
126
}
127

128 129
std::unique_ptr<framework::ProgramDesc> Load(framework::Executor* executor,
                                             framework::Scope* scope,
K
kexinzhao 已提交
130
                                             const std::string& dirname) {
131 132
  std::string model_filename = dirname + "/__model__";
  std::string program_desc_str;
M
minqiyang 已提交
133
  VLOG(3) << "loading model from " << model_filename;
134
  ReadBinaryFile(model_filename, &program_desc_str);
135 136 137

  std::unique_ptr<framework::ProgramDesc> main_program(
      new framework::ProgramDesc(program_desc_str));
138 139 140 141
  PADDLE_ENFORCE_EQ(
      framework::IsProgramVersionSupported(main_program->Version()), true,
      platform::errors::Unavailable("Model version %ld is not supported.",
                                    main_program->Version()));
142

T
tianshuo78520a 已提交
143
  // model_from_memory is false in separate parameters.
T
Tao Luo 已提交
144
  LoadPersistables(executor, scope, *main_program, dirname, "",
T
Tao Luo 已提交
145
                   false /* model_from_memory */);
146 147 148
  return main_program;
}

T
Tao Luo 已提交
149 150 151
std::unique_ptr<framework::ProgramDesc> Load(
    framework::Executor* executor, framework::Scope* scope,
    const std::string& prog_filename, const std::string& param_filename) {
152
  std::string program_desc_str;
T
Tao Luo 已提交
153
  ReadBinaryFile(prog_filename, &program_desc_str);
154

K
kexinzhao 已提交
155 156
  std::unique_ptr<framework::ProgramDesc> main_program(
      new framework::ProgramDesc(program_desc_str));
157 158 159 160
  PADDLE_ENFORCE_EQ(
      framework::IsProgramVersionSupported(main_program->Version()), true,
      platform::errors::Unavailable("Model version %ld is not supported.",
                                    main_program->Version()));
161

T
Tao Luo 已提交
162
  LoadPersistables(executor, scope, *main_program, "", param_filename,
T
Tao Luo 已提交
163
                   false /* model_from_memory */);
164 165 166
  return main_program;
}

T
Tao Luo 已提交
167
std::unique_ptr<framework::ProgramDesc> LoadFromMemory(
T
Tao Luo 已提交
168
    framework::Executor* executor, framework::Scope* scope,
T
Tao Luo 已提交
169 170 171
    const std::string& prog_buffer, const std::string& param_buffer) {
  std::unique_ptr<framework::ProgramDesc> main_program(
      new framework::ProgramDesc(prog_buffer));
172 173 174 175
  PADDLE_ENFORCE_EQ(
      framework::IsProgramVersionSupported(main_program->Version()), true,
      platform::errors::Unavailable("Model version %ld is not supported.",
                                    main_program->Version()));
T
Tao Luo 已提交
176 177 178 179

  LoadPersistables(executor, scope, *main_program, "", param_buffer,
                   true /* model_filename */);
  return main_program;
T
Tao Luo 已提交
180 181
}

182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
void SaveVars(const framework::Scope& scope,
              const std::vector<std::string>& vars, const std::string& dirname,
              bool predicate) {
  framework::ProgramDesc prog;
  auto* block = prog.MutableBlock(0);
  auto* op = block->AppendOp();
  op->SetType("save_combine");
  op->SetInput("X", vars);
  op->SetAttr("file_path", dirname + "/param");
  op->CheckAttrs();

  platform::CPUPlace place;
  framework::Executor exe(place);
  exe.Run(prog, const_cast<framework::Scope*>(&scope), 0, true, true);
}

198
}  // namespace inference
199
}  // namespace paddle