tensor.h 3.1 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
Superjomn 已提交
61
  const LoD& lod() const { return lod_; }
S
update  
superjomn 已提交
62 63
  LoD* mutable_lod() { return &lod_; }

S
superjomn 已提交
64
  template <typename T>
S
superjomn 已提交
65
  T* mutable_data();
S
Superjomn 已提交
66
  template <typename T>
S
superjomn 已提交
67 68 69
  T* mutable_data(TargetType target);
  void* mutable_data(size_t memory_size);
  void* mutable_data(TargetType target, size_t memory_size);
S
Superjomn 已提交
70 71 72

  size_t memory_size() const { return memory_size_; }

S
Superjomn 已提交
73 74 75
  bool IsInitialized() const { return buffer_->data(); }

  // Other share data to this.
S
superjomn 已提交
76
  void ShareDataWith(const Tensor& other);
S
Superjomn 已提交
77

S
superjomn 已提交
78
  void CopyDataFrom(const Tensor& other);
S
superjomn 已提交
79

S
Superjomn 已提交
80 81
  TargetType target() const { return target_; }

S
superjomn 已提交
82 83 84
 private:
  TargetType target_{TargetType::kHost};
  DDim dims_;
S
Superjomn 已提交
85
  std::shared_ptr<Buffer> buffer_;
S
update  
superjomn 已提交
86
  LoD lod_;
S
Superjomn 已提交
87
  size_t memory_size_{};
S
superjomn 已提交
88 89
};

S
superjomn 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
template <typename T>
T* Tensor::mutable_data() {
  memory_size_ = product(dims_) * sizeof(T);
  buffer_->ResetLazy(target_, memory_size_);
  return static_cast<T*>(buffer_->data());
}

template <typename T>
T* Tensor::mutable_data(TargetType target) {
  target_ = target;
  memory_size_ = product(dims_) * sizeof(T);
  buffer_->ResetLazy(target, memory_size());
  return static_cast<T*>(buffer_->data());
}

S
superjomn 已提交
105 106 107
std::ostream& operator<<(std::ostream& os, const DDim& dims);
std::ostream& operator<<(std::ostream& os, const Tensor& tensor);

S
superjomn 已提交
108 109
}  // namespace lite
}  // namespace paddle