rocm_info.cc 11.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright (c) 2021 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.

W
Wilber 已提交
15
#include <array>
16
#include "paddle/phi/backends/gpu/gpu_info.h"
W
Wilber 已提交
17 18

// TODO(pten): remove fluid headers.
19 20 21 22 23 24
#include "paddle/fluid/platform/enforce.h"

static std::once_flag g_device_props_size_init_flag;
static std::vector<std::unique_ptr<std::once_flag>> g_device_props_init_flags;
static std::vector<paddle::gpuDeviceProp> g_device_props;

25
namespace phi {
W
Wilber 已提交
26 27 28
namespace backends {
namespace gpu {

29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
int DnnVersion() {
  if (!dynload::HasCUDNN()) return -1;
  size_t version_major, version_minor, version_patch;
  PADDLE_ENFORCE_GPU_SUCCESS(dynload::miopenGetVersion(
      &version_major, &version_minor, &version_patch));
  return version_major * 100 + version_minor * 10 + version_patch;
}

static int GetGPUDeviceCountImpl() {
  int driverVersion = 0;
  hipError_t status = hipDriverGetVersion(&driverVersion);

  if (!(status == gpuSuccess && driverVersion != 0)) {
    // No GPU driver
    VLOG(2) << "GPU Driver Version can't be detected. No GPU driver!";
    return 0;
  }

  const auto *cuda_visible_devices = std::getenv("HIP_VISIBLE_DEVICES");

  if (cuda_visible_devices != nullptr) {
    std::string cuda_visible_devices_str(cuda_visible_devices);
    if (!cuda_visible_devices_str.empty()) {
      cuda_visible_devices_str.erase(
          0, cuda_visible_devices_str.find_first_not_of('\''));
      cuda_visible_devices_str.erase(
          cuda_visible_devices_str.find_last_not_of('\'') + 1);
      cuda_visible_devices_str.erase(
          0, cuda_visible_devices_str.find_first_not_of('\"'));
      cuda_visible_devices_str.erase(
          cuda_visible_devices_str.find_last_not_of('\"') + 1);
    }
    if (std::all_of(cuda_visible_devices_str.begin(),
                    cuda_visible_devices_str.end(),
                    [](char ch) { return ch == ' '; })) {
      VLOG(2) << "HIP_VISIBLE_DEVICES is set to be "
                 "empty. No GPU detected.";
      return 0;
    }
  }
  int count;
  PADDLE_ENFORCE_GPU_SUCCESS(hipGetDeviceCount(&count));
  return count;
}

int GetGPUDeviceCount() {
  // cache the count
  static auto dev_cnt = GetGPUDeviceCountImpl();
  return dev_cnt;
}

int GetGPUComputeCapability(int id) {
W
Wilber 已提交
81 82 83
  PADDLE_ENFORCE_LT(id,
                    GetGPUDeviceCount(),
                    paddle::platform::errors::InvalidArgument(
84 85
                        "Device id must be less than GPU count, "
                        "but received id is: %d. GPU count is: %d.",
W
Wilber 已提交
86 87
                        id,
                        GetGPUDeviceCount()));
88 89 90 91 92 93 94 95 96 97 98 99
  int major, minor;
  auto major_error_code = hipDeviceGetAttribute(
      &major, hipDeviceAttributeComputeCapabilityMajor, id);
  auto minor_error_code = hipDeviceGetAttribute(
      &minor, hipDeviceAttributeComputeCapabilityMinor, id);

  PADDLE_ENFORCE_GPU_SUCCESS(major_error_code);
  PADDLE_ENFORCE_GPU_SUCCESS(minor_error_code);
  return major * 100 + minor;
}

int GetGPURuntimeVersion(int id) {
W
Wilber 已提交
100 101 102
  PADDLE_ENFORCE_LT(id,
                    GetGPUDeviceCount(),
                    paddle::platform::errors::InvalidArgument(
103 104
                        "Device id must be less than GPU count, "
                        "but received id is: %d. GPU count is: %d.",
W
Wilber 已提交
105 106
                        id,
                        GetGPUDeviceCount()));
107 108 109 110 111 112
  int runtime_version = 0;
  PADDLE_ENFORCE_GPU_SUCCESS(hipRuntimeGetVersion(&runtime_version));
  return runtime_version;
}

int GetGPUDriverVersion(int id) {
W
Wilber 已提交
113 114 115
  PADDLE_ENFORCE_LT(id,
                    GetGPUDeviceCount(),
                    paddle::platform::errors::InvalidArgument(
116 117
                        "Device id must be less than GPU count, "
                        "but received id is: %d. GPU count is: %d.",
W
Wilber 已提交
118 119
                        id,
                        GetGPUDeviceCount()));
120 121 122 123 124 125 126 127
  int driver_version = 0;
  PADDLE_ENFORCE_GPU_SUCCESS(hipDriverGetVersion(&driver_version));
  return driver_version;
}

bool TensorCoreAvailable() { return false; }

int GetGPUMultiProcessors(int id) {
W
Wilber 已提交
128 129 130
  PADDLE_ENFORCE_LT(id,
                    GetGPUDeviceCount(),
                    paddle::platform::errors::InvalidArgument(
131 132
                        "Device id must be less than GPU count, "
                        "but received id is: %d. GPU count is: %d.",
W
Wilber 已提交
133 134
                        id,
                        GetGPUDeviceCount()));
135 136 137 138 139 140 141
  int count;
  PADDLE_ENFORCE_GPU_SUCCESS(
      hipDeviceGetAttribute(&count, hipDeviceAttributeMultiprocessorCount, id));
  return count;
}

int GetGPUMaxThreadsPerMultiProcessor(int id) {
W
Wilber 已提交
142 143 144
  PADDLE_ENFORCE_LT(id,
                    GetGPUDeviceCount(),
                    paddle::platform::errors::InvalidArgument(
145 146
                        "Device id must be less than GPU count, "
                        "but received id is: %d. GPU count is: %d.",
W
Wilber 已提交
147 148
                        id,
                        GetGPUDeviceCount()));
149 150 151 152 153 154 155 156
  int count;
  PADDLE_ENFORCE_GPU_SUCCESS(hipDeviceGetAttribute(
      &count, hipDeviceAttributeMaxThreadsPerMultiProcessor, id));

  return count;
}

int GetGPUMaxThreadsPerBlock(int id) {
W
Wilber 已提交
157 158 159
  PADDLE_ENFORCE_LT(id,
                    GetGPUDeviceCount(),
                    paddle::platform::errors::InvalidArgument(
160 161
                        "Device id must be less than GPU count, "
                        "but received id is: %d. GPU count is: %d.",
W
Wilber 已提交
162 163
                        id,
                        GetGPUDeviceCount()));
164 165 166 167 168 169 170 171 172 173 174 175
  int count;
  PADDLE_ENFORCE_GPU_SUCCESS(
      hipDeviceGetAttribute(&count, hipDeviceAttributeMaxThreadsPerBlock, id));
  return count;
}

int GetCurrentDeviceId() {
  int device_id;
  PADDLE_ENFORCE_GPU_SUCCESS(hipGetDevice(&device_id));
  return device_id;
}

W
Wilber 已提交
176 177 178 179
std::array<int, 3> GetGpuMaxGridDimSize(int id) {
  PADDLE_ENFORCE_LT(id,
                    GetGPUDeviceCount(),
                    paddle::platform::errors::InvalidArgument(
180 181
                        "Device id must be less than GPU count, "
                        "but received id is: %d. GPU count is: %d.",
W
Wilber 已提交
182 183 184
                        id,
                        GetGPUDeviceCount()));
  std::array<int, 3> ret;
185 186 187 188
  int size;
  auto error_code_x =
      hipDeviceGetAttribute(&size, hipDeviceAttributeMaxGridDimX, id);
  PADDLE_ENFORCE_GPU_SUCCESS(error_code_x);
W
Wilber 已提交
189
  ret[0] = size;
190 191 192 193

  auto error_code_y =
      hipDeviceGetAttribute(&size, hipDeviceAttributeMaxGridDimY, id);
  PADDLE_ENFORCE_GPU_SUCCESS(error_code_y);
W
Wilber 已提交
194
  ret[1] = size;
195 196 197 198

  auto error_code_z =
      hipDeviceGetAttribute(&size, hipDeviceAttributeMaxGridDimZ, id);
  PADDLE_ENFORCE_GPU_SUCCESS(error_code_z);
W
Wilber 已提交
199
  ret[2] = size;
200 201 202 203 204 205
  return ret;
}

const gpuDeviceProp &GetDeviceProperties(int id) {
  std::call_once(g_device_props_size_init_flag, [&] {
    int gpu_num = 0;
W
Wilber 已提交
206
    gpu_num = GetGPUDeviceCount();
207 208 209 210 211 212 213 214
    g_device_props_init_flags.resize(gpu_num);
    g_device_props.resize(gpu_num);
    for (int i = 0; i < gpu_num; ++i) {
      g_device_props_init_flags[i] = std::make_unique<std::once_flag>();
    }
  });

  if (id == -1) {
W
Wilber 已提交
215
    id = GetCurrentDeviceId();
216 217 218
  }

  if (id < 0 || id >= static_cast<int>(g_device_props.size())) {
W
Wilber 已提交
219
    PADDLE_THROW(paddle::platform::errors::OutOfRange(
220 221 222 223
        "The device id %d is out of range [0, %d), where %d is the number of "
        "devices on this machine. Because the device id should be greater than "
        "or equal to zero and smaller than the number of gpus. Please input "
        "appropriate device again!",
W
Wilber 已提交
224 225
        id,
        static_cast<int>(g_device_props.size()),
226 227 228 229 230 231 232 233 234 235 236 237
        static_cast<int>(g_device_props.size())));
  }

  std::call_once(*(g_device_props_init_flags[id]), [&] {
    PADDLE_ENFORCE_GPU_SUCCESS(hipGetDeviceProperties(&g_device_props[id], id));
  });

  return g_device_props[id];
}

void SetDeviceId(int id) {
  // TODO(qijun): find a better way to cache the cuda device count
W
Wilber 已提交
238 239 240
  PADDLE_ENFORCE_LT(id,
                    GetGPUDeviceCount(),
                    paddle::platform::errors::InvalidArgument(
241 242
                        "Device id must be less than GPU count, "
                        "but received id is: %d. GPU count is: %d.",
W
Wilber 已提交
243 244
                        id,
                        GetGPUDeviceCount()));
245 246 247
  PADDLE_RETRY_CUDA_SUCCESS(hipSetDevice(id));
}

W
Wilber 已提交
248 249 250 251 252
void GpuMemcpyAsync(void *dst,
                    const void *src,
                    size_t count,
                    gpuMemcpyKind kind,
                    gpuStream_t stream) {
253 254 255
  PADDLE_ENFORCE_GPU_SUCCESS(hipMemcpyAsync(dst, src, count, kind, stream));
}

W
Wilber 已提交
256 257 258
void GpuMemcpySync(void *dst,
                   const void *src,
                   size_t count,
259 260 261 262
                   gpuMemcpyKind kind) {
  PADDLE_ENFORCE_GPU_SUCCESS(hipMemcpy(dst, src, count, kind));
}

W
Wilber 已提交
263 264 265 266 267 268
void GpuMemcpyPeerAsync(void *dst,
                        int dst_device,
                        const void *src,
                        int src_device,
                        size_t count,
                        gpuStream_t stream) {
269 270 271 272
  PADDLE_ENFORCE_GPU_SUCCESS(
      hipMemcpyPeerAsync(dst, dst_device, src, src_device, count, stream));
}

W
Wilber 已提交
273 274
void GpuMemcpyPeerSync(
    void *dst, int dst_device, const void *src, int src_device, size_t count) {
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
  PADDLE_ENFORCE_GPU_SUCCESS(
      hipMemcpyPeer(dst, dst_device, src, src_device, count));
}

void GpuMemsetAsync(void *dst, int value, size_t count, gpuStream_t stream) {
  PADDLE_ENFORCE_GPU_SUCCESS(hipMemsetAsync(dst, value, count, stream));
}

void GpuStreamSync(gpuStream_t stream) {
  PADDLE_ENFORCE_GPU_SUCCESS(hipStreamSynchronize(stream));
}

void GpuDestroyStream(gpuStream_t stream) {
  PADDLE_ENFORCE_GPU_SUCCESS(hipStreamDestroy(stream));
}

void GpuDeviceSync() { PADDLE_ENFORCE_GPU_SUCCESS(hipDeviceSynchronize()); }

gpuError_t GpuGetLastError() { return hipGetLastError(); }
W
Wilber 已提交
294

295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
bool IsGPUManagedMemorySupported(int dev_id) {
  PADDLE_ENFORCE_LT(dev_id,
                    GetGPUDeviceCount(),
                    paddle::platform::errors::InvalidArgument(
                        "Device id must be less than GPU count, "
                        "but received id is: %d. GPU count is: %d.",
                        dev_id,
                        GetGPUDeviceCount()));
#if defined(__linux__) || defined(_WIN32)
  int ManagedMemoryAttr;
  PADDLE_ENFORCE_GPU_SUCCESS(hipDeviceGetAttribute(
      &ManagedMemoryAttr, hipDeviceAttributeManagedMemory, dev_id));
  return ManagedMemoryAttr != 0;
#else
  return false;
#endif
}

bool IsGPUManagedMemoryOversubscriptionSupported(int dev_id) {
  PADDLE_ENFORCE_LT(dev_id,
                    GetGPUDeviceCount(),
                    paddle::platform::errors::InvalidArgument(
                        "Device id must be less than GPU count, "
                        "but received id is: %d. GPU count is: %d.",
                        dev_id,
                        GetGPUDeviceCount()));
#ifdef __linux__
  return IsGPUManagedMemorySupported(dev_id) &&
         GetGPUComputeCapability(dev_id) >= 60;
#else
  return false;
#endif
}

W
Wilber 已提交
329 330
}  // namespace gpu
}  // namespace backends
331
}  // namespace phi