variable_helper.cc 3.5 KB
Newer Older
W
Wang Guibao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/* Copyright (c) 2016 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/framework/variable_helper.h"

#include "paddle/fluid/framework/feed_fetch_type.h"
#include "paddle/fluid/framework/lod_rank_table.h"
#include "paddle/fluid/framework/lod_tensor.h"
#include "paddle/fluid/framework/lod_tensor_array.h"
#include "paddle/fluid/framework/reader.h"
#include "paddle/fluid/framework/scope.h"
23
#include "paddle/fluid/framework/selected_rows_utils.h"
S
Steffy-zxf 已提交
24
#include "paddle/fluid/framework/string_array.h"
W
Wang Guibao 已提交
25 26 27 28
#include "paddle/fluid/platform/place.h"

namespace paddle {
namespace framework {
29

Q
Qiao Longfei 已提交
30
void InitializeVariable(Variable *var, proto::VarType::Type var_type) {
W
Wang Guibao 已提交
31 32 33 34 35
  if (var_type == proto::VarType::LOD_TENSOR) {
    var->GetMutable<LoDTensor>();
  } else if (var_type == proto::VarType::SELECTED_ROWS) {
    var->GetMutable<SelectedRows>();
  } else if (var_type == proto::VarType::FEED_MINIBATCH) {
36
    var->GetMutable<FeedList>();
W
Wang Guibao 已提交
37
  } else if (var_type == proto::VarType::FETCH_LIST) {
38
    var->GetMutable<FetchList>();
W
Wang Guibao 已提交
39
  } else if (var_type == proto::VarType::STEP_SCOPES) {
Q
Qiao Longfei 已提交
40
    var->GetMutable<std::vector<framework::Scope *>>();
W
Wang Guibao 已提交
41 42 43 44
  } else if (var_type == proto::VarType::LOD_RANK_TABLE) {
    var->GetMutable<LoDRankTable>();
  } else if (var_type == proto::VarType::LOD_TENSOR_ARRAY) {
    var->GetMutable<LoDTensorArray>();
S
Steffy-zxf 已提交
45 46 47 48
  } else if (var_type == proto::VarType::STRINGS) {
    var->GetMutable<Strings>();
  } else if (var_type == proto::VarType::VOCAB) {
    var->GetMutable<Vocab>();
W
Wang Guibao 已提交
49 50 51 52 53 54 55
  } else if (var_type == proto::VarType::PLACE_LIST) {
    var->GetMutable<platform::PlaceList>();
  } else if (var_type == proto::VarType::READER) {
    var->GetMutable<ReaderHolder>();
  } else if (var_type == proto::VarType::RAW) {
    // GetMutable will be called in operator
  } else {
56
    PADDLE_THROW(platform::errors::Unavailable(
W
Wang Guibao 已提交
57 58
        "Variable type %d is not in "
        "[LOD_TENSOR, SELECTED_ROWS, FEED_MINIBATCH, FETCH_LIST, "
59 60
        "LOD_RANK_TABLE, PLACE_LIST, READER, RAW].",
        var_type));
W
Wang Guibao 已提交
61 62
  }
}
Q
Qiao Longfei 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81

void CopyVariable(const Variable &src_var, Variable *dst_var) {
  // only support cpu now
  auto cpu_place = platform::CPUPlace();

  if (src_var.IsType<framework::LoDTensor>()) {
    auto *tmp_grad_tensor = dst_var->GetMutable<framework::LoDTensor>();
    auto &src_tensor = src_var.Get<framework::LoDTensor>();
    tmp_grad_tensor->set_lod(src_tensor.lod());
    framework::TensorCopy(src_tensor, cpu_place, tmp_grad_tensor);
  } else if (src_var.IsType<framework::SelectedRows>()) {
    auto &src_slr = src_var.Get<framework::SelectedRows>();
    auto *tmp_grad_slr = dst_var->GetMutable<framework::SelectedRows>();
    tmp_grad_slr->set_rows(src_slr.rows());
    tmp_grad_slr->set_height(src_slr.height());
    auto &src_t = src_slr.value();
    auto *dst_t = tmp_grad_slr->mutable_value();
    framework::TensorCopy(src_t, cpu_place, dst_t);
  } else {
82 83
    PADDLE_THROW(
        platform::errors::Unavailable("Unknown variable type to copy."));
Q
Qiao Longfei 已提交
84 85
  }
}
86

W
Wang Guibao 已提交
87 88
}  // namespace framework
}  // namespace paddle