// 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 #include #include // NOLINT #include #include #include #include "paddle/fluid/distributed/common/afs_warpper.h" #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" #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" #include "paddle/fluid/string/string_helper.h" namespace paddle { namespace distributed { enum ValueType { Sparse = 0, Dense = 1 }; struct PullContext { const uint64_t *keys; PullSparseValue pull_value; float *values; char **ptr_values; }; struct TablePushContext { const uint64_t *keys; const float *values; const float **ptr_values; }; struct TableContext { ValueType value_type; PullContext pull_context; TablePushContext push_context; size_t num; bool use_ptr = false; }; class Table { public: Table() {} virtual ~Table() {} virtual int32_t Initialize(const TableParameter &config, const FsClientParameter &fs_config); virtual int32_t Pull(TableContext &context) = 0; virtual int32_t Push(TableContext &context) = 0; virtual int32_t PullDense(float *values, size_t num) = 0; virtual int32_t PushDense(const float *values, size_t num) = 0; // for push global_step virtual int32_t PushDense(const int64_t *values, const int32_t trainer_id) { return 0; } virtual int32_t PushDenseParam(const float *values, size_t num) { return 0; } virtual int32_t PullSparsePtr(char **pull_values, const uint64_t *keys, size_t num) { VLOG(0) << "NOT IMPLEMENT"; return 0; } virtual int32_t PullSparse(float *values, const PullSparseValue &pull_value) = 0; virtual int32_t PushSparse(const uint64_t *keys, const float *values, size_t num) = 0; virtual int32_t PushSparse(const uint64_t *keys, const float **values, size_t num) { return 0; } virtual int32_t PushSparseParam(const uint64_t *keys, const float *values, size_t num) { return 0; } // only for sparse geo table virtual int32_t PullGeoParam(const uint32_t trainer_id, std::vector *values, std::vector *keys) { return 0; } // only for barrier virtual int32_t Barrier(const uint32_t trainer_id, const std::string barrier_type) { return 0; } // only for barrier table virtual int32_t SetTableMap( std::unordered_map> *table_map) { return 0; } // only for tensor table virtual int32_t SetProgramEnv( framework::Scope *scope, platform::Place place, const std::vector *sub_program) { return 0; } virtual int32_t SetGlobalLR(float *lr) { _global_lr = lr; return 0; } virtual int32_t Pour() { return 0; } virtual void Clear() = 0; virtual int32_t Flush() = 0; virtual int32_t Shrink(const std::string ¶m) = 0; // 指定加载路径 virtual int32_t Load(const std::string &path, const std::string &converter) = 0; // 指定保存路径 virtual int32_t Save(const std::string &path, const std::string &converter) = 0; virtual int32_t SetShard(size_t shard_idx, size_t shard_num) { _shard_idx = shard_idx; _shard_num = shard_num; return InitializeShard(); } inline std::shared_ptr ValueAccesor() { return _value_accesor; } virtual void *GetShard(size_t shard_idx) = 0; virtual std::pair PrintTableStat() { return {0, 0}; } protected: virtual int32_t Initialize() = 0; virtual int32_t InitializeAccessor(); virtual int32_t InitializeShard() = 0; virtual std::string TableDir(const std::string &model_dir) { 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; float *_global_lr = nullptr; std::shared_ptr _value_accesor; AccessorInfo _table_info; AfsClient _afs_client; }; REGISTER_PSCORE_REGISTERER(Table); class TableManager { public: static TableManager &Instance() { static TableManager manager; return manager; } int32_t Initialize(); private: TableManager() {} ~TableManager() {} }; } // namespace distributed } // namespace paddle