tensor.h 3.3 KB
Newer Older
S
superjomn 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Copyright (c) 2019 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.

#pragma once
#include <algorithm>
S
Superjomn 已提交
17
#include <memory>
C
update  
Chunwei 已提交
18
#include <numeric>
S
superjomn 已提交
19
#include <vector>
S
Superjomn 已提交
20 21
#include "paddle/fluid/lite/core/memory.h"
#include "paddle/fluid/lite/core/target_wrapper.h"
S
superjomn 已提交
22 23 24 25

namespace paddle {
namespace lite {

S
update  
superjomn 已提交
26 27
using DDim = std::vector<int64_t>;
static DDim SliceDims(const DDim& dims, int begin, int end) {
S
superjomn 已提交
28 29 30
  return DDim(dims.begin() + begin, dims.begin() + end - 1);
}

S
update  
superjomn 已提交
31
static int product(const DDim& dims) {
S
superjomn 已提交
32 33 34 35
  return std::accumulate(dims.begin(), dims.end(), 1,
                         [](int a, int b) { return a * b; });
}

S
superjomn 已提交
36 37 38 39
static int product(DDim::const_iterator begin, DDim::const_iterator end) {
  return std::accumulate(begin, end, 1, [](int a, int b) { return a * b; });
}

S
update  
superjomn 已提交
40
static DDim flatten_to_2d(const DDim& dims, int col) {
S
superjomn 已提交
41 42 43 44
  return DDim({product(SliceDims(dims, 0, col)),
               product(SliceDims(dims, col, dims.size()))});
}

S
update  
superjomn 已提交
45 46
using LoD = std::vector<std::vector<size_t>>;

S
superjomn 已提交
47 48 49
// A light-weight tensor implementation.
class Tensor {
 public:
S
Superjomn 已提交
50
  Tensor() : buffer_(std::make_shared<Buffer>()) {}
S
superjomn 已提交
51 52 53

  template <typename T>
  const T* data() const {
S
Superjomn 已提交
54
    return static_cast<const T*>(buffer_->data());
S
superjomn 已提交
55 56 57 58 59 60
  }

  void Resize(const DDim& ddim) { dims_ = ddim; }

  const DDim& dims() const { return dims_; }

S
update  
superjomn 已提交
61 62 63
  const LoD& lod() { return lod_; }
  LoD* mutable_lod() { return &lod_; }

S
superjomn 已提交
64 65
  template <typename T>
  T* mutable_data() {
S
Superjomn 已提交
66 67 68 69 70 71 72 73 74
    memory_size_ = product(dims_) * sizeof(T);
    buffer_->ResetLazy(target_, memory_size_);
    return static_cast<T*>(buffer_->data());
  }

  template <typename T>
  T* mutable_data(TargetType target) {
    target_ = target;
    buffer_->ResetLazy(target, memory_size());
S
Superjomn 已提交
75
    return static_cast<T*>(buffer_->data());
S
superjomn 已提交
76 77
  }

S
Superjomn 已提交
78 79 80 81 82 83 84 85 86 87 88 89
  void* mutable_data(size_t memory_size) {
    buffer_->ResetLazy(target_, memory_size);
    return buffer_->data();
  }

  void* mutable_data(TargetType target, size_t memory_size) {
    target_ = target;
    return mutable_data(memory_size);
  }

  size_t memory_size() const { return memory_size_; }

S
Superjomn 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
  bool IsInitialized() const { return buffer_->data(); }

  // Other share data to this.
  void ShareDataWith(const Tensor& other) {
    buffer_ = other.buffer_;
    dims_ = other.dims_;
    target_ = other.target_;
    lod_ = other.lod_;
  }

  void CopyDataFrom(const Tensor& other) {
    dims_ = other.dims_;
    target_ = other.target_;
    lod_ = other.lod_;
    *buffer_ = *other.buffer_;
  }
S
superjomn 已提交
106

S
Superjomn 已提交
107 108
  TargetType target() const { return target_; }

S
superjomn 已提交
109 110 111
 private:
  TargetType target_{TargetType::kHost};
  DDim dims_;
S
Superjomn 已提交
112
  std::shared_ptr<Buffer> buffer_;
S
update  
superjomn 已提交
113
  LoD lod_;
S
Superjomn 已提交
114
  size_t memory_size_{};
S
superjomn 已提交
115 116
};

S
superjomn 已提交
117 118 119
std::ostream& operator<<(std::ostream& os, const DDim& dims);
std::ostream& operator<<(std::ostream& os, const Tensor& tensor);

S
superjomn 已提交
120 121
}  // namespace lite
}  // namespace paddle