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 18 19 20 21 22 23
  TensorT(size_t size) : height_(1), width_(size) { data_ = new T[size]; }
  TensorT(T* data, size_t size) : height_(1), width_(size), data_(data) {}
  TensorT(T* data, size_t h, size_t w) : height_(h), width_(w), data_(data_) {}
  ~TensorT() {
    if (data_) delete data_;
  }

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

protected:
  size_t height_;
  size_t width_;
  T* data_;
40 41
};

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

45 46
}  // namespace optimizer
}  // namespace paddle