buffered_reader.h 2.4 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>
S
sneaxiy 已提交
18
#include <memory>
Y
yuyang18 已提交
19
#include <queue>
Y
yuyang18 已提交
20 21 22
#include <vector>
#include "ThreadPool.h"
#include "paddle/fluid/framework/reader.h"
D
Dun Liang 已提交
23
#ifdef PADDLE_WITH_CUDA
24
#include "paddle/fluid/platform/cuda_resource_pool.h"
D
Dun Liang 已提交
25 26
#include "paddle/fluid/platform/gpu_info.h"
#endif
Y
yuyang18 已提交
27 28 29 30 31 32 33 34 35 36 37

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,
38 39
                 const platform::Place& place, size_t buffer_size,
                 bool pin_memory = false);
Y
yuyang18 已提交
40 41 42 43

  ~BufferedReader() override;

 private:
Y
yuyang18 已提交
44
  void ReadTillBufferFullAsync();
Y
yuyang18 已提交
45

Y
yuyang18 已提交
46
  void ReadAsync(size_t i);
Y
yuyang18 已提交
47 48 49 50 51 52 53 54 55 56

 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_;
57
  bool pin_memory_;
Y
yuyang18 已提交
58 59

  std::queue<std::future<size_t>> position_;
Y
yuyang18 已提交
60 61 62

  // The buffer for reading data.
  // NOTE: the simplest way to implement buffered reader is do not use any
Y
yuyang18 已提交
63 64
  // 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 已提交
65
  // buffers and prevent alloc every time.
66
  bool is_same_place_;
Y
yuyang18 已提交
67
  std::vector<TensorVec> cpu_buffer_;
68
  std::vector<TensorVec> cuda_buffer_;
Y
yuyang18 已提交
69
  size_t prev_pos_{-1UL};
70 71 72 73 74
#ifdef PADDLE_WITH_CUDA
  cudaStream_t compute_stream_;
  std::shared_ptr<platform::CudaStreamObject> stream_;
  std::vector<std::shared_ptr<platform::CudaEventObject>> events_;
#endif
Y
yuyang18 已提交
75 76 77 78 79
};

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