buffered_reader.cc 6.4 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";
D
Dun Liang 已提交
45 46
#ifdef PADDLE_WITH_CUDA
  if (platform::is_gpu_place(place_)) {
47
    int dev_idx = BOOST_GET_CONST(platform::CUDAPlace, place_).device;
S
sneaxiy 已提交
48
    compute_stream_ =
D
Dun Liang 已提交
49 50 51
        ((platform::CUDADeviceContext *)(platform::DeviceContextPool::Instance()
                                             .Get(place_)))
            ->stream();
S
sneaxiy 已提交
52 53
    events_.resize(buffer_size);
    for (auto &event : events_) {
54
      event = platform::CudaEventResourcePool::Instance().New(dev_idx);
S
sneaxiy 已提交
55
    }
56
    stream_ = platform::CudaStreamResourcePool::Instance().New(dev_idx);
D
Dun Liang 已提交
57 58
  }
#endif
Y
yuyang18 已提交
59 60
  cpu_buffer_.resize(buffer_size);
  gpu_buffer_.resize(buffer_size);
Y
yuyang18 已提交
61
  ReadTillBufferFullAsync();
Y
yuyang18 已提交
62
}
F
fengjiayi 已提交
63

Y
yuyang18 已提交
64
void BufferedReader::ReadTillBufferFullAsync() {
Y
yuyang18 已提交
65
  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) {
Y
yuyang18 已提交
71 72 73
  position_.emplace(thread_pool_.enqueue([this, i]() -> size_t {
    TensorVec &cpu = cpu_buffer_[i];
    reader_->ReadNext(&cpu);
Y
yuyang18 已提交
74

Y
yuyang18 已提交
75 76 77
    if (cpu.empty()) {
      return -1UL;
    }
Y
yuyang18 已提交
78

D
Dun Liang 已提交
79 80
#ifdef PADDLE_WITH_CUDA
    // NOTE(liangdun): using async copy instead of TensorCopySync
81 82 83
    // TensorCopySync would block other stream, because TensorCopySync
    // issues the copying command to the default stream, it will make two
    // commands from different streams cannot run concurrently.
Y
yuyang18 已提交
84 85
    if (platform::is_gpu_place(place_)) {
      TensorVec &gpu = gpu_buffer_[i];
86 87 88
      if (gpu.empty()) {
        gpu.resize(cpu.size());
      } else {
89 90 91 92
        PADDLE_ENFORCE_EQ(
            gpu.size(), cpu.size(),
            platform::errors::InvalidArgument(
                "Input tensor number on GPU and CPU devices are not matched."));
93 94 95 96
      }

      std::vector<void *> gpu_ptrs;
      gpu_ptrs.reserve(cpu.size());
Y
yuyang18 已提交
97
      for (size_t i = 0; i < cpu.size(); ++i) {
D
Dun Liang 已提交
98 99
        gpu[i].Resize(cpu[i].dims());
        gpu[i].set_layout(cpu[i].layout());
100 101 102 103 104 105
        gpu_ptrs.emplace_back(gpu[i].mutable_data(place_, cpu[i].type()));
      }

      // NOTE(zjl): cudaStreamWaitEvent() must be called after all
      // gpu[i].mutable_data() is called, since some ops release
      // gpu memory immediately without waiting gpu kernel ends
106 107
      platform::SetDeviceId(
          BOOST_GET_CONST(platform::CUDAPlace, place_).device);
108
      PADDLE_ENFORCE_CUDA_SUCCESS(
109
          cudaEventRecord(events_[i].get(), compute_stream_));
110
      PADDLE_ENFORCE_CUDA_SUCCESS(
111
          cudaStreamWaitEvent(stream_.get(), events_[i].get(), 0));
112 113 114

      platform::RecordEvent record_event("BufferedReader:MemoryCopy");
      for (size_t i = 0; i < cpu.size(); ++i) {
D
Dun Liang 已提交
115 116
        auto cpu_place = cpu[i].place();
        auto cpu_ptr = cpu[i].data<void>();
117
        auto gpu_ptr = gpu_ptrs[i];
D
Dun Liang 已提交
118 119
        auto size =
            cpu[i].numel() * paddle::framework::SizeOfType(cpu[i].type());
S
sneaxiy 已提交
120
        if (platform::is_cuda_pinned_place(cpu_place)) {
121 122
          memory::Copy(BOOST_GET_CONST(platform::CUDAPlace, place_), gpu_ptr,
                       BOOST_GET_CONST(platform::CUDAPinnedPlace, cpu_place),
123
                       cpu_ptr, size, stream_.get());
S
sneaxiy 已提交
124
        } else if ((platform::is_gpu_place(cpu_place))) {
125 126
          memory::Copy(BOOST_GET_CONST(platform::CUDAPlace, place_), gpu_ptr,
                       BOOST_GET_CONST(platform::CUDAPlace, cpu_place), cpu_ptr,
127
                       size, stream_.get());
S
sneaxiy 已提交
128
        } else {
129 130 131 132 133 134
          platform::CUDAPinnedPlace cuda_pinned_place;
          framework::LoDTensor cuda_pinned_tensor;
          cuda_pinned_tensor.Resize(cpu[i].dims());
          auto cuda_pinned_ptr =
              cuda_pinned_tensor.mutable_data(cuda_pinned_place, cpu[i].type());
          memory::Copy(cuda_pinned_place, cuda_pinned_ptr,
135
                       BOOST_GET_CONST(platform::CPUPlace, cpu_place), cpu_ptr,
136
                       size);
137
          memory::Copy(BOOST_GET_CONST(platform::CUDAPlace, place_), gpu_ptr,
138
                       cuda_pinned_place, cuda_pinned_ptr, size, stream_.get());
139
          PADDLE_ENFORCE_CUDA_SUCCESS(cudaStreamSynchronize(stream_.get()));
S
sneaxiy 已提交
140
        }
Y
yuyang18 已提交
141
        gpu[i].set_lod(cpu[i].lod());
Y
yuyang18 已提交
142
      }
143
      PADDLE_ENFORCE_CUDA_SUCCESS(cudaStreamSynchronize(stream_.get()));
Y
yuyang18 已提交
144
    }
D
Dun Liang 已提交
145
#endif
Y
yuyang18 已提交
146
    return i;
Y
yuyang18 已提交
147 148
  }));
}
F
fengjiayi 已提交
149

