TensorShape.h 2.6 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
H
hedaoyuan 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

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. */

#pragma once

#include <glog/logging.h>

namespace paddle {

/**
 * TensorShape used to represent shape of normal tensor.
 */
class TensorShape {
W
Wu Yi 已提交
25
 public:
H
hedaoyuan 已提交
26 27 28 29 30 31 32
  TensorShape() : ndims_(0), nelements_(0) { initDims(0); }

  TensorShape(size_t ndims) : ndims_(ndims), nelements_(1) { initDims(ndims); };

  TensorShape(std::initializer_list<size_t> dims) {
    ndims_ = dims.size();
    initDims(ndims_);
H
hedaoyuan 已提交
33
    dims_.assign(dims);
H
hedaoyuan 已提交
34 35 36 37 38 39
    numElements();
  };

  TensorShape(const TensorShape& t)
      : ndims_(t.ndims_), nelements_(t.nelements_) {
    initDims(ndims_);
H
hedaoyuan 已提交
40
    dims_.assign(t.dims_.begin(), t.dims_.end());
H
hedaoyuan 已提交
41 42 43 44
  };

  // get the size of specified dimension
  size_t operator[](size_t dim) const {
H
hedaoyuan 已提交
45
    CHECK_GE(dim, (size_t)0);
H
hedaoyuan 已提交
46 47 48 49 50 51
    CHECK_LT(dim, ndims_);
    return dims_[dim];
  }

  // set the size of specified dimension
  void setDim(size_t dim, size_t size) {
H
hedaoyuan 已提交
52
    CHECK_GE(dim, (size_t)0);
H
hedaoyuan 已提交
53 54 55 56 57
    CHECK_LT(dim, ndims_);
    dims_[dim] = size;
    numElements();
  }

D
dangqingqing 已提交
58 59 60 61 62 63 64 65 66
  void reshape(std::initializer_list<size_t> dims) {
    ndims_ = dims.size();
    if (ndims_ > kMinDims) {
      dims_.resize(ndims_);
    }
    dims_.assign(dims);
    numElements();
  }

H
hedaoyuan 已提交
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
  // number of dimensions of the tensor
  size_t ndims() const { return ndims_; }

  size_t getElements() const { return nelements_; }

  bool operator==(const TensorShape& t) const {
    if (ndims() != t.ndims()) return false;
    for (size_t i = 0; i < ndims(); i++) {
      if (dims_[i] != t.dims_[i]) return false;
    }

    return true;
  }

  bool operator!=(const TensorShape& t) const { return !(*this == t); }

W
Wu Yi 已提交
83
 private:
H
hedaoyuan 已提交
84 85 86 87 88 89 90 91 92 93
  // compute number of elements
  void numElements() {
    nelements_ = 1;
    for (size_t n = 0; n < ndims_; n++) {
      nelements_ *= dims_[n];
    }
  }

  // init dims_
  void initDims(size_t ndims) {
D
dangqingqing 已提交
94
    size_t count = ndims < kMinDims ? kMinDims : ndims;
H
hedaoyuan 已提交
95 96 97 98 99 100 101 102 103
    dims_.assign(count, 1);
  }

  // number of dimensions
  // ndims_ may be not equeal dims_.size()
  size_t ndims_;
  // number of elements
  size_t nelements_;
  std::vector<size_t> dims_;
D
dangqingqing 已提交
104
  static const size_t kMinDims = 4;
H
hedaoyuan 已提交
105 106 107
};

}  // namespace paddle