memory.h 3.1 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
// 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 <glog/logging.h>
#include "target_wrapper.h"

namespace paddle {
namespace lite {

S
update  
superjomn 已提交
22
static void* TargetMalloc(TargetType target, size_t size) {
S
superjomn 已提交
23
  void* data{nullptr};
24 25 26 27
  switch (target) {
    case TargetType::kHost:
    case TargetType::kX86:
      data = TargetWrapper<TARGET(kHost)>::Malloc(size);
S
superjomn 已提交
28
      break;
29
    case TargetType::kCUDA:
S
superjomn 已提交
30 31 32
      data = TargetWrapper<TARGET(kCUDA)>::Malloc(size);
      break;
    default:
33
      LOG(FATAL) << "Unknown supported target " << TargetToStr(target);
S
superjomn 已提交
34 35 36 37
  }
  return data;
}

S
update  
superjomn 已提交
38
static void TargetFree(TargetType target, void* data) {
S
superjomn 已提交
39 40 41 42 43 44 45 46 47 48 49 50
  switch (static_cast<int>(target)) {
    case static_cast<int>(TargetType::kX86):
      TargetWrapper<TARGET(kX86)>::Free(data);
      break;
    case static_cast<int>(TargetType::kCUDA):
      TargetWrapper<TARGET(kX86)>::Free(data);
      break;
    default:
      LOG(FATAL) << "Unknown type";
  }
}

S
Superjomn 已提交
51 52
static void TargetCopy(TargetType target, void* dst, const void* src,
                       size_t size) {
53 54 55
  switch (target) {
    case TargetType::kX86:
    case TargetType::kHost:
S
Superjomn 已提交
56 57 58 59
      TargetWrapper<TARGET(kHost)>::MemcpySync(dst, src, size,
                                               IoDirection::DtoD);
      break;

60
    case TargetType::kCUDA:
S
Superjomn 已提交
61 62 63
      TargetWrapper<TARGET(kCUDA)>::MemcpySync(dst, src, size,
                                               IoDirection::DtoD);
      break;
64 65
    default:
      LOG(FATAL) << "unsupported type";
S
Superjomn 已提交
66 67 68
  }
}

S
superjomn 已提交
69 70 71
// Memory buffer manager.
class Buffer {
 public:
S
update  
superjomn 已提交
72
  Buffer() = default;
S
superjomn 已提交
73 74 75
  Buffer(TargetType target, size_t size) : space_(size), target_(target) {}

  void* data() const { return data_; }
S
Superjomn 已提交
76 77
  TargetType target() const { return target_; }
  size_t space() const { return space_; }
S
superjomn 已提交
78 79 80 81

  void ResetLazy(TargetType target, size_t size) {
    if (target != target_ || space_ < size) {
      Free();
82 83 84
      data_ = TargetMalloc(target, size);
      target_ = target;
      space_ = size;
S
superjomn 已提交
85 86 87 88 89 90 91 92 93 94 95 96 97
    }
  }

  void ResizeLazy(size_t size) { ResetLazy(target_, size); }

  void Free() {
    if (space_ > 0) {
      TargetFree(target_, data_);
    }
    target_ = TargetType::kHost;
    space_ = 0;
  }

S
Superjomn 已提交
98 99 100 101
  void CopyDataFrom(const Buffer& other, size_t nbytes) {
    target_ = other.target_;
    ResizeLazy(nbytes);
    // TODO(Superjomn) support copy between different targets.
S
Superjomn 已提交
102
    TargetCopy(target_, data_, other.data_, nbytes);
S
Superjomn 已提交
103 104
  }

S
superjomn 已提交
105
 private:
S
Superjomn 已提交
106
  // memory it actually malloced.
S
superjomn 已提交
107 108 109 110 111 112 113
  size_t space_{0};
  void* data_{nullptr};
  TargetType target_{TargetType::kHost};
};

}  // namespace lite
}  // namespace paddle