Y
yuyang18 已提交
150
void BufferedReader::ShutdownImpl() {
Q
Qiao Longfei 已提交
151
  VLOG(1) << "ShutdownImpl";
Y
yuyang18 已提交
152
  reader_->Shutdown();
Y
yuyang18 已提交
153 154 155
  while (!position_.empty()) {
    position_.pop();
  }
Y
yuyang18 已提交
156
  prev_pos_ = -1UL;
Y
yuyang18 已提交
157
}
F
fengjiayi 已提交
158

Y
yuyang18 已提交
159 160
void BufferedReader::StartImpl() {
  reader_->Start();
Y
yuyang18 已提交
161
  ReadTillBufferFullAsync();
Y
yuyang18 已提交
162
}
F
fengjiayi 已提交
163

Y
yuyang18 已提交
164
void BufferedReader::ReadNextImpl(std::vector<framework::LoDTensor> *out) {
Y
yuyang18 已提交
165 166 167 168 169 170 171 172 173 174 175 176
  if (position_.empty()) {
    out->clear();
    return;
  }
  size_t i = position_.front().get();
  position_.pop();

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

Z
Zeng Jinle 已提交
177 178
  *out = std::move(platform::is_gpu_place(place_) ? gpu_buffer_[i]
                                                  : cpu_buffer_[i]);
Y
yuyang18 已提交
179 180 181 182 183 184 185 186

  // 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 已提交
187 188 189 190 191
}

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