hl_cuda_device.cc 20.3 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Z
zhangjinchao01 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14

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. */

Y
Yu Yang 已提交
15
// clang-format off
16
// Because clang-format 4.X and clang-format 3.8+ format
Y
Yu Yang 已提交
17
// following lines in different. So disable clang-format.
Y
Yu Yang 已提交
18
#include "hl_cuda.h"
L
liaogang 已提交
19
#include <cuda_profiler_api.h>
Z
zhangjinchao01 已提交
20 21
#include <string.h>
#include <sys/syscall.h>
L
liaogang 已提交
22 23
#include <sys/time.h>
#include <unistd.h>
Z
zhangjinchao01 已提交
24
#include "hl_cuda.ph"
L
liaogang 已提交
25
#include "hl_thread.ph"
X
Xin Pan 已提交
26 27
#include "paddle/legacy/utils/Logging.h"
#include "paddle/legacy/utils/DynamicLoader.h"
Y
Yu Yang 已提交
28
// clang-format on
Z
zhangjinchao01 已提交
29 30 31 32

namespace dynload {

std::once_flag curand_dso_flag;
33
void *curand_dso_handle = nullptr;
Z
zhangjinchao01 已提交
34 35 36 37 38 39 40 41 42

/**
 * The following macro definition can generate structs
 * (for each function) to dynamic load curand routine
 * via operator overloading.
 *
 * note: default dynamic linked libs
 */
#ifdef PADDLE_USE_DSO
43 44 45 46 47 48 49 50 51 52
#define DYNAMIC_LOAD_CURAND_WRAP(__name)                                       \
  struct DynLoad__##__name {                                                   \
    template <typename... Args>                                                \
    curandStatus_t operator()(Args... args) {                                  \
      typedef curandStatus_t (*curandFunc)(Args...);                           \
      std::call_once(curand_dso_flag, GetCurandDsoHandle, &curand_dso_handle); \
      void *p_##__name = dlsym(curand_dso_handle, #__name);                    \
      return reinterpret_cast<curandFunc>(p_##__name)(args...);                \
    }                                                                          \
  } __name; /* struct DynLoad__##__name */
Z
zhangjinchao01 已提交
53
#else
54 55 56 57 58 59 60
#define DYNAMIC_LOAD_CURAND_WRAP(__name)      \
  struct DynLoad__##__name {                  \
    template <typename... Args>               \
    curandStatus_t operator()(Args... args) { \
      return __name(args...);                 \
    }                                         \
  } __name; /* struct DynLoad__##__name */
Z
zhangjinchao01 已提交
61 62 63
#endif

/* include all needed curand functions in HPPL */
L
Luo Tao 已提交
64
// clang-format off
Z
zhangjinchao01 已提交
65 66 67 68 69 70
#define CURAND_RAND_ROUTINE_EACH(__macro)    \
  __macro(curandCreateGenerator)             \
  __macro(curandSetStream)                   \
  __macro(curandSetPseudoRandomGeneratorSeed)\
  __macro(curandGenerateUniform)             \
  __macro(curandGenerateUniformDouble)
L
Luo Tao 已提交
71
// clang-format on
Z
zhangjinchao01 已提交
72 73 74 75 76 77

CURAND_RAND_ROUTINE_EACH(DYNAMIC_LOAD_CURAND_WRAP)

#undef CURAND_RAND_ROUTINE_EACH
#undef DYNAMIC_LOAD_CURAND_WRAP

78
} /* namespace dynload */
Z
zhangjinchao01 已提交
79 80 81 82

/**
 * @brief   global resource.
 */
83 84 85 86
int g_system_device_num = 0;                /* system device number */
int device_num = 0;                         /* use    device number */
hl_device_prop *g_device;                   /* device info table */
__thread thread_device_resources *t_device; /* device resources table */
Z
zhangjinchao01 已提交
87 88 89
int g_cuda_lib_version = 0;

