table.cc 4.1 KB
Newer Older
T
tangwei12 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// 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.

15
#include "paddle/fluid/distributed/ps/table/table.h"
T
tangwei12 已提交
16

T
tangwei12 已提交
17 18 19
#include "glog/logging.h"
#include "paddle/fluid/distributed/common/registerer.h"

20 21 22
#include "paddle/fluid/distributed/ps/table/common_dense_table.h"
#include "paddle/fluid/distributed/ps/table/common_graph_table.h"
#include "paddle/fluid/distributed/ps/table/common_sparse_table.h"
Z
zhaocaibei123 已提交
23
#include "paddle/fluid/distributed/ps/table/memory_sparse_geo_table.h"
24
#include "paddle/fluid/distributed/ps/table/sparse_geo_table.h"
T
Thunderbrook 已提交
25
#ifdef PADDLE_WITH_HETERPS
26
#include "paddle/fluid/distributed/ps/table/ssd_sparse_table.h"
T
Thunderbrook 已提交
27
#endif
28 29
#include "paddle/fluid/distributed/ps/table/ctr_accessor.h"
#include "paddle/fluid/distributed/ps/table/memory_sparse_table.h"
30
#include "paddle/fluid/distributed/ps/table/sparse_accessor.h"
31 32
#include "paddle/fluid/distributed/ps/table/tensor_accessor.h"
#include "paddle/fluid/distributed/ps/table/tensor_table.h"
T
tangwei12 已提交
33 34 35

namespace paddle {
namespace distributed {
S
seemingwang 已提交
36
REGISTER_PSCORE_CLASS(Table, GraphTable);
T
tangwei12 已提交
37 38
REGISTER_PSCORE_CLASS(Table, CommonDenseTable);
REGISTER_PSCORE_CLASS(Table, CommonSparseTable);
T
Thunderbrook 已提交
39 40
#ifdef PADDLE_WITH_HETERPS
REGISTER_PSCORE_CLASS(Table, SSDSparseTable);
41 42
REGISTER_PSCORE_CLASS(GraphSampler, CompleteGraphSampler);
REGISTER_PSCORE_CLASS(GraphSampler, BasicBfsGraphSampler);
T
Thunderbrook 已提交
43
#endif
T
tangwei12 已提交
44 45 46 47 48
REGISTER_PSCORE_CLASS(Table, SparseGeoTable);
REGISTER_PSCORE_CLASS(Table, BarrierTable);
REGISTER_PSCORE_CLASS(Table, TensorTable);
REGISTER_PSCORE_CLASS(Table, DenseTensorTable);
REGISTER_PSCORE_CLASS(Table, GlobalStepTable);
Z
zhaocaibei123 已提交
49
REGISTER_PSCORE_CLASS(Table, MemorySparseTable);
Z
zhaocaibei123 已提交
50
REGISTER_PSCORE_CLASS(Table, MemorySparseGeoTable);
T
tangwei12 已提交
51
REGISTER_PSCORE_CLASS(ValueAccessor, CommMergeAccessor);
Z
zhaocaibei123 已提交
52
REGISTER_PSCORE_CLASS(ValueAccessor, CtrCommonAccessor);
53
REGISTER_PSCORE_CLASS(ValueAccessor, SparseAccessor);
Z
zhaocaibei123 已提交
54 55 56 57
REGISTER_PSCORE_CLASS(SparseValueSGDRule, StdAdaGradSGDRule);
REGISTER_PSCORE_CLASS(SparseValueSGDRule, SparseAdamSGDRule);
REGISTER_PSCORE_CLASS(SparseValueSGDRule, SparseNaiveSGDRule);
REGISTER_PSCORE_CLASS(SparseValueSGDRule, SparseAdaGradSGDRule);
T
tangwei12 已提交
58

Z
zhaocaibei123 已提交
59
int32_t TableManager::Initialize() {
T
tangwei12 已提交
60 61 62 63 64 65 66 67
  static bool initialized = false;
  if (initialized) {
    return 0;
  }
  initialized = true;
  return 0;
}

Z
zhaocaibei123 已提交
68
int32_t Table::Initialize(const TableParameter &config,
T
tangwei12 已提交
69 70
                          const FsClientParameter &fs_config) {
  _config = config;
Z
zhaocaibei123 已提交
71
  if (InitializeAccessor() != 0) {
T
tangwei12 已提交
72 73 74
    LOG(WARNING) << "Table accessor initialize failed";
    return -1;
  }
Z
zhaocaibei123 已提交
75 76 77 78 79

  if (_afs_client.initialize(fs_config) != 0) {
    LOG(WARNING) << "Table fs_client initialize failed";
    // return -1;
  }
Z
zhaocaibei123 已提交
80
  return Initialize();
T
tangwei12 已提交
81 82
}

Z
zhaocaibei123 已提交
83
int32_t Table::InitializeAccessor() {
T
tangwei12 已提交
84 85 86 87 88
  if (!_config.has_accessor() || !_config.accessor().has_accessor_class()) {
    LOG(ERROR) << "missing accessor config in table, table_id:"
               << _config.table_id();
    return -1;
  }
Z
zhaocaibei123 已提交
89 90 91

  LOG(INFO) << "accessor initializing: table_id: " << _config.table_id()
            << ", accessor_name: " << _config.accessor().accessor_class();
92 93 94 95
  auto *accessor =
      CREATE_PSCORE_CLASS(ValueAccessor, _config.accessor().accessor_class());

  if (accessor == NULL) {
T
tangwei12 已提交
96 97 98 99
    LOG(ERROR) << "accessor is unregisteg, table_id:" << _config.table_id()
               << ", accessor_name:" << _config.accessor().accessor_class();
    return -1;
  }
100
  if (accessor->Configure(_config.accessor()) || accessor->Initialize() != 0) {
T
tangwei12 已提交
101 102 103 104 105 106 107
    LOG(ERROR) << " accessor initialize failed, table_id:" << _config.table_id()
               << ", accessor_name:" << _config.accessor().accessor_class();
    return -1;
  }
  _value_accesor.reset(accessor);
  return 0;
}
S
seemingwang 已提交
108

T
tangwei12 已提交
109 110
}  // namespace distributed
}  // namespace paddle