buffered_reader.cc 2.9 KB
Newer Older
Y
yuyang18 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// 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"
#include <vector>

namespace paddle {
namespace operators {
namespace reader {
F
fengjiayi 已提交
21 22 23 24 25 26 27 28
BufferedReader::~BufferedReader() {
  reader_->Shutdown();
  while (!position_.empty()) {
    position_.front().wait();
    position_.pop();
  }
}

Y
yuyang18 已提交
29 30 31 32 33 34 35
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) {
Y
yuyang18 已提交
36 37
  cpu_buffer_.resize(buffer_size);
  gpu_buffer_.resize(buffer_size);
Y
yuyang18 已提交
38
  ReadTillBufferFullAsync();
Y
yuyang18 已提交
39
}
F
fengjiayi 已提交
40

Y
yuyang18 已提交
41
void BufferedReader::ReadTillBufferFullAsync() {
Y
yuyang18 已提交
42 43
  PADDLE_ENFORCE_EQ(position_.size(), 0U);
  for (size_t i = 0; i < buffer_size_; ++i) {
Y
yuyang18 已提交
44
    ReadAsync(i);
Y
yuyang18 已提交
45 46
  }
}
F
fengjiayi 已提交
47

Y
yuyang18 已提交
48
void BufferedReader::ReadAsync(size_t i) {
Y
yuyang18 已提交
49 50 51
  position_.emplace(thread_pool_.enqueue([this, i]() -> size_t {
    TensorVec &cpu = cpu_buffer_[i];
    reader_->ReadNext(&cpu);
Y
yuyang18 已提交
52

Y
yuyang18 已提交
53 54 55
    if (cpu.empty()) {
      return -1UL;
    }
Y
yuyang18 已提交
56

Y
yuyang18 已提交
57 58 59 60
    if (platform::is_gpu_place(place_)) {
      TensorVec &gpu = gpu_buffer_[i];
      gpu.resize(cpu.size());
      for (size_t i = 0; i < cpu.size(); ++i) {
Y
Yancey1989 已提交
61
        VLOG(1) << "launch tensor copy from cpu to cpu, idx: " << i;
Y
yuyang18 已提交
62
        framework::TensorCopySync(cpu[i], place_, &gpu[i]);
Y
Yancey1989 已提交
63
        VLOG(1) << "done " << i;
Y
yuyang18 已提交
64
        gpu[i].set_lod(cpu[i].lod());
Y
yuyang18 已提交
65
      }
Y
yuyang18 已提交
66
    }
Y
yuyang18 已提交
67
    return i;
Y
yuyang18 已提交
68 69
  }));
}
F
fengjiayi 已提交
70

Y
yuyang18 已提交
71 72
void BufferedReader::ShutdownImpl() {
  reader_->Shutdown();
Y
yuyang18 已提交
73 74 75
  while (!position_.empty()) {
    position_.pop();
  }
Y
yuyang18 已提交
76
  prev_pos_ = -1UL;
Y
yuyang18 已提交
77
}
F
fengjiayi 已提交
78

Y
yuyang18 已提交
79 80
void BufferedReader::StartImpl() {
  reader_->Start();
Y
yuyang18 已提交
81
  ReadTillBufferFullAsync();
Y
yuyang18 已提交
82
}
F
fengjiayi 已提交
83

Y
yuyang18 已提交
84
void BufferedReader::ReadNextImpl(std::vector<framework::LoDTensor> *out) {
Y
yuyang18 已提交
85 86 87 88 89 90 91 92 93 94 95 96 97
  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 已提交
98 99 100 101 102 103 104 105

  // 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 已提交
106 107 108 109 110
}

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