memory.cc 1.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

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/memory/memory.h"

namespace paddle {
namespace memory {

template <>
void* Alloc<CPUPlace>(CPUPlace, size_t size) {
Y
Yi Wang 已提交
22 23 24 25 26
  return GetCPUBuddyAllocator(false /*non-staging*/)->Alloc(size);
}

void* AllocStaging(CPUPlace, size_t size) {
  return GetCPUBuddyAllocator(true /*staging*/)->Alloc(size);
27 28 29 30 31 32 33 34 35
}

template <>
void* Alloc<GPUPlace>(GPUPlace pl, size_t size) {
  return GetGPUBuddyAllocator(pl.device)->Alloc(size);
}

template <>
void Free<CPUPlace>(CPUPlace, void* p) {
Y
Yi Wang 已提交
36 37 38 39 40
  return GetCPUBuddyAllocator(false /*non-staging*/)->Free(p);
}

void FreeStaging(CPUPlace, void* p) {
  return GetCPUBuddyAllocator(false /*non-staging*/)->Free(p);
41 42
}

Y
Yi Wang 已提交
43
#ifdef PADDLE_WITH_GPU
44 45 46 47 48 49 50 51 52 53 54 55 56 57
template <>
void* Alloc<GPUPlace>(GPUPlace pl, void* p) {
  return GetGPUBuddyAllocator(pl.device)->Free(p);
}

template <>
size_t Used<CPUPlace>(CPUPlace) {
  return GetCPUBuddyAllocator()->Used();
}

template <>
size_t Alloc<GPUPlace>(GPUPlace pl) {
  return GetGPUBuddyAllocator(pl.device)->Used();
}
Y
Yi Wang 已提交
58
#endif  // PADDLE_WITH_GPU
59 60 61

}  // namespace memory
}  // namespace paddle