buffered_reader.cc 2.4 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 {
Y
yuyang18 已提交
21
BufferedReader::~BufferedReader() { reader_->Shutdown(); }
Y
yuyang18 已提交
22 23 24 25 26 27 28
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 已提交
29 30
  cpu_buffer_.resize(buffer_size);
  gpu_buffer_.resize(buffer_size);
Y
yuyang18 已提交
31 32 33
  AppendFutureToBatchSize();
}
void BufferedReader::AppendFutureToBatchSize() {
Y
yuyang18 已提交
34 35 36
  PADDLE_ENFORCE_EQ(position_.size(), 0U);
  for (size_t i = 0; i < buffer_size_; ++i) {
    AppendFuture(i);
Y
yuyang18 已提交
37 38
  }
}
Y
yuyang18 已提交
39 40 41 42
void BufferedReader::AppendFuture(size_t i) {
  position_.emplace(thread_pool_.enqueue([this, i]() -> size_t {
    TensorVec &cpu = cpu_buffer_[i];
    reader_->ReadNext(&cpu);
Y
yuyang18 已提交
43

Y
yuyang18 已提交
44 45 46
    if (cpu.empty()) {
      return -1UL;
    }
Y
yuyang18 已提交
47

Y
yuyang18 已提交
48 49 50 51 52 53
    if (platform::is_gpu_place(place_)) {
      TensorVec &gpu = gpu_buffer_[i];
      gpu.resize(cpu.size());
      for (size_t i = 0; i < cpu.size(); ++i) {
        framework::TensorCopySync(cpu[i], place_, &gpu[i]);
      }
Y
yuyang18 已提交
54
    }
Y
yuyang18 已提交
55
    return i;
Y
yuyang18 已提交
56 57 58 59
  }));
}
void BufferedReader::ShutdownImpl() {
  reader_->Shutdown();
Y
yuyang18 已提交
60 61 62
  while (!position_.empty()) {
    position_.pop();
  }
Y
yuyang18 已提交
63 64 65 66 67 68
}
void BufferedReader::StartImpl() {
  reader_->Start();
  AppendFutureToBatchSize();
}
void BufferedReader::ReadNextImpl(std::vector<framework::LoDTensor> *out) {
Y
yuyang18 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81 82
  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];
  AppendFuture(i);
Y
yuyang18 已提交
83 84 85 86 87
}

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