data_set.h 4.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/* 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

#include <fstream>
#include <memory>
#include <mutex>  // NOLINT
#include <string>
#include <thread>  // NOLINT
#include <vector>

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

namespace paddle {
namespace framework {

X
xjqbest 已提交
29 30 31 32 33 34 35 36 37 38
// 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();
39 40
class Dataset {
 public:
41 42
  Dataset() {}
  virtual ~Dataset() {}
43
  // set file list
44
  virtual void SetFileList(const std::vector<std::string>& filelist) = 0;
45
  // set readers' num
46
  virtual void SetThreadNum(int thread_num) = 0;
47
  // set workers' num
48
  virtual void SetTrainerNum(int trainer_num) = 0;
49
  // set fs name and ugi
50 51
  virtual void SetHdfsConfig(const std::string& fs_name,
                             const std::string& fs_ugi) = 0;
52 53
  // set data fedd desc, which contains:
  //   data feed name, batch size, slots
54
  virtual void SetDataFeedDesc(const std::string& data_feed_desc_str) = 0;
55
  // get file list
56
  virtual const std::vector<std::string>& GetFileList() = 0;
57
  // get thread num
58
  virtual int GetThreadNum() = 0;
59
  // get worker num
60
  virtual int GetTrainerNum() = 0;
61
  // get data fedd desc
62
  virtual const paddle::framework::DataFeedDesc& GetDataFeedDesc() = 0;
63 64
  // get readers, the reader num depend both on thread num
  // and filelist size
65
  virtual std::vector<std::shared_ptr<paddle::framework::DataFeed>>&
66
  GetReaders() = 0;
67 68 69
  // register message handler between workers
  virtual void RegisterClientToClientMsgHandler() = 0;
  // load all data into memory
70
  virtual void LoadIntoMemory() = 0;
71 72 73
  // release all memory data
  virtual void ReleaseMemory() = 0;
  // local shuffle data
74
  virtual void LocalShuffle() = 0;
75
  // global shuffle data
76
  virtual void GlobalShuffle() = 0;
77
  // create readers
78
  virtual void CreateReaders() = 0;
79
  // destroy readers
80
  virtual void DestroyReaders() = 0;
81

82 83 84 85 86
 protected:
  virtual int ReceiveFromClient(int msg_type, int client_id,
                                const std::string& msg) = 0;
};

X
xjqbest 已提交
87 88
// DatasetImpl is the implementation of Dataset,
// it holds memory data if user calls load_into_memory
89
template <typename T>
90 91 92 93
class DatasetImpl : public Dataset {
 public:
  DatasetImpl();
  virtual ~DatasetImpl() {}
94 95 96 97

  virtual void SetFileList(const std::vector<std::string>& filelist);
  virtual void SetThreadNum(int thread_num);
  virtual void SetTrainerNum(int trainer_num);
98 99
  virtual void SetHdfsConfig(const std::string& fs_name,
                             const std::string& fs_ugi);
100
  virtual void SetDataFeedDesc(const std::string& data_feed_desc_str);
101

D
dongdaxiang 已提交
102 103 104
  virtual const std::vector<std::string>& GetFileList() { return filelist_; }
  virtual int GetThreadNum() { return thread_num_; }
  virtual int GetTrainerNum() { return trainer_num_; }
105 106 107
  virtual const paddle::framework::DataFeedDesc& GetDataFeedDesc() {
    return data_feed_desc_;
  }
108
  virtual std::vector<std::shared_ptr<paddle::framework::DataFeed>>&
109
  GetReaders();
110 111

  virtual void RegisterClientToClientMsgHandler();
112
  virtual void LoadIntoMemory();
113
  virtual void ReleaseMemory();
114
  virtual void LocalShuffle();
D
dongdaxiang 已提交
115
  virtual void GlobalShuffle();
116
  virtual void CreateReaders();
117
  virtual void DestroyReaders();
D
dongdaxiang 已提交
118

119
 protected:
D
dongdaxiang 已提交
120 121
  virtual int ReceiveFromClient(int msg_type, int client_id,
                                const std::string& msg);
122
  std::vector<std::shared_ptr<paddle::framework::DataFeed>> readers_;
123 124
  std::vector<T> memory_data_;
  std::mutex mutex_for_update_memory_data_;
125 126 127
  int thread_num_;
  paddle::framework::DataFeedDesc data_feed_desc_;
  int trainer_num_;
128 129 130
  std::vector<std::string> filelist_;
  size_t file_idx_;
  std::mutex mutex_for_pick_file_;
131 132
};

X
xjqbest 已提交
133
// use std::vector<MultiSlotType> as data type
134 135 136 137 138 139
class MultiSlotDataset : public DatasetImpl<std::vector<MultiSlotType>> {
 public:
  MultiSlotDataset() {}
  virtual ~MultiSlotDataset() {}
};

D
dongdaxiang 已提交
140 141
}  // end namespace framework
}  // end namespace paddle