/* number of global stream */
90
#define NUMBER_OF_GLOBAL_STREAM (HPPL_THREAD_STREAM_1)
Z
zhangjinchao01 已提交
91
/* number of thread stream */
92
#define NUMBER_OF_THREAD_STREAM (HPPL_STREAM_END - HPPL_THREAD_STREAM_1)
Z
zhangjinchao01 已提交
93
/* sizeof of device memory */
94
#define HPPL_GPU_MEMORY_SIZE (256 * 4)
Z
zhangjinchao01 已提交
95 96

/**
97
 * Check build-in cuda function using glog and it **does not**
Z
zhangjinchao01 已提交
98 99
 * support << operator for more details error info.
 */
L
liaogang 已提交
100 101 102 103 104
#define CHECK_CUDA(cudaFunc)                                         \
  do {                                                               \
    cudaError_t cudaStat = cudaFunc;                                 \
    CHECK_EQ(cudaSuccess, cudaStat) << "Cuda Error: "                \
                                    << cudaGetErrorString(cudaStat); \
105
  } while (0)
Z
zhangjinchao01 已提交
106 107 108 109

/**
 * @brief   thread resource.
 */
110 111 112 113 114 115 116 117 118 119 120 121
__thread _hl_thread_resource t_resource = {{0},    /* stream */
                                           0,      /* handle */
                                           0,      /* gen */
                                           0,      /* cudnn_handle */
                                           0,      /* cudnn_desc */
                                           NULL,   /* gen_mutex */
                                           NULL,   /* gpu_mem */
                                           NULL,   /* cpu_mem */
                                           0,      /* event */
                                           -1,     /* device */
                                           0,      /* major */
                                           false}; /* is_init */
Z
zhangjinchao01 已提交
122 123 124 125 126

__thread cudaStream_t default_stream = 0;
__thread bool g_sync_flag = true;
bool hl_start_flag = false;

L
liaogang 已提交
127 128
inline pid_t gettid() {
#if defined(__APPLE__) || defined(__OSX__)
G
gangliao 已提交
129 130 131 132 133
  // syscall is deprecated: first deprecated in macOS 10.12.
  // syscall is unsupported;
  // syscall pid_t tid = syscall(SYS_thread_selfid);
  uint64_t tid;
  pthread_threadid_np(NULL, &tid);
L
liaogang 已提交
134
#else
P
peizhilin 已提交
135
#ifndef _WIN32
136 137 138
#ifndef __NR_gettid
#define __NR_gettid 224
#endif
L
liaogang 已提交
139 140
  pid_t tid = syscall(__NR_gettid);
#endif
P
peizhilin 已提交
141 142 143
#else   // _WIN32
  pid_t tid = _getpid();
#endif  // _WIN32
144 145
  CHECK_NE((int)tid, -1);
  return tid;
L
liaogang 已提交
146
}
Z
zhangjinchao01 已提交
147 148

void hl_init(int device) {
149
  CHECK(hl_start_flag) << "[Init failed] hl_start() did not succeed.";
Z
zhangjinchao01 已提交
150 151 152 153 154 155 156 157 158 159

  /* thread has been initialized */
  if (true == t_resource.is_init) {
    hl_set_device(device);
    return;
  }

  /* create thread devcie resources */
  char *tmp;
  thread_device_resources device_res;
160 161
  tmp = (char *)malloc(g_system_device_num * sizeof(thread_device_resources *) +
                       device_num * sizeof(_thread_device_resources));
Z
zhangjinchao01 已提交
162
  CHECK_NOTNULL(tmp);
163 164 165 166
  t_device = (thread_device_resources *)tmp;
  device_res = (thread_device_resources)(
      (char *)tmp + g_system_device_num * sizeof(thread_device_resources *));
  memset(t_device, 0, g_system_device_num * sizeof(thread_device_resources *));
Z
zhangjinchao01 已提交
167

168 169
  char *tmp_stream = (char *)malloc(device_num * NUMBER_OF_THREAD_STREAM *
                                    sizeof(cudaStream_t));
Z
zhangjinchao01 已提交
170 171 172 173 174 175 176 177 178
  CHECK_NOTNULL(tmp_stream);

  int num = 0;
  for (int dev = 0; dev < g_system_device_num; dev++) {
    if (!g_device[dev]) {
      continue;
    }

    t_device[dev] = &device_res[num];
179 180 181
    t_device[dev]->stream =
        (cudaStream_t *)(tmp_stream +
                         num * NUMBER_OF_THREAD_STREAM * sizeof(cudaStream_t));
Z
zhangjinchao01 已提交
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206

    hl_create_thread_resources(dev, t_device[dev]);
    num++;
  }

  hl_cudnn_desc_init(&t_resource.cudnn_desc);

  /* thread initialization is complete */
  t_resource.is_init = true;
  /* set device */
  t_resource.device = -1;
  hl_set_device(device);
}

