buffered_reader.h 2.3 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 38 39 40 41 42

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 已提交
43
  void ReadTillBufferFullAsync();
Y
yuyang18 已提交
44

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

 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 已提交
56 57

  std::queue<std::future<size_t>> position_;
Y
yuyang18 已提交
58 59 60

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

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