data_set.h 5.0 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
/* 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>
X
xjqbest 已提交
23
#include <utility>
24 25 26 27 28 29

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

namespace paddle {
namespace framework {

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

85 86 87 88 89
 protected:
  virtual int ReceiveFromClient(int msg_type, int client_id,
                                const std::string& msg) = 0;
};

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

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

D
dongdaxiang 已提交
105 106 107
  virtual const std::vector<std::string>& GetFileList() { return filelist_; }
  virtual int GetThreadNum() { return thread_num_; }
  virtual int GetTrainerNum() { return trainer_num_; }
X
xjqbest 已提交
108 109 110
  virtual std::pair<std::string, std::string> GetHdfsConfig() {
    return std::make_pair(fs_name_, fs_ugi_);
  }
111 112 113
  virtual const paddle::framework::DataFeedDesc& GetDataFeedDesc() {
    return data_feed_desc_;
  }
114
  virtual std::vector<std::shared_ptr<paddle::framework::DataFeed>>&
115
  GetReaders();
116 117

  virtual void RegisterClientToClientMsgHandler();
118
  virtual void LoadIntoMemory();
119
  virtual void ReleaseMemory();
120
  virtual void LocalShuffle();
D
dongdaxiang 已提交
121
  virtual void GlobalShuffle();
122
  virtual void CreateReaders();
123
  virtual void DestroyReaders();
D
dongdaxiang 已提交
124

125
 protected:
D
dongdaxiang 已提交
126 127
  virtual int ReceiveFromClient(int msg_type, int client_id,
                                const std::string& msg);
128
  std::vector<std::shared_ptr<paddle::framework::DataFeed>> readers_;
129 130
  std::vector<T> memory_data_;
  std::mutex mutex_for_update_memory_data_;
131 132 133
  int thread_num_;
  paddle::framework::DataFeedDesc data_feed_desc_;
  int trainer_num_;
134 135 136
  std::vector<std::string> filelist_;
  size_t file_idx_;
  std::mutex mutex_for_pick_file_;
X
xjqbest 已提交
137 138
  std::string fs_name_;
  std::string fs_ugi_;
139 140
};

X
xjqbest 已提交
141
// use std::vector<MultiSlotType> as data type
142 143 144 145 146 147
class MultiSlotDataset : public DatasetImpl<std::vector<MultiSlotType>> {
 public:
  MultiSlotDataset() {}
  virtual ~MultiSlotDataset() {}
};

D
dongdaxiang 已提交
148 149
}  // end namespace framework
}  // end namespace paddle