void hl_fini() {
  if (false == t_resource.is_init) {
    return;
  }

  /* hppl stream fini */
  t_resource.device = -1;
  for (int i = NUMBER_OF_GLOBAL_STREAM; i < HPPL_STREAM_END; i++) {
    t_resource.stream[i] = 0;
  }

207 208
  char *tmp = (char *)t_device;
  char *tmp_stream = NULL;
Z
zhangjinchao01 已提交
209 210 211 212 213
  for (int dev = 0; dev < g_system_device_num; dev++) {
    if (!t_device[dev]) {
      continue;
    }
    if (!tmp_stream) {
214
      tmp_stream = (char *)t_device[dev]->stream;
Z
zhangjinchao01 已提交
215 216
    }
    for (int j = 0; j < NUMBER_OF_THREAD_STREAM; j++) {
L
liaogang 已提交
217
      CHECK_CUDA(cudaStreamDestroy(t_device[dev]->stream[j]));
Z
zhangjinchao01 已提交
218 219 220 221 222
    }

    /* free device memory */
    hl_free_mem_device(t_device[dev]->gpu_mem);
    hl_free_mem_host(t_device[dev]->cpu_mem);
L
liaogang 已提交
223
    CHECK_CUDA(cudaEventDestroy(t_device[dev]->mem_event));
Z
zhangjinchao01 已提交
224 225 226 227 228 229 230
  }

  free(tmp);
  free(tmp_stream);
  t_resource.is_init = false;
}

231
int hl_get_device_count() { return device_num; }
Z
zhangjinchao01 已提交
232 233 234 235 236 237 238

void hl_set_device(int device) {
  if (device == t_resource.device) {
    return;
  }

  CHECK(device >= 0 && device < g_system_device_num && g_device[device])
239
      << "Device: " << device << " is not specified in startup.";
Z
zhangjinchao01 已提交
240

L
liaogang 已提交
241
  CHECK_CUDA(cudaSetDevice(device));
Z
zhangjinchao01 已提交
242 243 244 245 246 247 248 249 250

  /* switch thread stream */
  for (int i = 0; i < NUMBER_OF_GLOBAL_STREAM; i++) {
    t_resource.stream[i] = g_device[device]->device_resources->stream[i];
  }

  if (true == t_resource.is_init) {
    for (int i = NUMBER_OF_GLOBAL_STREAM; i < HPPL_STREAM_END; i++) {
      t_resource.stream[i] =
251
          t_device[device]->stream[i - NUMBER_OF_GLOBAL_STREAM];
Z
zhangjinchao01 已提交
252 253 254
    }
    t_resource.gpu_mem = t_device[device]->gpu_mem;
    t_resource.cpu_mem = t_device[device]->cpu_mem;
255
    t_resource.event = t_device[device]->mem_event;
Z
zhangjinchao01 已提交
256 257 258 259 260 261 262 263 264 265 266 267 268
  }

  t_resource.handle = g_device[device]->device_resources->handle;
  t_resource.gen = g_device[device]->device_resources->gen;
  t_resource.cudnn_handle = g_device[device]->device_resources->cudnn_handle;
  t_resource.gen_mutex = g_device[device]->device_resources->gen_mutex;
  t_resource.device = device;
  t_resource.major = g_device[device]->major;
  default_stream = t_resource.stream[0];
}

int hl_get_device() {
  int device;
L
liaogang 已提交
269
  CHECK_CUDA(cudaGetDevice(&device));
Z
zhangjinchao01 已提交
270 271 272
  return device;
}

