buffered_reader.cc 4.8 KB
Newer Older
Y
yuyang18 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// 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.

#include "paddle/fluid/operators/reader/buffered_reader.h"
C
chengduo 已提交
16
#include <memory>
Z
Zeng Jinle 已提交
17
#include <utility>
Y
yuyang18 已提交
18
#include <vector>
D
Dun Liang 已提交
19
#include "paddle/fluid/framework/data_type.h"
20
#include "paddle/fluid/platform/profiler.h"
21

Y
yuyang18 已提交
22 23 24
namespace paddle {
namespace operators {
namespace reader {
F
fengjiayi 已提交
25
BufferedReader::~BufferedReader() {
Q
Qiao Longfei 已提交
26
  VLOG(1) << "~BufferedReader";
F
fengjiayi 已提交
27 28
  reader_->Shutdown();
  while (!position_.empty()) {
Z
Zeng Jinle 已提交
29 30 31 32
    auto &front = position_.front();
    if (front.valid()) {
      front.wait();
    }
F
fengjiayi 已提交
33 34 35 36
    position_.pop();
  }
}

Y
yuyang18 已提交
37 38 39 40 41 42 43
BufferedReader::BufferedReader(
    const std::shared_ptr<framework::ReaderBase> &reader,
    const platform::Place &place, size_t buffer_size)
    : framework::DecoratedReader(reader),
      thread_pool_(1),
      place_(place),
      buffer_size_(buffer_size) {
Q
Qiao Longfei 已提交
44
  VLOG(1) << "BufferedReader";
45
  is_same_place_ = false;
Y
yuyang18 已提交
46
  cpu_buffer_.resize(buffer_size);
47
  cuda_pinned_buffer_.resize(buffer_size);
Y
yuyang18 已提交
48
  ReadTillBufferFullAsync();
Y
yuyang18 已提交
49
}
F
fengjiayi 已提交
50

Y
yuyang18 已提交
51
void BufferedReader::ReadTillBufferFullAsync() {
Y
yuyang18 已提交
52
  for (size_t i = 0; i < buffer_size_; ++i) {
Y
yuyang18 已提交
53
    ReadAsync(i);
Y
yuyang18 已提交
54 55
  }
}
F
fengjiayi 已提交
56

Y
yuyang18 已提交
57
void BufferedReader::ReadAsync(size_t i) {
Y
yuyang18 已提交
58 59 60
  position_.emplace(thread_pool_.enqueue([this, i]() -> size_t {
    TensorVec &cpu = cpu_buffer_[i];
    reader_->ReadNext(&cpu);
Y
yuyang18 已提交
61

Y
yuyang18 已提交
62 63 64
    if (cpu.empty()) {
      return -1UL;
    }
Y
yuyang18 已提交
65

D
Dun Liang 已提交
66
#ifdef PADDLE_WITH_CUDA
Y
yuyang18 已提交
67
    if (platform::is_gpu_place(place_)) {
68 69 70 71 72 73 74 75 76 77 78 79 80 81
      // NOTE: [Copy processing of different input devices]
      // We may accept input tensor in three different devices:
      //   - CPUPlace
      //   - CUDAPinnedPlace
      //   - CUDAPlace
      // CUDA Stream Synchronizing is slow, in order to avoid Synchronizing
      // in BufferedReader thread, we do data copy as follows:
      //   - If src Tensor on CPU memory, we copy it to CUDAPinned memory
      //   - IF src Tensor on CUDAPinned memory, we use it directly
      //   - IF src Tensor on CUDA memory, we use it directly
      platform::CUDAPinnedPlace cuda_pinned_place;
      TensorVec &cuda_pinned = cuda_pinned_buffer_[i];
      if (cuda_pinned.empty()) {
        cuda_pinned.resize(cpu.size());
82
      } else {
83
        PADDLE_ENFORCE_EQ(
84
            cuda_pinned.size(), cpu.size(),
85 86
            platform::errors::InvalidArgument(
                "Input tensor number on GPU and CPU devices are not matched."));
87 88
      }

89 90
      std::vector<void *> cuda_pinned_ptrs;
      cuda_pinned_ptrs.reserve(cpu.size());
91 92
      platform::RecordEvent record_event("BufferedReader:MemoryCopy");
      for (size_t i = 0; i < cpu.size(); ++i) {
93 94 95 96 97 98 99 100 101 102 103 104
        if (platform::is_cpu_place(cpu[i].place())) {
          cuda_pinned[i].Resize(cpu[i].dims());
          cuda_pinned[i].set_layout(cpu[i].layout());
          cuda_pinned_ptrs.emplace_back(
              cuda_pinned[i].mutable_data(cuda_pinned_place, cpu[i].type()));
          auto size =
              cpu[i].numel() * paddle::framework::SizeOfType(cpu[i].type());

          memory::Copy(cuda_pinned_place, cuda_pinned_ptrs[i],
                       BOOST_GET_CONST(platform::CPUPlace, cpu[i].place()),
                       cpu[i].data<void>(), size);
          cuda_pinned[i].set_lod(cpu[i].lod());
S
sneaxiy 已提交
105
        } else {
106 107
          // we set same place flag & use cpu[i] directly
          is_same_place_ = true;
S
sneaxiy 已提交
108
        }
Y
yuyang18 已提交
109
      }
Y
yuyang18 已提交
110
    }
D
Dun Liang 已提交
111
#endif
Y
yuyang18 已提交
112
    return i;
Y
yuyang18 已提交
113 114
  }));
}
F
fengjiayi 已提交
115

Y
yuyang18 已提交
116
void BufferedReader::ShutdownImpl() {
Q
Qiao Longfei 已提交
117
  VLOG(1) << "ShutdownImpl";
Y
yuyang18 已提交
118
  reader_->Shutdown();
Y
yuyang18 已提交
119 120 121
  while (!position_.empty()) {
    position_.pop();
  }
Y
yuyang18 已提交
122
  prev_pos_ = -1UL;
Y
yuyang18 已提交
123
}
F
fengjiayi 已提交
124

Y
yuyang18 已提交
125 126
void BufferedReader::StartImpl() {
  reader_->Start();
Y
yuyang18 已提交
127
  ReadTillBufferFullAsync();
Y
yuyang18 已提交
128
}
F
fengjiayi 已提交
129

Y
yuyang18 已提交
130
void BufferedReader::ReadNextImpl(std::vector<framework::LoDTensor> *out) {
Y
yuyang18 已提交
131 132 133 134 135 136 137 138 139 140 141 142
  if (position_.empty()) {
    out->clear();
    return;
  }
  size_t i = position_.front().get();
  position_.pop();

  if (i == -1UL) {
    ReadNextImpl(out);
    return;
  }

143 144 145
  *out = std::move((platform::is_gpu_place(place_) && !is_same_place_)
                       ? cuda_pinned_buffer_[i]
                       : cpu_buffer_[i]);
Y
yuyang18 已提交
146 147 148 149 150 151 152 153

  // Do not push current position into ReadAsync. Push the previous position
  // Since all computation in fluid are async, change the data of
  // current position may cause data error.
  if (prev_pos_ != -1Ul) {
    ReadAsync(prev_pos_);
  }
  prev_pos_ = i;
Y
yuyang18 已提交
154 155 156 157 158
}

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