var_desc.cc 2.2 KB
Newer Older
F
fengjiayi 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* Copyright (c) 2016 PaddlePaddle Authors. 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 "paddle/framework/var_desc.h"
Y
Yu Yang 已提交
16
#include "paddle/platform/enforce.h"
F
fengjiayi 已提交
17 18 19 20 21

namespace paddle {
namespace framework {

void VarDescBind::SetShape(const std::vector<int64_t> &dims) {
Y
Yu Yang 已提交
22
  VectorToRepeated(dims, mutable_tensor_desc()->mutable_dims());
F
fengjiayi 已提交
23 24
}

F
fengjiayi 已提交
25
void VarDescBind::SetDataType(DataType data_type) {
Y
Yu Yang 已提交
26
  mutable_tensor_desc()->set_data_type(data_type);
F
fengjiayi 已提交
27 28 29
}

std::vector<int64_t> VarDescBind::Shape() const {
Y
Yu Yang 已提交
30
  return RepeatedToVector(tensor_desc().dims());
F
fengjiayi 已提交
31 32
}

Y
Yu Yang 已提交
33
DataType VarDescBind::GetDataType() const { return tensor_desc().data_type(); }
Y
Stash  
Yu Yang 已提交
34 35

void VarDescBind::SetLoDLevel(int32_t lod_level) {
Y
Yu Yang 已提交
36
  PADDLE_ENFORCE(desc_.type() == VarDesc::LOD_TENSOR);
Y
Stash  
Yu Yang 已提交
37 38 39 40
  desc_.mutable_lod_tensor()->set_lod_level(lod_level);
}

int32_t VarDescBind::GetLodLevel() const {
Y
Yu Yang 已提交
41
  PADDLE_ENFORCE(desc_.type() == VarDesc::LOD_TENSOR);
Y
Stash  
Yu Yang 已提交
42 43
  return desc_.lod_tensor().lod_level();
}
Y
Yu Yang 已提交
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

const TensorDesc &VarDescBind::tensor_desc() const {
  PADDLE_ENFORCE(desc_.has_type(), "invoke TensorDesc must after set type");
  switch (desc_.type()) {
    case VarDesc::SELECTED_ROWS:
      return desc_.selected_rows();
    case VarDesc::LOD_TENSOR:
      return desc_.lod_tensor().tensor();
    default:
      PADDLE_THROW("Unexpected branch.");
  }
}

TensorDesc *VarDescBind::mutable_tensor_desc() {
  PADDLE_ENFORCE(desc_.has_type(),
                 "invoke MutableTensorDesc must after set type");
  switch (desc_.type()) {
    case VarDesc::SELECTED_ROWS:
      return desc_.mutable_selected_rows();
    case VarDesc::LOD_TENSOR:
      return desc_.mutable_lod_tensor()->mutable_tensor();
    default:
      PADDLE_THROW("Unexpected branch.");
  }
}
F
fengjiayi 已提交
69 70
}  // namespace framework
}  // namespace paddle