table.h 4.5 KB
Newer Older
T
tangwei12 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
// Copyright (c) 2020 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 <assert.h>
#include <atomic>
#include <future>  // NOLINT
#include <memory>
#include <string>
#include <utility>
Z
zhaocaibei123 已提交
23
#include "paddle/fluid/distributed/common/afs_warpper.h"
24 25 26
#include "paddle/fluid/distributed/ps/table/accessor.h"
#include "paddle/fluid/distributed/ps/table/depends/sparse_utils.h"
#include "paddle/fluid/distributed/ps/table/graph/graph_node.h"
27 28 29 30
#include "paddle/fluid/framework/program_desc.h"
#include "paddle/fluid/framework/scope.h"
#include "paddle/fluid/platform/device_context.h"
#include "paddle/fluid/platform/place.h"
T
tangwei12 已提交
31 32 33 34
#include "paddle/fluid/string/string_helper.h"

namespace paddle {
namespace distributed {
Y
yaoxuefeng 已提交
35 36 37

enum ValueType { Sparse = 0, Dense = 1 };

38 39
struct TablePullContext {
  const uint64_t *keys = nullptr;
40
  PullSparseValue pull_value;
41 42 43 44
  float *values = nullptr;
  char **ptr_values = nullptr;
  std::vector<uint64_t> *geo_pull_keys = nullptr;  // for GEO
  std::vector<float> *geo_pull_values = nullptr;   // for GEO
Y
yaoxuefeng 已提交
45 46 47
};

struct TablePushContext {
48 49 50 51 52
  const uint64_t *keys = nullptr;
  const float *values = nullptr;
  const float **ptr_values = nullptr;
  const int64_t *push_steps = nullptr;  // for global step
  bool is_param = false;  // true: push param, false: push gradient
Y
yaoxuefeng 已提交
53 54 55 56
};

struct TableContext {
  ValueType value_type;
57
  TablePullContext pull_context;
Y
yaoxuefeng 已提交
58 59
  TablePushContext push_context;
  size_t num;
60
  bool use_ptr = false;
61
  uint32_t trainer_id;  // for GEO and global step
Y
yaoxuefeng 已提交
62 63
};

T
tangwei12 已提交
64 65 66 67
class Table {
 public:
  Table() {}
  virtual ~Table() {}
Z
zhaocaibei123 已提交
68
  virtual int32_t Initialize(const TableParameter &config,
69
                             const FsClientParameter &fs_config);
T
tangwei12 已提交
70

Y
yaoxuefeng 已提交
71 72
  virtual int32_t Pull(TableContext &context) = 0;
  virtual int32_t Push(TableContext &context) = 0;
T
tangwei12 已提交
73 74

  // only for barrier
Z
zhaocaibei123 已提交
75
  virtual int32_t Barrier(const uint32_t trainer_id,
T
tangwei12 已提交
76 77 78 79 80
                          const std::string barrier_type) {
    return 0;
  }

  // only for barrier table
Z
zhaocaibei123 已提交
81
  virtual int32_t SetTableMap(
T
tangwei12 已提交
82 83 84 85
      std::unordered_map<uint32_t, std::shared_ptr<Table>> *table_map) {
    return 0;
  }

86
  // only for tensor table
Z
zhaocaibei123 已提交
87
  virtual int32_t SetProgramEnv(
88 89 90 91 92
      framework::Scope *scope, platform::Place place,
      const std::vector<framework::ProgramDesc> *sub_program) {
    return 0;
  }

Z
zhaocaibei123 已提交
93
  virtual int32_t SetGlobalLR(float *lr) {
94 95 96 97
    _global_lr = lr;
    return 0;
  }

Z
zhaocaibei123 已提交
98
  virtual int32_t Pour() { return 0; }
T
tangwei12 已提交
99

Z
zhaocaibei123 已提交
100 101 102
  virtual void Clear() = 0;
  virtual int32_t Flush() = 0;
  virtual int32_t Shrink(const std::string &param) = 0;
T
tangwei12 已提交
103

Z
zhaocaibei123 已提交
104
  // 指定加载路径
Z
zhaocaibei123 已提交
105
  virtual int32_t Load(const std::string &path,
T
tangwei12 已提交
106
                       const std::string &converter) = 0;
Z
zhaocaibei123 已提交
107
  // 指定保存路径
Z
zhaocaibei123 已提交
108
  virtual int32_t Save(const std::string &path,
T
tangwei12 已提交
109 110
                       const std::string &converter) = 0;

Z
zhaocaibei123 已提交
111
  virtual int32_t SetShard(size_t shard_idx, size_t shard_num) {
T
tangwei12 已提交
112 113
    _shard_idx = shard_idx;
    _shard_num = shard_num;
Z
zhaocaibei123 已提交
114
    return InitializeShard();
T
tangwei12 已提交
115 116
  }

Z
zhaocaibei123 已提交
117
  inline std::shared_ptr<ValueAccessor> ValueAccesor() {
T
tangwei12 已提交
118 119 120
    return _value_accesor;
  }

Z
zhaocaibei123 已提交
121 122
  virtual void *GetShard(size_t shard_idx) = 0;
  virtual std::pair<int64_t, int64_t> PrintTableStat() { return {0, 0}; }
T
tangwei12 已提交
123 124

 protected:
Z
zhaocaibei123 已提交
125 126 127 128
  virtual int32_t Initialize() = 0;
  virtual int32_t InitializeAccessor();
  virtual int32_t InitializeShard() = 0;
  virtual std::string TableDir(const std::string &model_dir) {
T
tangwei12 已提交
129 130 131 132 133 134 135
    return paddle::string::format_string("%s/%03d/", model_dir.c_str(),
                                         _config.table_id());
  }

  size_t _shard_idx;  // table 分片编号
  size_t _shard_num;  // table 分片总数
  TableParameter _config;
136
  float *_global_lr = nullptr;
T
tangwei12 已提交
137
  std::shared_ptr<ValueAccessor> _value_accesor;
Z
zhaocaibei123 已提交
138
  AfsClient _afs_client;
T
tangwei12 已提交
139
};
T
tangwei12 已提交
140
REGISTER_PSCORE_REGISTERER(Table);
T
tangwei12 已提交
141 142 143

class TableManager {
 public:
Z
zhaocaibei123 已提交
144
  static TableManager &Instance() {
T
tangwei12 已提交
145 146 147
    static TableManager manager;
    return manager;
  }
Z
zhaocaibei123 已提交
148
  int32_t Initialize();
T
tangwei12 已提交
149 150 151 152 153

 private:
  TableManager() {}
  ~TableManager() {}
};
S
seemingwang 已提交
154

T
tangwei12 已提交
155 156
}  // namespace distributed
}  // namespace paddle