target_wrapper.cc 1.5 KB
Newer Older
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.

#include "paddle/fluid/lite/core/target_wrapper.h"
#include <cstring>
17
#include <memory>
18 19 20 21

namespace paddle {
namespace lite {

22 23
const int MALLOC_ALIGN = 64;

24
void* TargetWrapper<TARGET(kHost)>::Malloc(size_t size) {
25 26 27 28 29 30 31 32 33 34
  size_t offset = sizeof(void*) + MALLOC_ALIGN - 1;
  char* p = static_cast<char*>(malloc(offset + size));
  if (!p) {
    return nullptr;
  }
  void* r = reinterpret_cast<void*>(reinterpret_cast<size_t>(p + offset) &
                                    (~(MALLOC_ALIGN - 1)));
  static_cast<void**>(r)[-1] = p;
  memset(r, 0, size);
  return r;
35 36
}
void TargetWrapper<TARGET(kHost)>::Free(void* ptr) {
37 38 39
  if (ptr) {
    free(static_cast<void**>(ptr)[-1]);
  }
40 41 42 43 44 45 46 47
}
void TargetWrapper<TARGET(kHost)>::MemcpySync(void* dst, const void* src,
                                              size_t size, IoDirection dir) {
  memcpy(dst, src, size);
}

}  // namespace lite
}  // namespace paddle