buffered_reader.cc 5.2 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>
Y
yuyang18 已提交
17
#include <vector>
D
Dun Liang 已提交
18
#include "paddle/fluid/framework/data_type.h"
Y
yuyang18 已提交
19 20 21 22

namespace paddle {
namespace operators {
namespace reader {
F
fengjiayi 已提交
23 24 25 26 27 28
BufferedReader::~BufferedReader() {
  reader_->Shutdown();
  while (!position_.empty()) {
    position_.front().wait();
    position_.pop();
  }
D
Dun Liang 已提交
29 30 31 32
#ifdef PADDLE_WITH_CUDA
  if (platform::is_gpu_place(place_)) {
    platform::SetDeviceId(boost::get<platform::CUDAPlace>(place_).device);
    PADDLE_ENFORCE(cudaStreamDestroy(stream));
D
Dun Liang 已提交
33
    for (auto &event : events) PADDLE_ENFORCE(cudaEventDestroy(event));
D
Dun Liang 已提交
34 35
  }
#endif
F
fengjiayi 已提交
36 37
}

Y
yuyang18 已提交
38 39 40 41 42 43 44
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) {
D
Dun Liang 已提交
45 46 47
#ifdef PADDLE_WITH_CUDA
  if (platform::is_gpu_place(place_)) {
    platform::SetDeviceId(boost::get<platform::CUDAPlace>(place_).device);
D
Dun Liang 已提交
48 49 50 51 52
    compute_stream =
        ((platform::CUDADeviceContext *)(platform::DeviceContextPool::Instance()
                                             .Get(place_)))
            ->stream();
    events.resize(buffer_size);
53
    for (auto &event : events)
D
Dun Liang 已提交
54
      PADDLE_ENFORCE(cudaEventCreateWithFlags(&event, cudaEventDisableTiming));
55
    PADDLE_ENFORCE(cudaStreamCreateWithFlags(&stream, cudaStreamNonBlocking));
D
Dun Liang 已提交
56 57
  }
#endif
Y
yuyang18 已提交
58 59
  cpu_buffer_.resize(buffer_size);
  gpu_buffer_.resize(buffer_size);
Y
yuyang18 已提交
60
  ReadTillBufferFullAsync();
Y
yuyang18 已提交
61
}
F
fengjiayi 已提交
62

Y
yuyang18 已提交
63
void BufferedReader::ReadTillBufferFullAsync() {
Y
yuyang18 已提交
64 65
  PADDLE_ENFORCE_EQ(position_.size(), 0U);
  for (size_t i = 0; i < buffer_size_; ++i) {
Y
yuyang18 已提交
66
    ReadAsync(i);
Y
yuyang18 已提交
67 68
  }
}
F
fengjiayi 已提交
69

Y
yuyang18 已提交
70
void BufferedReader::ReadAsync(size_t i) {
D
Dun Liang 已提交
71 72 73 74 75 76
#ifdef PADDLE_WITH_CUDA
  if (platform::is_gpu_place(place_)) {
    platform::SetDeviceId(boost::get<platform::CUDAPlace>(place_).device);
    PADDLE_ENFORCE(cudaEventRecord(events[i], compute_stream));
  }
#endif
Y
yuyang18 已提交
77 78 79
  position_.emplace(thread_pool_.enqueue([this, i]() -> size_t {
    TensorVec &cpu = cpu_buffer_[i];
    reader_->ReadNext(&cpu);
Y
yuyang18 已提交
80

Y
yuyang18 已提交
81 82 83
    if (cpu.empty()) {
      return -1UL;
    }
Y
yuyang18 已提交
84

D
Dun Liang 已提交
85 86
#ifdef PADDLE_WITH_CUDA
    // NOTE(liangdun): using async copy instead of TensorCopySync
87
    // TensorCopySync would block other stream
Y
yuyang18 已提交
88
    if (platform::is_gpu_place(place_)) {
D
Dun Liang 已提交
89 90
      platform::SetDeviceId(boost::get<platform::CUDAPlace>(place_).device);
      PADDLE_ENFORCE(cudaStreamWaitEvent(stream, events[i], 0));
Y
yuyang18 已提交
91 92 93
      TensorVec &gpu = gpu_buffer_[i];
      gpu.resize(cpu.size());
      for (size_t i = 0; i < cpu.size(); ++i) {
D
Dun Liang 已提交
94 95 96 97 98 99 100
        gpu[i].Resize(cpu[i].dims());
        gpu[i].set_layout(cpu[i].layout());
        auto cpu_place = cpu[i].place();
        auto cpu_ptr = cpu[i].data<void>();
        auto gpu_ptr = gpu[i].mutable_data(place_, cpu[i].type());
        auto size =
            cpu[i].numel() * paddle::framework::SizeOfType(cpu[i].type());
101
        if (platform::is_cuda_pinned_place(cpu_place))
D
Dun Liang 已提交
102 103 104
          memory::Copy(boost::get<platform::CUDAPlace>(place_), gpu_ptr,
                       boost::get<platform::CUDAPinnedPlace>(cpu_place),
                       cpu_ptr, size, stream);
105
        else if ((platform::is_gpu_place(cpu_place)))
D
Dun Liang 已提交
106 107 108
          memory::Copy(boost::get<platform::CUDAPlace>(place_), gpu_ptr,
                       boost::get<platform::CUDAPlace>(cpu_place), cpu_ptr,
                       size, stream);
109 110 111
        else
          // if cpu place is not pinned, async copy is slower than sync copy,
          // so we use sync copy instead.
D
Dun Liang 已提交
112 113
          memory::Copy(boost::get<platform::CUDAPlace>(place_), gpu_ptr,
                       boost::get<platform::CPUPlace>(cpu_place), cpu_ptr, size,
114
                       0);
Y
yuyang18 已提交
115
        gpu[i].set_lod(cpu[i].lod());
Y
yuyang18 已提交
116
      }
D
Dun Liang 已提交
117
      PADDLE_ENFORCE(cudaStreamSynchronize(stream));
Y
yuyang18 已提交
118
    }
D
Dun Liang 已提交
119
#endif
Y
yuyang18 已提交
120
    return i;
Y
yuyang18 已提交
121 122
  }));
}
F
fengjiayi 已提交
123

Y
yuyang18 已提交
124 125
void BufferedReader::ShutdownImpl() {
  reader_->Shutdown();
Y
yuyang18 已提交
126 127 128
  while (!position_.empty()) {
    position_.pop();
  }
Y
yuyang18 已提交
129
  prev_pos_ = -1UL;
Y
yuyang18 已提交
130
}
F
fengjiayi 已提交
131

Y
yuyang18 已提交
132 133
void BufferedReader::StartImpl() {
  reader_->Start();
Y
yuyang18 已提交
134
  ReadTillBufferFullAsync();
Y
yuyang18 已提交
135
}
F
fengjiayi 已提交
136

Y
yuyang18 已提交
137
void BufferedReader::ReadNextImpl(std::vector<framework::LoDTensor> *out) {
Y
yuyang18 已提交
138 139 140 141 142 143 144 145 146 147 148 149 150
  if (position_.empty()) {
    out->clear();
    return;
  }
  size_t i = position_.front().get();
  position_.pop();

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

  *out = platform::is_gpu_place(place_) ? gpu_buffer_[i] : cpu_buffer_[i];
Y
yuyang18 已提交
151 152 153 154 155 156 157 158

  // 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 已提交
159 160 161 162 163
}

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