system_allocator.cc 3.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* 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/detail/system_allocator.h"
L
liaogang 已提交
16 17 18
#include "paddle/platform/assert.h"
#include "paddle/platform/error.h"
#include "paddle/platform/gpu_info.h"
19 20 21 22 23 24 25 26 27 28 29

#include <stdlib.h>    // for malloc and free
#include <sys/mman.h>  // for mlock and munlock

#include "gflags/gflags.h"

// If use_pinned_memory is true, CPUAllocator calls mlock, which
// returns pinned and locked memory as staging areas for data exchange
// between host and device.  Allocates too much would reduce the amount
// of memory available to the system for paging.  So, by default, we
// should set false to use_pinned_memory.
L
liaogang 已提交
30
DEFINE_bool(use_pinned_memory, false, "If set, allocate cpu pinned memory.");
31 32 33 34 35

namespace paddle {
namespace memory {
namespace detail {

L
liaogang 已提交
36
void* CPUAllocator::Alloc(size_t& index, size_t size) {
37 38 39 40 41
  // According to http://www.cplusplus.com/reference/cstdlib/malloc/,
  // malloc might not return nullptr if size is zero, but the returned
  // pointer shall not be dereferenced -- so we make it nullptr.
  if (size <= 0) return nullptr;

L
liaogang 已提交
42 43 44 45 46 47 48
  if (FLAGS_use_pinned_memory) {
    void* p = malloc(size);
    if (p != nullptr) {
      mlock(p, size);
    }
  }

49 50 51 52 53 54 55
  void* p = malloc(size);
  if (p != nullptr && FLAGS_use_pinned_memory) {
    mlock(p, size);
  }
  return p;
}

L
liaogang 已提交
56
void CPUAllocator::Free(void* p, size_t size, size_t index) {
57 58 59 60 61 62 63 64
  if (p != nullptr && FLAGS_use_pinned_memory) {
    munlock(p, size);
  }
  free(p);
}

#ifndef PADDLE_ONLY_CPU

L
liaogang 已提交
65
void* GPUAllocator::Alloc(size_t& index, size_t size) {
66 67
  // CUDA documentation doesn't explain if cudaMalloc returns nullptr
  // if size is 0.  We just make sure it does.
L
liaogang 已提交
68
  if (size <= 0) return nullptr;
69

L
liaogang 已提交
70 71 72 73 74 75 76 77 78 79
  size_t available = 0;
  size_t capacity = 0;
  paddle::platform::GpuMemoryUsage(available, capacity);

  // Reserve memory for page tables, etc.
  size_t reserving = capacity - paddle::platform::GpuMaxAllocSize();
  size_t remaining = available > reserving ? available - reserving : 0;

  // If remaining size no less than expected size, using general
  // cudaMalloc to allocate GPU memory.
80
  void* p = 0;
L
liaogang 已提交
81 82 83 84 85 86 87
  if (size <= remaining) {
    cudaError_t result = cudaMalloc(&p, size);
    if (result == cudaSuccess) {
      index = 0;
      total_alloc_size_ += size;
      return p;
    }
88
  }
L
liaogang 已提交
89 90 91 92 93 94 95 96 97 98 99

  // If remaining size less than expected size or cudaMalloc failed,
  // cudaMallocHost will be considered as a fallback allocator.
  cudaError_t result = cudaMallocHost(&p, size);
  if (result == cudaSuccess) {
    index = 1;
    total_alloc_size_ += size;
    return p;
  }

  return nullptr;
100 101
}

L
liaogang 已提交
102
void GPUAllocator::Free(void* p, size_t size, size_t index) {
103 104 105 106 107
  // Purposefully allow cudaErrorCudartUnloading, because
  // that is returned if you ever call cudaFree after the
  // driver has already shutdown. This happens only if the
  // process is terminating, in which case we don't care if
  // cudaFree succeeds.
L
liaogang 已提交
108 109 110
  PADDLE_ASSERT(total_alloc_size_ >= size);
  total_alloc_size_ -= size;
  cudaError_t err = index == 1 ? cudaFreeHost(p) : cudaFree(p);
111 112 113 114 115 116 117 118 119 120
  if (err != cudaErrorCudartUnloading) {
    platform::throw_on_error(err, "cudaFree{Host} failed");
  }
}

#endif  // PADDLE_ONLY_CPU

}  // namespace detail
}  // namespace memory
}  // namespace paddle