DataLayer.cpp 2.1 KB
Newer Older
Z
zhangjinchao01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
/* Copyright (c) 2016 Baidu, Inc. All Rights Reserve.

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 "DataLayer.h"

namespace paddle {

REGISTER_LAYER(data, DataLayer);

void DataLayer::copyDataToOutput(Argument& output) {
  if (output.deviceId == data_.deviceId) {
    output.value = data_.value;
    output.in = data_.in;
    output.grad = data_.grad;
    output.ids = data_.ids;
  } else {
    SetDevice device(output.deviceId);
    if (data_.value) {
      if (!output.value) {
        output.value = data_.value->clone(data_.value->getHeight(),
                                          data_.value->getWidth(),
                                          useGpu(output.deviceId));
      } else {
35
        output.value->resize(data_.value->getHeight(), data_.value->getWidth());
Z
zhangjinchao01 已提交
36 37 38 39
      }
      output.value->copyFrom(*data_.value);
    }
    if (data_.grad) {
40 41
      Matrix::resizeOrCreate(output.grad,
                             data_.grad->getHeight(),
Z
zhangjinchao01 已提交
42
                             data_.grad->getWidth(),
43 44
                             /* trans= */ false,
                             useGpu(output.deviceId));
Z
zhangjinchao01 已提交
45 46
    }
    if (data_.ids) {
47 48
      IVector::resizeOrCreate(
          output.ids, data_.ids->getSize(), useGpu(output.deviceId));
Z
zhangjinchao01 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62
      output.ids->copyFrom(*data_.ids);
    }
  }
  output.setFrameHeight(data_.getFrameHeight());
  output.setFrameWidth(data_.getFrameWidth());
  output.cpuSequenceDims = data_.cpuSequenceDims;
  output.sequenceStartPositions = data_.sequenceStartPositions;
  output.subSequenceStartPositions = data_.subSequenceStartPositions;
  output.strs = data_.strs;

  output.notifyValueReady();
}

}  // namespace paddle