system_allocator.cc 5.9 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13

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. */
D
dzhwinter 已提交
14
#define GLOG_NO_ABBREVIATED_SEVERITIES
15

Y
Yi Wang 已提交
16
#include "paddle/fluid/memory/detail/system_allocator.h"
17

D
dzhwinter 已提交
18 19 20 21
#ifdef _WIN32
#include <malloc.h>
#include <windows.h>  // VirtualLock/VirtualUnlock
#else
22
#include <sys/mman.h>  // for mlock and munlock
D
dzhwinter 已提交
23 24 25
#endif
#include <stdlib.h>   // for malloc and free
#include <algorithm>  // for std::max
26 27

#include "gflags/gflags.h"
Y
Yi Wang 已提交
28 29 30 31
#include "paddle/fluid/platform/assert.h"
#include "paddle/fluid/platform/cpu_info.h"
#include "paddle/fluid/platform/enforce.h"
#include "paddle/fluid/platform/gpu_info.h"
32

S
sneaxiy 已提交
33
DECLARE_bool(use_pinned_memory);
34
DECLARE_double(fraction_of_gpu_memory_to_use);
35 36 37 38
namespace paddle {
namespace memory {
namespace detail {

D
dzhwinter 已提交
39
void* AlignedMalloc(size_t size) {
G
gongweibao 已提交
40
  void* p = nullptr;
D
dzhwinter 已提交
41
  size_t alignment = 32ul;
T
tensor-tang 已提交
42
#ifdef PADDLE_WITH_MKLDNN
43 44
  // refer to https://github.com/01org/mkl-dnn/blob/master/include/mkldnn.hpp
  // memory alignment
D
dzhwinter 已提交
45 46 47 48
  alignment = 4096ul;
#endif
#ifdef _WIN32
  p = _aligned_malloc(size, alignment);
49
#else
D
dzhwinter 已提交
50
  PADDLE_ENFORCE_EQ(posix_memalign(&p, alignment, size), 0, "Alloc %ld error!",
G
gongweibao 已提交
51
                    size);
52 53
#endif
  PADDLE_ENFORCE(p, "Fail to allocate CPU memory: size = %d .", size);
D
dzhwinter 已提交
54 55 56 57 58 59 60 61 62 63 64 65
  return p;
}

void* CPUAllocator::Alloc(size_t* index, size_t size) {
  // 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;

  *index = 0;  // unlock memory

  void* p = AlignedMalloc(size);
66 67 68

  if (p != nullptr) {
    if (FLAGS_use_pinned_memory) {
Y
Yi Wang 已提交
69
      *index = 1;
D
dzhwinter 已提交
70 71 72
#ifdef _WIN32
      VirtualLock(p, size);
#else
73
      mlock(p, size);  // lock memory
D
dzhwinter 已提交
74
#endif
75
    }
76
  }
77

78 79 80
  return p;
}

L
liaogang 已提交
81
void CPUAllocator::Free(void* p, size_t size, size_t index) {
82
  if (p != nullptr && index == 1) {
D
dzhwinter 已提交
83 84 85
#ifdef _WIN32
    VirtualUnlock(p, size);
#else
86
    munlock(p, size);
D
dzhwinter 已提交
87
#endif
88
  }
P
peizhilin 已提交
89 90 91
#ifdef _WIN32
  _aligned_free(p);
#else
92
  free(p);
P
peizhilin 已提交
93
#endif
94 95
}

L
liaogang 已提交
96
bool CPUAllocator::UseGpu() const { return false; }
L
liaogang 已提交
97

98
#ifdef PADDLE_WITH_CUDA
99

Y
Yi Wang 已提交
100
void* GPUAllocator::Alloc(size_t* index, size_t size) {
101 102
  // CUDA documentation doesn't explain if cudaMalloc returns nullptr
  // if size is 0.  We just make sure it does.
L
liaogang 已提交
103
  if (size <= 0) return nullptr;
104
  void* p;
Y
Yu Yang 已提交
105 106 107 108 109 110
  int prev_id;
  cudaGetDevice(&prev_id);
  if (prev_id != gpu_id_) {
    cudaSetDevice(gpu_id_);
  }

111
  cudaError_t result = cudaMalloc(&p, size);
Y
Yu Yang 已提交
112 113 114 115 116

  if (prev_id != gpu_id_) {
    cudaSetDevice(prev_id);
  }

L
liaogang 已提交
117
  if (result == cudaSuccess) {
Y
Yi Wang 已提交
118
    *index = 0;
119
    gpu_alloc_size_ += size;
L
liaogang 已提交
120
    return p;
121 122 123 124 125 126 127
  } else {
    LOG(WARNING)
        << "Cannot malloc " << size / 1024.0 / 1024.0
        << " MB GPU memory. Please shrink FLAGS_fraction_of_gpu_memory_to_use "
           "environment variable to a lower value. Current value is "
        << FLAGS_fraction_of_gpu_memory_to_use;
    return nullptr;
L
liaogang 已提交
128
  }
129 130
}

L
liaogang 已提交
131
void GPUAllocator::Free(void* p, size_t size, size_t index) {
132 133 134 135 136 137 138 139 140 141 142 143
  cudaError_t err;

  if (index == 0) {
    PADDLE_ASSERT(gpu_alloc_size_ >= size);
    gpu_alloc_size_ -= size;
    err = cudaFree(p);
  } else {
    PADDLE_ASSERT(fallback_alloc_size_ >= size);
    fallback_alloc_size_ -= size;
    err = cudaFreeHost(p);
  }

144 145 146 147 148 149
  // 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.
  if (err != cudaErrorCudartUnloading) {
L
liaogang 已提交
150
    PADDLE_ENFORCE(err, "cudaFree{Host} failed in GPUAllocator::Free.");
151 152 153
  }
}

L
liaogang 已提交
154
bool GPUAllocator::UseGpu() const { return true; }
L
liaogang 已提交
155

C
chengduoZH 已提交
156 157
// PINNED memory allows direct DMA transfers by the GPU to and from system
// memory. It’s locked to a physical address.
Y
Yi Wang 已提交
158
void* CUDAPinnedAllocator::Alloc(size_t* index, size_t size) {
C
chengduoZH 已提交
159
  if (size <= 0) return nullptr;
C
chengduoZH 已提交
160

161
  // NOTE: here, we use CUDAPinnedMaxAllocSize as the maximum memory size
C
chengduoZH 已提交
162
  // of host pinned allocation. Allocates too much would reduce
C
chengduoZH 已提交
163
  // the amount of memory available to the underlying system for paging.
C
chengduoZH 已提交
164
  size_t usable =
165
      paddle::platform::CUDAPinnedMaxAllocSize() - cuda_pinnd_alloc_size_;
C
chengduoZH 已提交
166

C
chengduoZH 已提交
167 168 169 170 171 172
  if (size > usable) {
    LOG(WARNING) << "Cannot malloc " << size / 1024.0 / 1024.0
                 << " MB pinned memory."
                 << ", available " << usable / 1024.0 / 1024.0 << " MB";
    return nullptr;
  }
C
chengduoZH 已提交
173

C
chengduoZH 已提交
174
  void* p;
C
chengduoZH 已提交
175
  // PINNED memory is visible to all CUDA contexts.
D
Dun Liang 已提交
176
  cudaError_t result = cudaHostAlloc(&p, size, cudaHostAllocPortable);
C
chengduoZH 已提交
177

C
chengduoZH 已提交
178
  if (result == cudaSuccess) {
Y
Yi Wang 已提交
179
    *index = 1;  // PINNED memory
C
chengduoZH 已提交
180
    cuda_pinnd_alloc_size_ += size;
C
chengduoZH 已提交
181
    return p;
C
chengduoZH 已提交
182
  } else {
D
Dun Liang 已提交
183
    LOG(WARNING) << "cudaHostAlloc failed.";
C
chengduoZH 已提交
184
    return nullptr;
C
chengduoZH 已提交
185 186 187 188 189 190 191 192 193
  }

  return nullptr;
}

void CUDAPinnedAllocator::Free(void* p, size_t size, size_t index) {
  cudaError_t err;
  PADDLE_ASSERT(index == 1);

C
chengduoZH 已提交
194 195
  PADDLE_ASSERT(cuda_pinnd_alloc_size_ >= size);
  cuda_pinnd_alloc_size_ -= size;
C
chengduoZH 已提交
196 197 198
  err = cudaFreeHost(p);

  // Purposefully allow cudaErrorCudartUnloading, because
C
chengduoZH 已提交
199
  // that is returned if you ever call cudaFreeHost after the
C
chengduoZH 已提交
200 201
  // driver has already shutdown. This happens only if the
  // process is terminating, in which case we don't care if
C
chengduoZH 已提交
202
  // cudaFreeHost succeeds.
C
chengduoZH 已提交
203 204 205 206 207
  if (err != cudaErrorCudartUnloading) {
    PADDLE_ENFORCE(err, "cudaFreeHost failed in GPUPinnedAllocator::Free.");
  }
}

C
chengduoZH 已提交
208
bool CUDAPinnedAllocator::UseGpu() const { return false; }
C
chengduoZH 已提交
209

L
Luo Tao 已提交
210
#endif
211 212 213 214

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