tensor.h 3.0 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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42

namespace paddle {
namespace lite {

template <TargetType Target>
class EventTree {
 public:
  using event_t = Event<Target>;

  void AddChild(const event_t& event) { children_.push_back(event); }

  void Sync() {
    for (auto& event : children_) {
      TargetWrapper<Target>::SyncEvent(event);
    }
  }

 private:
  std::vector<event_t> children_;
};

S
update  
superjomn 已提交
43 44
using DDim = std::vector<int64_t>;
static DDim SliceDims(const DDim& dims, int begin, int end) {
S
superjomn 已提交
45 46 47
  return DDim(dims.begin() + begin, dims.begin() + end - 1);
}

S
update  
superjomn 已提交
48
static int product(const DDim& dims) {
S
superjomn 已提交
49 50 51 52
  return std::accumulate(dims.begin(), dims.end(), 1,
                         [](int a, int b) { return a * b; });
}

S
superjomn 已提交
53 54 55 56
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 已提交
57
static DDim flatten_to_2d(const DDim& dims, int col) {
S
superjomn 已提交
58 59 60 61
  return DDim({product(SliceDims(dims, 0, col)),
               product(SliceDims(dims, col, dims.size()))});
}

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

S
superjomn 已提交
64 65 66
// A light-weight tensor implementation.
class Tensor {
 public:
S
Superjomn 已提交
67
  Tensor() : buffer_(std::make_shared<Buffer>()) {}
S
superjomn 已提交
68 69 70

  template <typename T>
  const T* data() const {
S
Superjomn 已提交
71
    return static_cast<const T*>(buffer_->data());
S
superjomn 已提交
72 73 74 75 76 77
  }

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

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

S
update  
superjomn 已提交
78 79 80
  const LoD& lod() { return lod_; }
  LoD* mutable_lod() { return &lod_; }

S
superjomn 已提交
81 82
  template <typename T>
  T* mutable_data() {
S
Superjomn 已提交
83 84
    buffer_->ResetLazy(target_, product(dims_) * sizeof(T));
    return static_cast<T*>(buffer_->data());
S
superjomn 已提交
85 86
  }

S
Superjomn 已提交
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
  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 已提交
103 104 105 106

 private:
  TargetType target_{TargetType::kHost};
  DDim dims_;
S
Superjomn 已提交
107
  std::shared_ptr<Buffer> buffer_;
S
update  
superjomn 已提交
108
  LoD lod_;
S
superjomn 已提交
109 110
};

S
superjomn 已提交
111 112 113
std::ostream& operator<<(std::ostream& os, const DDim& dims);
std::ostream& operator<<(std::ostream& os, const Tensor& tensor);

S
superjomn 已提交
114 115
}  // namespace lite
}  // namespace paddle