data_set.h 16.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2018 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

17
#include <ThreadPool.h>
18

19 20 21
#include <fstream>
#include <memory>
#include <mutex>  // NOLINT
22
#include <set>
23 24
#include <string>
#include <thread>  // NOLINT
25
#include <unordered_set>
X
xjqbest 已提交
26
#include <utility>
27
#include <vector>
28
#include "paddle/phi/core/macros.h"
Y
yaoxuefeng 已提交
29 30
#ifdef PADDLE_WITH_GLOO
#include <gloo/broadcast.h>
31

Y
yaoxuefeng 已提交
32 33
#include "paddle/fluid/framework/fleet/gloo_wrapper.h"
#endif
34 35 36 37 38 39

#include "paddle/fluid/framework/data_feed.h"

namespace paddle {
namespace framework {

X
xjqbest 已提交
40 41 42 43 44 45 46 47 48 49
// Dataset is a abstract class, which defines user interfaces
// Example Usage:
//    Dataset* dataset = DatasetFactory::CreateDataset("InMemoryDataset")
//    dataset->SetFileList(std::vector<std::string>{"a.txt", "b.txt"})
//    dataset->SetThreadNum(1)
//    dataset->CreateReaders();
//    dataset->SetDataFeedDesc(your_data_feed_desc);
//    dataset->LoadIntoMemory();
//    dataset->SetTrainerNum(2);
//    dataset->GlobalShuffle();
50 51
class Dataset {
 public:
52 53
  Dataset() {}
  virtual ~Dataset() {}
W
wangzhen38 已提交
54
  // do sample
55 56 57 58 59 60
  virtual void TDMSample(const std::string tree_name UNUSED,
                         const std::string tree_path UNUSED,
                         const std::vector<uint16_t> tdm_layer_counts UNUSED,
                         const uint16_t start_sample_layer UNUSED,
                         const bool with_hierachy UNUSED,
                         const uint16_t seed_ UNUSED,
61
                         const uint16_t sample_slot UNUSED) {}
62
  // set file list
63
  virtual void SetFileList(const std::vector<std::string>& filelist) = 0;
64
  // set readers' num
65
  virtual void SetThreadNum(int thread_num) = 0;
66
  // set workers' num
67
  virtual void SetTrainerNum(int trainer_num) = 0;
X
xjqbest 已提交
68 69
  // set fleet send batch size
  virtual void SetFleetSendBatchSize(int64_t size) = 0;
T
Thunderbrook 已提交
70
  virtual void ReleaseMemoryFun() = 0;
71
  // set fs name and ugi
72 73
  virtual void SetHdfsConfig(const std::string& fs_name,
                             const std::string& fs_ugi) = 0;
74 75
  // set customized download command, such as using afs api
  virtual void SetDownloadCmd(const std::string& download_cmd) = 0;
76 77
  // set data fedd desc, which contains:
  //   data feed name, batch size, slots
78
  virtual void SetDataFeedDesc(const std::string& data_feed_desc_str) = 0;
J
jiaqi 已提交
79 80
  // set channel num
  virtual void SetChannelNum(int channel_num) = 0;
81 82 83
  // set parse ins id
  virtual void SetParseInsId(bool parse_ins_id) = 0;
  virtual void SetParseContent(bool parse_content) = 0;
84 85
  virtual void SetParseLogKey(bool parse_logkey) = 0;
  virtual void SetEnablePvMerge(bool enable_pv_merge) = 0;
86
  virtual bool EnablePvMerge() = 0;
87
  virtual void SetMergeBySid(bool is_merge) = 0;
88
  virtual void SetShuffleByUid(bool enable_shuffle_uid) = 0;
89
  // set merge by ins id
90
  virtual void SetMergeByInsId(int merge_size) = 0;
91
  virtual void SetGenerateUniqueFeasign(bool gen_uni_feasigns) = 0;
92 93
  // set fea eval mode
  virtual void SetFeaEval(bool fea_eval, int record_candidate_size) = 0;
94
  // get file list
95
  virtual const std::vector<std::string>& GetFileList() = 0;
96
  // get thread num
97
  virtual int GetThreadNum() = 0;
98
  // get worker num
99
  virtual int GetTrainerNum() = 0;
X
xjqbest 已提交
100 101
  // get fleet send batch size
  virtual int64_t GetFleetSendBatchSize() = 0;
X
xjqbest 已提交
102 103
  // get hdfs config
  virtual std::pair<std::string, std::string> GetHdfsConfig() = 0;
104 105
  // get download cmd
  virtual std::string GetDownloadCmd() = 0;
106
  // get data fedd desc
107
  virtual const paddle::framework::DataFeedDesc& GetDataFeedDesc() = 0;
J
jiaqi 已提交
108 109
  // get channel num
  virtual int GetChannelNum() = 0;
110 111
  // get readers, the reader num depend both on thread num
  // and filelist size
J
jiaqi 已提交
112 113 114
  virtual std::vector<paddle::framework::DataFeed*> GetReaders() = 0;
  // create input channel and output channel
  virtual void CreateChannel() = 0;
115 116 117
  // register message handler between workers
  virtual void RegisterClientToClientMsgHandler() = 0;
  // load all data into memory
118
  virtual void LoadIntoMemory() = 0;
J
jiaqi 已提交
119 120 121 122
  // load all data into memory in async mode
  virtual void PreLoadIntoMemory() = 0;
  // wait async load done
  virtual void WaitPreLoadDone() = 0;
123 124 125
  // release all memory data
  virtual void ReleaseMemory() = 0;
  // local shuffle data
126
  virtual void LocalShuffle() = 0;
127
  // global shuffle data
128
  virtual void GlobalShuffle(int thread_num = -1) = 0;
129
  virtual void SlotsShuffle(const std::set<std::string>& slots_to_replace) = 0;
130
  // create readers
131
  virtual void CreateReaders() = 0;
132
  // destroy readers
133
  virtual void DestroyReaders() = 0;
134 135
  // get memory data size
  virtual int64_t GetMemoryDataSize() = 0;
136 137
  // get memory data size in input_pv_channel_
  virtual int64_t GetPvDataSize() = 0;
138 139
  // get shuffle data size
  virtual int64_t GetShuffleDataSize() = 0;
140 141
  // merge by ins id
  virtual void MergeByInsId() = 0;
142 143 144 145 146 147
  // merge pv instance
  virtual void PreprocessInstance() = 0;
  // divide pv instance
  virtual void PostprocessInstance() = 0;
  // only for untest
  virtual void SetCurrentPhase(int current_phase) = 0;
148 149
  virtual void GenerateLocalTablesUnlock(int table_id,
                                         int feadim,
150 151 152 153
                                         int read_thread_num,
                                         int consume_thread_num,
                                         int shard_num) = 0;
  virtual void ClearLocalTables() = 0;
154 155 156 157 158 159
  // create preload readers
  virtual void CreatePreLoadReaders() = 0;
  // destroy preload readers after prelaod done
  virtual void DestroyPreLoadReaders() = 0;
  // set preload thread num
  virtual void SetPreLoadThreadNum(int thread_num) = 0;
S
Shuangchi He 已提交
160
  // separate train thread and dataset thread
H
hutuxian 已提交
161 162
  virtual void DynamicAdjustChannelNum(int channel_num,
                                       bool discard_remaining_ins = false) = 0;
163 164 165
  virtual void DynamicAdjustReadersNum(int thread_num) = 0;
  // set fleet send sleep seconds
  virtual void SetFleetSendSleepSeconds(int seconds) = 0;
166

Y
yaoxuefeng 已提交
167 168
  virtual std::vector<std::string> GetSlots() = 0;

D
danleifeng 已提交
169 170
  virtual void SetGpuGraphMode(int is_graph_mode) = 0;
  virtual int GetGpuGraphMode() = 0;
L
lxsbupt 已提交
171 172 173 174
  virtual bool GetEpochFinish() = 0;