273
void *hl_malloc_device(size_t size) {
Z
zhangjinchao01 已提交
274 275 276
  void *dest_d;

  CHECK(size) << __func__ << ": the size for device memory is 0, please check.";
L
liaogang 已提交
277
  CHECK_CUDA(cudaMalloc((void **)&dest_d, size));
Z
zhangjinchao01 已提交
278 279 280 281 282 283 284

  return dest_d;
}

void hl_free_mem_device(void *dest_d) {
  CHECK_NOTNULL(dest_d);

L
liaogang 已提交
285
  cudaError_t err = cudaFree(dest_d);
Z
zhangjinchao01 已提交
286
  CHECK(cudaSuccess == err || cudaErrorCudartUnloading == err)
287
      << hl_get_device_error_string();
Z
zhangjinchao01 已提交
288 289
}

290
void *hl_malloc_host(size_t size) {
Z
zhangjinchao01 已提交
291 292 293
  void *dest_h;

  CHECK(size) << __func__ << ": the size for device memory is 0, please check.";
L
liaogang 已提交
294
  CHECK_CUDA(cudaHostAlloc((void **)&dest_h, size, cudaHostAllocDefault));
Z
zhangjinchao01 已提交
295 296 297 298 299 300 301

  return dest_h;
}

void hl_free_mem_host(void *dest_h) {
  CHECK_NOTNULL(dest_h);

L
liaogang 已提交
302
  cudaError_t err = cudaFreeHost(dest_h);
303
  CHECK(cudaSuccess == err || cudaErrorCudartUnloading == err)
304
      << hl_get_device_error_string();
Z
zhangjinchao01 已提交
305 306 307 308 309 310 311 312
}

void hl_memcpy(void *dst, void *src, size_t size) {
  if (0 == size) {
    return;
  }
  CHECK_NOTNULL(dst);
  CHECK_NOTNULL(src);
L
liaogang 已提交
313
  CHECK_CUDA(cudaMemcpy(dst, src, size, cudaMemcpyDefault));
Z
zhangjinchao01 已提交
314 315 316
}

void hl_memset_device(void *dest_d, int value, size_t size) {
L
liaogang 已提交
317
  CHECK_CUDA(cudaMemset(dest_d, value, size));
Z
zhangjinchao01 已提交
318 319 320 321 322 323 324 325
}

void hl_memcpy_host2device(void *dest_d, void *src_h, size_t size) {
  if (0 == size) {
    return;
  }
  CHECK_NOTNULL(src_h);
  CHECK_NOTNULL(dest_d);
L
liaogang 已提交
326
  CHECK_CUDA(cudaMemcpy(dest_d, src_h, size, cudaMemcpyHostToDevice));
Z
zhangjinchao01 已提交
327 328 329 330 331 332 333 334
}

void hl_memcpy_device2host(void *dest_h, void *src_d, size_t size) {
  if (0 == size) {
    return;
  }
  CHECK_NOTNULL(dest_h);
  CHECK_NOTNULL(src_d);
L
liaogang 已提交
335
  CHECK_CUDA(cudaMemcpy(dest_h, src_d, size, cudaMemcpyDeviceToHost));
Z
zhangjinchao01 已提交
336 337 338 339 340 341 342 343
}

void hl_memcpy_device2device(void *dest_d, void *src_d, size_t size) {
  if (0 == size) {
    return;
  }
  CHECK_NOTNULL(dest_d);
  CHECK_NOTNULL(src_d);
L
liaogang 已提交
344
  CHECK_CUDA(cudaMemcpy(dest_d, src_d, size, cudaMemcpyDeviceToDevice));
Z
zhangjinchao01 已提交
345 346 347 348 349 350 351 352 353 354 355 356 357
}

void hl_memcpy_async(void *dst, void *src, size_t size, hl_stream_t stream) {
  cudaStream_t cu_stream;

  if (0 == size) {
    return;
  }
  CHECK_NOTNULL(dst);
  CHECK_NOTNULL(src);
  CHECK_LT(stream, HPPL_STREAM_END);
  cu_stream = t_resource.stream[stream];

L
liaogang 已提交
358
  CHECK_CUDA(cudaMemcpyAsync(dst, src, size, cudaMemcpyDefault, cu_stream));
Z
zhangjinchao01 已提交
359 360 361 362 363 364 365 366 367 368
}

