Tensor.h 1.1 KB
Newer Older
D
dzhwinter 已提交
1
#pragma once
2 3 4 5 6
/**
 * @brief tensor used by optimizer
 */

#include <string.h>
D
dzhwinter 已提交
7
#include <memory>
D
dzhwinter 已提交
8 9
#include "paddle/utils/Common.h"
#include "paddle/utils/Logging.h"
10 11 12 13 14

namespace paddle {
namespace optimizer {

template <class T>
D
dzhwinter 已提交
15
class TensorT {
16
public:
D
dzhwinter 已提交
17
  TensorT(size_t size) : height_(1), width_(size) { data_ = new T[size]; }
D
dzhwinter 已提交
18

D
dzhwinter 已提交
19
  TensorT(T* data, size_t size) : height_(1), width_(size), data_(data) {}
D
dzhwinter 已提交
20 21 22

  TensorT(T* data, size_t h, size_t w) : height_(h), width_(w), data_(data) {}

D
dzhwinter 已提交
23 24 25 26
  ~TensorT() {
    if (data_) delete data_;
  }

27
  T* get_buffer() { return this->data_; }
D
dzhwinter 已提交
28

29
  T& operator[](const size_t idx) {
D
dzhwinter 已提交
30
    CHECK(idx >= 0 && idx < this->width_) << "out of index range";
D
dzhwinter 已提交
31 32
    return data_[idx];
  }
33
  T& operator[](const size_t idx) const {
D
dzhwinter 已提交
34 35
    CHECK(idx >= 0 && idx < this->width_) << "out of index range";
    return data_[idx];
36
  }
37
  // TODO: replace with tensorshape
D
dzhwinter 已提交
38
  size_t size() const { return this->width_ * this->height_; }
D
dzhwinter 已提交
39 40 41 42 43

protected:
  size_t height_;
  size_t width_;
  T* data_;
44 45
};

D
dzhwinter 已提交
46
// TODO(zhihong): design problem of dynamic datatype, need to fix it
47
typedef TensorT<float> Tensor;
D
dzhwinter 已提交
48

49 50
}  // namespace optimizer
}  // namespace paddle