  virtual void SetPassId(uint32_t pass_id) = 0;
  virtual uint32_t GetPassID() = 0;
D
danleifeng 已提交
175

176 177
  virtual void DumpWalkPath(std::string dump_path, size_t dump_rate) = 0;

178
 protected:
179 180
  virtual int ReceiveFromClient(int msg_type,
                                int client_id,
181 182 183
                                const std::string& msg) = 0;
};

X
xjqbest 已提交
184 185
// DatasetImpl is the implementation of Dataset,
// it holds memory data if user calls load_into_memory
186
template <typename T>
187 188 189
class DatasetImpl : public Dataset {
 public:
  DatasetImpl();
T
Thunderbrook 已提交
190 191 192 193 194
  virtual ~DatasetImpl() {
    if (release_thread_ != nullptr) {
      release_thread_->join();
    }
  }
195
  virtual void SetFileList(const std::vector<std::string>& filelist);
T
Thunderbrook 已提交
196
  virtual void ReleaseMemoryFun();
197 198
  virtual void SetThreadNum(int thread_num);
  virtual void SetTrainerNum(int trainer_num);
X
xjqbest 已提交
199
  virtual void SetFleetSendBatchSize(int64_t size);
200 201
  virtual void SetHdfsConfig(const std::string& fs_name,
                             const std::string& fs_ugi);
202
  virtual void SetDownloadCmd(const std::string& download_cmd);
203
  virtual void SetDataFeedDesc(const std::string& data_feed_desc_str);
J
jiaqi 已提交
204
  virtual void SetChannelNum(int channel_num);
205 206
  virtual void SetParseInsId(bool parse_ins_id);
  virtual void SetParseContent(bool parse_content);
207 208 209
  virtual void SetParseLogKey(bool parse_logkey);
  virtual void SetEnablePvMerge(bool enable_pv_merge);
  virtual void SetMergeBySid(bool is_merge);
210
  virtual void SetShuffleByUid(bool enable_shuffle_uid);
211

212
  virtual void SetMergeByInsId(int merge_size);
213
  virtual void SetGenerateUniqueFeasign(bool gen_uni_feasigns);
214
  virtual void SetFeaEval(bool fea_eval, int record_candidate_size);
D
dongdaxiang 已提交
215 216 217
  virtual const std::vector<std::string>& GetFileList() { return filelist_; }
  virtual int GetThreadNum() { return thread_num_; }
  virtual int GetTrainerNum() { return trainer_num_; }
H
hutuxian 已提交
218
  virtual Channel<T> GetInputChannel() { return input_channel_; }
219 220 221
  virtual void SetInputChannel(const Channel<T>& input_channel) {
    input_channel_ = input_channel;
  }
X
xjqbest 已提交
222
  virtual int64_t GetFleetSendBatchSize() { return fleet_send_batch_size_; }
X
xjqbest 已提交
223 224 225
  virtual std::pair<std::string, std::string> GetHdfsConfig() {
    return std::make_pair(fs_name_, fs_ugi_);
  }
D
danleifeng 已提交
226 227
  virtual void SetGpuGraphMode(int is_graph_mode);
  virtual int GetGpuGraphMode();
228
  virtual std::string GetDownloadCmd();
229 230 231
  virtual const paddle::framework::DataFeedDesc& GetDataFeedDesc() {
    return data_feed_desc_;
  }
J
jiaqi 已提交
232
  virtual int GetChannelNum() { return channel_num_; }
233
  virtual bool EnablePvMerge() { return enable_pv_merge_; }
J
jiaqi 已提交
234 235
  virtual std::vector<paddle::framework::DataFeed*> GetReaders();
  virtual void CreateChannel();
236
  virtual void RegisterClientToClientMsgHandler();
237
  virtual void LoadIntoMemory();
J
jiaqi 已提交
238 239
  virtual void PreLoadIntoMemory();
  virtual void WaitPreLoadDone();
240
  virtual void ReleaseMemory();
241
  virtual void LocalShuffle();
242 243 244
  virtual void GlobalShuffle(int thread_num UNUSED = -1) {}
  virtual void SlotsShuffle(
      const std::set<std::string>& slots_to_replace UNUSED) {}
245 246 247
  virtual const std::vector<T>& GetSlotsOriginalData() {
    return slots_shuffle_original_data_;
  }
248
  virtual void CreateReaders();
249
  virtual void DestroyReaders();
250
  virtual int64_t GetMemoryDataSize();
251
  virtual int64_t GetPvDataSize();
252
  virtual int64_t GetShuffleDataSize();
253
  virtual void MergeByInsId() {}
254 255
  virtual void PreprocessInstance() {}
  virtual void PostprocessInstance() {}
256 257 258 259 260 261
  virtual void SetCurrentPhase(int current_phase UNUSED) {}
  virtual void GenerateLocalTablesUnlock(int table_id UNUSED,
                                         int feadim UNUSED,
                                         int read_thread_num UNUSED,
                                         int consume_thread_num UNUSED,
                                         int shard_num UNUSED) {}
262
  virtual void ClearLocalTables() {}
263 264 265
  virtual void CreatePreLoadReaders();
  virtual void DestroyPreLoadReaders();
  virtual void SetPreLoadThreadNum(int thread_num);
H
hutuxian 已提交
266 267
  virtual void DynamicAdjustChannelNum(int channel_num,
                                       bool discard_remaining_ins = false);
268 269
  virtual void DynamicAdjustReadersNum(int thread_num);
  virtual void SetFleetSendSleepSeconds(int seconds);
Y
yaoxuefeng 已提交
270
  virtual std::vector<std::string> GetSlots();
L
lxsbupt 已提交
271
  virtual bool GetEpochFinish();
272
  virtual void DumpWalkPath(std::string dump_path, size_t dump_rate);
D
dongdaxiang 已提交
273

T
Thunderbrook 已提交
274 275 276 277 278 279 280 281 282 283 284
  std::vector<paddle::framework::Channel<T>>& GetMultiOutputChannel() {
    return multi_output_channel_;
  }