void hl_start() {
  hl_specify_devices_start(NULL, 0);
  /* set default device */
  hl_set_device(0);
}

bool hl_device_can_access_peer(int device, int peerDevice) {
  int canAccessPeer;
L
liaogang 已提交
369
  CHECK_CUDA(cudaDeviceCanAccessPeer(&canAccessPeer, device, peerDevice));
Z
zhangjinchao01 已提交
370 371 372 373 374 375 376 377 378

  if (canAccessPeer == 1) {
    return true;
  } else {
    return false;
  }
}

void hl_device_enable_peer_access(int peerDevice) {
L
liaogang 已提交
379
  cudaError_t err = cudaDeviceEnablePeerAccess(peerDevice, 0);
Z
zhangjinchao01 已提交
380
  if (cudaErrorPeerAccessAlreadyEnabled == err) {
L
liaogang 已提交
381
    cudaGetLastError();
Z
zhangjinchao01 已提交
382 383 384 385 386 387 388 389 390 391
  } else {
    CHECK_CUDA(err);
  }
}

void hl_create_global_resources(hl_device_prop device_prop) {
  struct cudaDeviceProp cu_prop;
  int device = device_prop->device;
  global_device_resources device_res = device_prop->device_resources;

L
liaogang 已提交
392
  CHECK_CUDA(cudaSetDevice(device));
Z
zhangjinchao01 已提交
393
  /* device properties */
L
liaogang 已提交
394
  CHECK_CUDA(cudaGetDeviceProperties(&cu_prop, device));
Z
zhangjinchao01 已提交
395 396 397 398 399 400 401 402

  device_prop->major = cu_prop.major;
  device_prop->minor = cu_prop.minor;
  strncpy(device_prop->device_name, cu_prop.name, 256);
  device_prop->device_mem = cu_prop.totalGlobalMem;

  /* create device stream */
  for (int j = 0; j < NUMBER_OF_GLOBAL_STREAM; j++) {
L
liaogang 已提交
403
    CHECK_CUDA(cudaStreamCreate(&device_res->stream[j]));
Z
zhangjinchao01 已提交
404 405 406 407 408 409 410
  }

  /* cublas init */
  hl_cublas_init(&device_res->handle, device_res->stream[0]);

  /* create curand gen */
  CHECK_EQ(dynload::curandCreateGenerator(&device_res->gen,
411 412 413
                                          CURAND_RNG_PSEUDO_DEFAULT),
           CURAND_STATUS_SUCCESS)
      << "[Start failed] Curand init failed.";
Z
zhangjinchao01 已提交
414

415 416 417
  CHECK_EQ(dynload::curandSetStream(device_res->gen, device_res->stream[0]),
           CURAND_STATUS_SUCCESS)
      << "[Start failed] Curand set stream failed!";
Z
zhangjinchao01 已提交
418 419 420 421 422

  /* create cudnn handle */
  hl_cudnn_init(&device_res->cudnn_handle, device_res->stream[0]);

  int seed = gettid();
423 424 425
  CHECK_EQ(dynload::curandSetPseudoRandomGeneratorSeed(device_res->gen,
                                                       seed + device),
           CURAND_STATUS_SUCCESS);
Z
zhangjinchao01 已提交
426

427
  device_res->gen_mutex = (pthread_mutex_t *)(malloc(sizeof(pthread_mutex_t)));
Z
zhangjinchao01 已提交
428 429
  pthread_mutex_init(device_res->gen_mutex, NULL);

L
liaogang 已提交
430
  CHECK_CUDA(cudaRuntimeGetVersion(&g_cuda_lib_version));
Z
zhangjinchao01 已提交
431 432
}

433
int hl_get_cuda_version() { return g_cuda_lib_version; }
Z
zhangjinchao01 已提交
434

