gpu_info.cc 3.9 KB
Newer Older
L
liaogang 已提交
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/platform/gpu_info.h"
L
liaogang 已提交
16

L
liaogang 已提交
17
#include "gflags/gflags.h"
L
liaogang 已提交
18

L
liaogang 已提交
19
#include "paddle/platform/enforce.h"
L
liaogang 已提交
20
#include "paddle/platform/environment.h"
L
liaogang 已提交
21 22 23 24 25 26 27 28

DEFINE_double(fraction_of_gpu_memory_to_use, 0.95,
              "Default use 95% of GPU memory for PaddlePaddle,"
              "reserve the rest for page tables, etc");

namespace paddle {
namespace platform {

29
int GetCUDADeviceCount() {
L
liaogang 已提交
30
  int count;
L
liaogang 已提交
31
  PADDLE_ENFORCE(
L
liaogang 已提交
32
      cudaGetDeviceCount(&count),
33
      "cudaGetDeviceCount failed in paddle::platform::GetCUDADeviceCount");
L
liaogang 已提交
34 35 36
  return count;
}

L
liaogang 已提交
37 38
int GetCurrentDeviceId() {
  int device_id;
L
liaogang 已提交
39
  PADDLE_ENFORCE(
L
liaogang 已提交
40 41 42 43 44 45
      cudaGetDevice(&device_id),
      "cudaGetDevice failed in paddle::platform::GetCurrentDeviceId");
  return device_id;
}

void SetDeviceId(int id) {
Q
qijun 已提交
46 47
  // TODO(qijun): find a better way to cache the cuda device count
  PADDLE_ENFORCE(id < GetCUDADeviceCount(), "id must less than GPU count");
L
liaogang 已提交
48
  PADDLE_ENFORCE(cudaSetDevice(id),
L
liaogang 已提交
49 50 51
                 "cudaSetDevice failed in paddle::platform::SetDeviceId");
}

L
liaogang 已提交
52
void GpuMemoryUsage(size_t &available, size_t &total) {
L
liaogang 已提交
53
  PADDLE_ENFORCE(cudaMemGetInfo(&available, &total),
L
liaogang 已提交
54 55 56 57 58 59 60 61 62
                 "cudaMemGetInfo failed in paddle::platform::GetMemoryUsage");
}

size_t GpuMaxAllocSize() {
  size_t total = 0;
  size_t available = 0;

  GpuMemoryUsage(available, total);

L
liaogang 已提交
63
  // Reserve the rest for page tables, etc.
L
liaogang 已提交
64
  return static_cast<size_t>(total * FLAGS_fraction_of_gpu_memory_to_use);
L
liaogang 已提交
65 66
}

L
liaogang 已提交
67 68 69 70 71 72 73 74 75 76 77
size_t GpuMinChunkSize() {
  // Allow to allocate the minimum chunk size is 256 bytes.
  return 1 << 8;
}

size_t GpuMaxChunkSize() {
  size_t total = 0;
  size_t available = 0;

  GpuMemoryUsage(available, total);

L
liaogang 已提交
78 79 80 81 82 83 84
  if (IsEnvVarDefined(kEnvFractionGpuMemoryToUse)) {
    auto val = std::stod(GetEnvValue(kEnvFractionGpuMemoryToUse));
    PADDLE_ENFORCE_GT(val, 0.0);
    PADDLE_ENFORCE_LE(val, 1.0);
    FLAGS_fraction_of_gpu_memory_to_use = val;
  }

L
liaogang 已提交
85 86 87 88 89 90 91 92 93 94 95 96
  // Reserving the rest memory for page tables, etc.
  size_t reserving = (1 - FLAGS_fraction_of_gpu_memory_to_use) * total;

  // If available less than minimum chunk size, no usable memory exists.
  available = std::max(available, GpuMinChunkSize()) - GpuMinChunkSize();

  // If available less than reserving, no usable memory exists.
  size_t usable = std::max(available, reserving) - reserving;

  return usable;
}

L
liaogang 已提交
97 98
void GpuMemcpyAsync(void *dst, const void *src, size_t count,
                    enum cudaMemcpyKind kind, cudaStream_t stream) {
L
liaogang 已提交
99 100
  PADDLE_ENFORCE(cudaMemcpyAsync(dst, src, count, kind, stream),
                 "cudaMemcpyAsync failed in paddle::platform::GpuMemcpyAsync");
L
liaogang 已提交
101 102 103 104
}

void GpuMemcpySync(void *dst, const void *src, size_t count,
                   enum cudaMemcpyKind kind) {
L
liaogang 已提交
105 106
  PADDLE_ENFORCE(cudaMemcpy(dst, src, count, kind),
                 "cudaMemcpy failed in paddle::platform::GpuMemcpySync");
L
liaogang 已提交
107 108
  // note: cudaMemcpy may actually be asynchronous with respect to the caller,
  //       block on stream 0 to make sure the copy has completed
L
liaogang 已提交
109 110 111
  PADDLE_ENFORCE(
      cudaStreamSynchronize(0),
      "cudaStreamSynchronize failed in paddle::platform::GpuMemcpySync");
L
liaogang 已提交
112 113 114 115 116
}

void GpuMemcpyPeer(void *dst, int dst_device, const void *src, int src_device,
                   size_t count, cudaStream_t stream) {
  PADDLE_ENFORCE(
L
liaogang 已提交
117 118
      cudaMemcpyPeerAsync(dst, dst_device, src, src_device, count, stream),
      "cudaMemcpyPeerAsync failed in paddle::platform::GpuMemcpyPeer");
L
liaogang 已提交
119
}
L
liaogang 已提交
120 121
}  // namespace platform
}  // namespace paddle