tensor.h 2.2 KB
Newer Older
S
superjomn 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
// 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>
#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 已提交
40 41
using DDim = std::vector<int64_t>;
static DDim SliceDims(const DDim& dims, int begin, int end) {
S
superjomn 已提交
42 43 44
  return DDim(dims.begin() + begin, dims.begin() + end - 1);
}

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

S
update  
superjomn 已提交
50
static DDim flatten_to_2d(const DDim& dims, int col) {
S
superjomn 已提交
51 52 53 54
  return DDim({product(SliceDims(dims, 0, col)),
               product(SliceDims(dims, col, dims.size()))});
}

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

S
superjomn 已提交
57 58 59
// A light-weight tensor implementation.
class Tensor {
 public:
S
update  
superjomn 已提交
60
  Tensor() = default;
S
superjomn 已提交
61 62 63 64 65 66 67 68 69 70

  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 已提交
71 72 73
  const LoD& lod() { return lod_; }
  LoD* mutable_lod() { return &lod_; }

S
superjomn 已提交
74 75 76 77 78 79 80 81 82 83 84 85
  template <typename T>
  T* mutable_data() {
    buffer_.ResetLazy(target_, product(dims_));
    return static_cast<T*>(buffer_.data());
  }

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

 private:
  TargetType target_{TargetType::kHost};
  DDim dims_;
  Buffer buffer_;
S
update  
superjomn 已提交
86
  LoD lod_;
S
superjomn 已提交
87 88 89 90
};

}  // namespace lite
}  // namespace paddle