435
void hl_create_thread_resources(int device,
436
                                thread_device_resources device_res) {
L
liaogang 已提交
437
  CHECK_CUDA(cudaSetDevice(device));
Z
zhangjinchao01 已提交
438 439 440

  /* create thread stream */
  for (int j = 0; j < NUMBER_OF_THREAD_STREAM; j++) {
L
liaogang 已提交
441
    CHECK_CUDA(cudaStreamCreate(&device_res->stream[j]));
Z
zhangjinchao01 已提交
442 443 444
  }

  /* allocation device memory */
445
  device_res->gpu_mem = (real *)hl_malloc_device(HPPL_GPU_MEMORY_SIZE);
Z
zhangjinchao01 已提交
446 447

  /* allocation host memory */
448
  device_res->cpu_mem = (real *)hl_malloc_host(HPPL_GPU_MEMORY_SIZE);
Z
zhangjinchao01 已提交
449

L
liaogang 已提交
450
  CHECK_CUDA(cudaEventCreate(&device_res->mem_event));
Z
zhangjinchao01 已提交
451 452
}

453
void hl_specify_devices_start(int *device, int number) {
Z
zhangjinchao01 已提交
454 455 456
  if (hl_start_flag) return;

  /* 1. get the number of devices */
L
liaogang 已提交
457
  CHECK_CUDA(cudaGetDeviceCount(&g_system_device_num));
Z
zhangjinchao01 已提交
458 459 460 461 462 463 464
  CHECK_NE(g_system_device_num, 0) << "[Start failed] there is no GPU device";
  if (device == NULL) {
    number = g_system_device_num;
  }

  /* 2. check device & create device property table */
  CHECK_LE(number, g_system_device_num)
465 466
      << "[Start failed] System does not have enough device. "
      << "Device number: " << g_system_device_num << "Input number: " << number;
Z
zhangjinchao01 已提交
467 468 469

  char *tmp;
  hl_device_prop device_prop;
470 471
  tmp = (char *)malloc(g_system_device_num * sizeof(hl_device_prop *) +
                       number * sizeof(_hl_device_prop));
Z
zhangjinchao01 已提交
472 473
  CHECK(tmp) << "[Start failed] System memory is not enough.";

474
  g_device = (hl_device_prop *)tmp;
L
liaogang 已提交
475 476
  device_prop = (hl_device_prop)(
      (char *)tmp + g_system_device_num * sizeof(hl_device_prop *));
477
  memset(g_device, 0, g_system_device_num * sizeof(hl_device_prop *));
Z
zhangjinchao01 已提交
478 479 480 481 482 483 484 485 486 487
  int num = 0;
  for (int i = 0; i < number; i++) {
    int dev;
    if (device == NULL) {
      dev = i;
    } else {
      dev = device[i];
    }

    CHECK_LT(dev, g_system_device_num)
488 489 490
        << "[Start failed] The specified device number is "
        << "out of range. Max device number: " << g_system_device_num - 1
        << " Specified devcie number: " << dev;
Z
zhangjinchao01 已提交
491 492 493

    if (g_device[dev]) {
      /* Warning */
494
      LOG(WARNING) << "[Warning] Repeat specify device: " << dev;
Z
zhangjinchao01 已提交
495 496 497 498 499 500 501 502 503 504
      continue;
    }

    g_device[dev] = &device_prop[num];
    g_device[dev]->device = dev;
    num++;
  }
  device_num = num;

  /* 3.  create global device resources */
505
  char *tmp_res = (char *)malloc(device_num * sizeof(_global_device_resources));
Z
zhangjinchao01 已提交
506 507
  CHECK_NOTNULL(tmp_res);

508 509
  char *tmp_stream = (char *)malloc(device_num * NUMBER_OF_GLOBAL_STREAM *
                                    sizeof(cudaStream_t));
Z
zhangjinchao01 已提交
510 511 512 513 514 515 516 517
  CHECK_NOTNULL(tmp_stream);

  num = 0;
  for (int i = 0; i < g_system_device_num; i++) {
    if (!g_device[i]) {
      continue;
    }

518 519 520 521 522
    g_device[i]->device_resources = (global_device_resources)(
        tmp_res + num * sizeof(_global_device_resources));
    g_device[i]->device_resources->stream =
        (cudaStream_t *)(tmp_stream +
                         num * NUMBER_OF_GLOBAL_STREAM * sizeof(cudaStream_t));
Z
zhangjinchao01 已提交
523 524 525 526 527 528 529 530 531

    hl_create_global_resources(g_device[i]);
    num++;
  }

  /* hl_start() is ok */
  hl_start_flag = true;
  /* set default device */
  if (device == NULL) {
532
    hl_set_device(0);
Z
zhangjinchao01 已提交
533
  } else {
534
    hl_set_device(device[0]);
Z
zhangjinchao01 已提交
535 536 537 538 539 540
  }
}

