tensor.h 2.4 KB
Newer Older
S
superjomn 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// 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>
#include <vector>
C
update  
Chunwei 已提交
18
#include <numeric>
S
superjomn 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
#include "memory.h"

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 已提交
41 42
using DDim = std::vector<int64_t>;
static DDim SliceDims(const DDim& dims, int begin, int end) {
S
superjomn 已提交
43 44 45
  return DDim(dims.begin() + begin, dims.begin() + end - 1);
}

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

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

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

S
superjomn 已提交
62 63 64
// A light-weight tensor implementation.
class Tensor {
 public:
S
update  
superjomn 已提交
65
  Tensor() = default;
S
superjomn 已提交
66 67 68 69 70 71 72 73 74 75

  template <typename T>
  const T* data() const {
    return static_cast<const T*>(buffer_.data());
  }

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

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

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

S
superjomn 已提交
79 80
  template <typename T>
  T* mutable_data() {
S
superjomn 已提交
81
    buffer_.ResetLazy(target_, product(dims_) * sizeof(T));
S
superjomn 已提交
82 83 84 85 86 87 88 89 90
    return static_cast<T*>(buffer_.data());
  }

  bool IsInitialized() const { return buffer_.data(); }

 private:
  TargetType target_{TargetType::kHost};
  DDim dims_;
  Buffer buffer_;
S
update  
superjomn 已提交
91
  LoD lod_;
S
superjomn 已提交
92 93 94 95
};

}  // namespace lite
}  // namespace paddle