buffered_reader.h 2.1 KB
Newer Older
Y
yuyang18 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// 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 <list>
Y
yuyang18 已提交
18
#include <queue>
Y
yuyang18 已提交
19 20 21
#include <vector>
#include "ThreadPool.h"
#include "paddle/fluid/framework/reader.h"
D
Dun Liang 已提交
22 23 24
#ifdef PADDLE_WITH_CUDA
#include "paddle/fluid/platform/gpu_info.h"
#endif
Y
yuyang18 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40

namespace paddle {
namespace operators {
namespace reader {

class BufferedReader : public framework::DecoratedReader {
  using TensorVec = std::vector<framework::LoDTensor>;
  using VecFuture = std::future<TensorVec>;

 public:
  BufferedReader(const std::shared_ptr<framework::ReaderBase>& reader,
                 const platform::Place& place, size_t buffer_size);

  ~BufferedReader() override;

 private:
Y
yuyang18 已提交
41
  void ReadTillBufferFullAsync();
Y
yuyang18 已提交
42

Y
yuyang18 已提交
43
  void ReadAsync(size_t i);
Y
yuyang18 已提交
44 45 46 47 48 49 50 51 52 53

 protected:
  void ShutdownImpl() override;
  void StartImpl() override;
  void ReadNextImpl(std::vector<framework::LoDTensor>* out) override;

 private:
  ThreadPool thread_pool_;
  platform::Place place_;
  const size_t buffer_size_;
Y
yuyang18 已提交
54 55

  std::queue<std::future<size_t>> position_;
Y
yuyang18 已提交
56 57 58

  // The buffer for reading data.
  // NOTE: the simplest way to implement buffered reader is do not use any
Y
yuyang18 已提交
59 60
  // buffer, just read async and create futures as buffer size. However, to
  // malloc tensors every time is extremely slow. Here we store all data in
Y
yuyang18 已提交
61
  // buffers and prevent alloc every time.
Y
yuyang18 已提交
62 63
  std::vector<TensorVec> cpu_buffer_;
  std::vector<TensorVec> gpu_buffer_;
Y
yuyang18 已提交
64
  size_t prev_pos_{-1UL};
D
Dun Liang 已提交
65
#ifdef PADDLE_WITH_CUDA
S
sneaxiy 已提交
66 67 68
  cudaStream_t stream_;
  cudaStream_t compute_stream_;
  std::vector<cudaEvent_t> events_;
D
Dun Liang 已提交
69
#endif
Y
yuyang18 已提交
70 71 72 73 74
};

}  // namespace reader
}  // namespace operators
}  // namespace paddle