void hl_rand(real *dest_d, size_t num) {
  pthread_mutex_lock(t_resource.gen_mutex);
  CHECK_EQ(
541
#ifndef PADDLE_TYPE_DOUBLE
542
      dynload::curandGenerateUniform(t_resource.gen, dest_d, num),
Z
zhangjinchao01 已提交
543
#else
544
      dynload::curandGenerateUniformDouble(t_resource.gen, dest_d, num),
Z
zhangjinchao01 已提交
545
#endif
546
      CURAND_STATUS_SUCCESS);
Z
zhangjinchao01 已提交
547 548 549 550 551 552
  pthread_mutex_unlock(t_resource.gen_mutex);
  CHECK_SYNC("hl_rand failed");
}

void hl_srand(unsigned int seed) {
  pthread_mutex_lock(t_resource.gen_mutex);
553 554
  CHECK_EQ(dynload::curandSetPseudoRandomGeneratorSeed(t_resource.gen, seed),
           CURAND_STATUS_SUCCESS);
Z
zhangjinchao01 已提交
555 556 557
  pthread_mutex_unlock(t_resource.gen_mutex);
}

558
void hl_set_sync_flag(bool flag) { g_sync_flag = flag; }
Z
zhangjinchao01 已提交
559

560
bool hl_get_sync_flag() { return g_sync_flag; }
Z
zhangjinchao01 已提交
561 562 563 564

void hl_stream_synchronize(hl_stream_t stream) {
  cudaStream_t cu_stream;

L
liaogang 已提交
565 566
  CHECK_LT(stream, HPPL_STREAM_END) << __func__
                                    << ": the parameter stream is error.";
Z
zhangjinchao01 已提交
567 568

  cu_stream = t_resource.stream[stream];
L
liaogang 已提交
569
  CHECK_CUDA(cudaStreamSynchronize(cu_stream));
Z
zhangjinchao01 已提交
570 571 572 573 574
}

void hl_create_event(hl_event_t *event) {
  CHECK_NOTNULL(event);

575 576
  struct _hl_event_st *st_event =
      (struct _hl_event_st *)malloc(sizeof(struct _hl_event_st));
Z
zhangjinchao01 已提交
577

L
liaogang 已提交
578
  CHECK_CUDA(cudaEventCreate(&st_event->cu_event));
Z
zhangjinchao01 已提交
579 580 581 582 583 584 585 586 587

  *event = st_event;
}

float hl_event_elapsed_time(hl_event_t start, hl_event_t end) {
  float time;
  CHECK_NOTNULL(start);
  CHECK_NOTNULL(end);

L
liaogang 已提交
588
  CHECK_CUDA(cudaEventElapsedTime(&time, start->cu_event, end->cu_event));
Z
zhangjinchao01 已提交
589 590 591 592 593 594 595
  return time;
}

void hl_stream_record_event(hl_stream_t stream, hl_event_t event) {
  cudaStream_t cu_stream;

  CHECK_NOTNULL(event);
L
liaogang 已提交
596 597
  CHECK_LT(stream, HPPL_STREAM_END) << __func__
                                    << ": the parameter stream is error.";
Z
zhangjinchao01 已提交
598 599

  cu_stream = t_resource.stream[stream];
L
liaogang 已提交
600
  CHECK_CUDA(cudaEventRecord(event->cu_event, cu_stream));
Z
zhangjinchao01 已提交
601 602 603 604 605 606
}