  std::vector<paddle::framework::Channel<T>>& GetCurOutputChannel() {
    if (cur_channel_ == 0) {
      return multi_output_channel_;
    } else {
      return multi_consume_channel_;
    }
  }
D
danleifeng 已提交
285 286 287
  std::vector<uint64_t>& GetGpuGraphTotalKeys() {
    return gpu_graph_total_keys_;
  }
L
lxsbupt 已提交
288 289 290

  virtual void SetPassId(uint32_t pass_id) { pass_id_ = pass_id; }
  virtual uint32_t GetPassID() { return pass_id_; }
T
Thunderbrook 已提交
291

292
 protected:
293 294 295
  virtual int ReceiveFromClient(int msg_type UNUSED,
                                int client_id UNUSED,
                                const std::string& msg UNUSED) {
Y
yaoxuefeng 已提交
296 297 298
    // TODO(yaoxuefeng) for SlotRecordDataset
    return -1;
  }
299
  std::vector<std::shared_ptr<paddle::framework::DataFeed>> readers_;
300
  std::vector<std::shared_ptr<paddle::framework::DataFeed>> preload_readers_;
J
jiaqi 已提交
301
  paddle::framework::Channel<T> input_channel_;
302 303 304 305
  paddle::framework::Channel<PvInstance> input_pv_channel_;
  std::vector<paddle::framework::Channel<PvInstance>> multi_pv_output_;
  std::vector<paddle::framework::Channel<PvInstance>> multi_pv_consume_;

J
jiaqi 已提交
306 307 308
  int channel_num_;
  std::vector<paddle::framework::Channel<T>> multi_output_channel_;
  std::vector<paddle::framework::Channel<T>> multi_consume_channel_;
309
  std::vector<std::unordered_set<uint64_t>> local_tables_;
J
jiaqi 已提交
310 311 312 313
  // when read ins, we put ins from one channel to the other,
  // and when finish reading, we set cur_channel = 1 - cur_channel,
  // so if cur_channel=0, all data are in output_channel, else consume_channel
  int cur_channel_;
314 315
  std::vector<T> slots_shuffle_original_data_;
  RecordCandidateList slots_shuffle_rclist_;
316
  int thread_num_;
317
  int pull_sparse_to_local_thread_num_;
318 319
  paddle::framework::DataFeedDesc data_feed_desc_;
  int trainer_num_;
320 321
  std::vector<std::string> filelist_;
  size_t file_idx_;
H
hutuxian 已提交
322
  uint64_t total_fea_num_;
323
  std::mutex mutex_for_pick_file_;
H
hutuxian 已提交
324
  std::mutex mutex_for_fea_num_;
X
xjqbest 已提交
325 326
  std::string fs_name_;
  std::string fs_ugi_;
X
xjqbest 已提交
327
  int64_t fleet_send_batch_size_;
J
jiaqi 已提交
328 329
  int64_t fleet_send_sleep_seconds_;
  std::vector<std::thread> preload_threads_;
T
Thunderbrook 已提交
330
  std::thread* release_thread_ = nullptr;
331
  bool merge_by_insid_;
332 333
  bool parse_ins_id_;
  bool parse_content_;
334 335
  bool parse_logkey_;
  bool merge_by_sid_;
336 337
  bool shuffle_by_uid_;
  bool parse_uid_;
338 339
  bool enable_pv_merge_;  // True means to merge pv
  int current_phase_;     // 1 join, 0 update
340
  size_t merge_size_;
341
  bool slots_shuffle_fea_eval_ = false;
342
  bool gen_uni_feasigns_ = false;
343
  int preload_thread_num_;
344 345
  std::mutex global_index_mutex_;
  int64_t global_index_ = 0;
346
  std::vector<std::shared_ptr<ThreadPool>> consume_task_pool_;
347
  std::vector<T> input_records_;  // only for paddleboxdatafeed
Y
yaoxuefeng 已提交
348
  std::vector<std::string> use_slots_;
Y
yaoxuefeng 已提交
349
  bool enable_heterps_ = false;
D
danleifeng 已提交
350
  int gpu_graph_mode_ = 0;
L
lxsbupt 已提交
351
  std::vector<std::vector<std::vector<uint64_t>>> gpu_graph_type_keys_;
D
danleifeng 已提交
352
  std::vector<uint64_t> gpu_graph_total_keys_;
L
lxsbupt 已提交
353
  uint32_t pass_id_ = 0;
354 355
};

356
// use std::vector<MultiSlotType> or Record as data type
J
jiaqi 已提交
357
class MultiSlotDataset : public DatasetImpl<Record> {
358 359
 public:
  MultiSlotDataset() {}
W
wangzhen38 已提交
360 361 362 363
  virtual void TDMSample(const std::string tree_name,
                         const std::string tree_path,
                         const std::vector<uint16_t> tdm_layer_counts,
                         const uint16_t start_sample_layer,
364 365
                         const bool with_hierachy,
                         const uint16_t seed_,
W
wangzhen38 已提交
366
                         const uint16_t sample_slot);
367
  virtual void MergeByInsId();
368 369 370
  virtual void PreprocessInstance();
  virtual void PostprocessInstance();
  virtual void SetCurrentPhase(int current_phase);
371 372
  virtual void GenerateLocalTablesUnlock(int table_id,
                                         int feadim,
373
                                         int read_thread_num,
374 375
                                         int consume_thread_num,
                                         int shard_num);
376 377 378 379 380 381 382
  virtual void ClearLocalTables() {
    for (auto& t : local_tables_) {
      t.clear();
      std::unordered_set<uint64_t>().swap(t);
    }
    std::vector<std::unordered_set<uint64_t>>().swap(local_tables_);
  }
383 384 385
  virtual void PreprocessChannel(
      const std::set<std::string>& slots_to_replace,
      std::unordered_set<uint16_t>& index_slot);  // NOLINT
386
  virtual void SlotsShuffle(const std::set<std::string>& slots_to_replace);
387 388 389
  virtual void GetRandomData(
      const std::unordered_set<uint16_t>& slots_to_replace,
      std::vector<Record>* result);
390
  virtual ~MultiSlotDataset() {}
Y
yaoxuefeng 已提交
391 392 393 394 395
  virtual void GlobalShuffle(int thread_num = -1);
  virtual void DynamicAdjustReadersNum(int thread_num);
  virtual void PrepareTrain();

 protected:
396 397
  virtual int ReceiveFromClient(int msg_type,
                                int client_id,
Y
yaoxuefeng 已提交
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
                                const std::string& msg);
};
class SlotRecordDataset : public DatasetImpl<SlotRecord> {
 public:
  SlotRecordDataset() { SlotRecordPool(); }
  virtual ~SlotRecordDataset() {}
  // create input channel
  virtual void CreateChannel();
  // create readers
  virtual void CreateReaders();
  // release memory
  virtual void ReleaseMemory();
  virtual void GlobalShuffle(int thread_num = -1);
  virtual void DynamicAdjustChannelNum(int channel_num,
                                       bool discard_remaining_ins);
  virtual void PrepareTrain();
  virtual void DynamicAdjustReadersNum(int thread_num);

 protected:
  bool enable_heterps_ = true;
418 419
};

D
dongdaxiang 已提交
420 421
}  // end namespace framework
}  // end namespace paddle