void hl_stream_wait_event(hl_stream_t stream, hl_event_t event) {
  cudaStream_t cu_stream;

  CHECK_NOTNULL(event);
L
liaogang 已提交
607 608
  CHECK_LT(stream, HPPL_STREAM_END) << __func__
                                    << ": the parameter stream is error.";
Z
zhangjinchao01 已提交
609 610

  cu_stream = t_resource.stream[stream];
L
liaogang 已提交
611
  CHECK_CUDA(cudaStreamWaitEvent(cu_stream, event->cu_event, 0));
Z
zhangjinchao01 已提交
612 613 614 615
}

void hl_destroy_event(hl_event_t event) {
  CHECK_NOTNULL(event);
L
liaogang 已提交
616
  CHECK_CUDA(cudaEventDestroy(event->cu_event));
Z
zhangjinchao01 已提交
617 618 619 620 621 622 623

  free(event);
  event = NULL;
}

void hl_event_synchronize(hl_event_t event) {
  CHECK_NOTNULL(event);
L
liaogang 已提交
624
  CHECK_CUDA(cudaEventSynchronize(event->cu_event));
Z
zhangjinchao01 已提交
625 626 627 628 629
}

void hl_get_device_name(char *name, int len, int device) {
  CHECK_NOTNULL(name);
  CHECK(device >= 0 && device < g_system_device_num && g_device[device])
630
      << "Device(" << device << ") is not specified in startup.";
Z
zhangjinchao01 已提交
631

632
  strncpy(name, g_device[device]->device_name, len);
Z
zhangjinchao01 已提交
633 634 635 636 637
}

void hl_get_device_memory(size_t *mem_size, int device) {
  CHECK_NOTNULL(mem_size);
  CHECK(device >= 0 && device < g_system_device_num && g_device[device])
638
      << "Device(" << device << ") is not specified in startup.";
Z
zhangjinchao01 已提交
639 640 641 642 643 644 645 646

  *mem_size = g_device[device]->device_mem;
}

void hl_get_device_compute_capability(int *major, int *minor, int device) {
  CHECK_NOTNULL(major);
  CHECK_NOTNULL(minor);
  CHECK(device >= 0 && device < g_system_device_num && g_device[device])
647
      << "Device(" << device << ") is not specified in startup.";
Z
zhangjinchao01 已提交
648 649 650 651 652

  *major = g_device[device]->major;
  *minor = g_device[device]->minor;
}

L
liaogang 已提交
653
int hl_get_device_last_error() { return (int)cudaGetLastError(); }
Z
zhangjinchao01 已提交
654

655
const char *hl_get_device_error_string() {
L
liaogang 已提交
656 657
  cudaError_t err = cudaGetLastError();
  return cudaGetErrorString(err);
Z
zhangjinchao01 已提交
658 659
}

660
const char *hl_get_device_error_string(size_t err) {
L
liaogang 已提交
661
  return cudaGetErrorString((cudaError_t)err);
Z
zhangjinchao01 已提交
662 663
}

L
liaogang 已提交
664
void hl_device_synchronize() { CHECK_CUDA(cudaDeviceSynchronize()); }
Z
zhangjinchao01 已提交
665
void hl_set_device_flags_block() {
L
liaogang 已提交
666
  CHECK_CUDA(cudaSetDeviceFlags(cudaDeviceScheduleBlockingSync));
Z
zhangjinchao01 已提交
667 668
}

L
liaogang 已提交
669
bool hl_cuda_event_is_ready(hl_event_t event) {
L
liaogang 已提交
670
  cudaError_t err = cudaEventQuery(event->cu_event);
Z
zhangjinchao01 已提交
671 672 673
  CHECK(cudaSuccess == err || cudaErrorNotReady == err);

  if (cudaErrorNotReady == err) {
L
liaogang 已提交
674
    return false;
Z
zhangjinchao01 已提交
675
  }
L
liaogang 已提交
676
  return true;
Z
zhangjinchao01 已提交
677
}
L
liaogang 已提交
678

L
liaogang 已提交
679
void hl_profiler_start() { CHECK_CUDA(cudaProfilerStart()); }
L
liaogang 已提交
680

L
liaogang 已提交
681
void hl_profiler_end() { CHECK_CUDA(cudaProfilerStop()); }