1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 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 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 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 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902
|
/*
* Copyright (c) 2024 NVIDIA Corporation. All rights reserved.
* Copyright (c) 2014-2015 Intel, Inc. All rights reserved.
* Copyright (c) 2014 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* Copyright (c) 2014 Mellanox Technologies, Inc.
* All rights reserved.
* Copyright (c) Amazon.com, Inc. or its affiliates.
* All Rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "opal_config.h"
#include <cuda.h>
#include "accelerator_cuda.h"
#include "opal/mca/accelerator/base/base.h"
#include "opal/mca/rcache/rcache.h"
#include "opal/util/show_help.h"
#include "opal/util/proc.h"
/* Accelerator API's */
static int accelerator_cuda_check_addr(const void *addr, int *dev_id, uint64_t *flags);
static int accelerator_cuda_create_stream(int dev_id, opal_accelerator_stream_t **stream);
static int accelerator_cuda_create_event(int dev_id, opal_accelerator_event_t **event);
static int accelerator_cuda_record_event(int dev_id, opal_accelerator_event_t *event, opal_accelerator_stream_t *stream);
static int accelerator_cuda_query_event(int dev_id, opal_accelerator_event_t *event);
static int accelerator_cuda_memcpy_async(int dest_dev_id, int src_dev_id, void *dest, const void *src, size_t size,
opal_accelerator_stream_t *stream, opal_accelerator_transfer_type_t type);
static int accelerator_cuda_memcpy(int dest_dev_id, int src_dev_id, void *dest, const void *src,
size_t size, opal_accelerator_transfer_type_t type);
static int accelerator_cuda_memmove(int dest_dev_id, int src_dev_id, void *dest, const void *src, size_t size,
opal_accelerator_transfer_type_t type);
static int accelerator_cuda_mem_alloc(int dev_id, void **ptr, size_t size);
static int accelerator_cuda_mem_release(int dev_id, void *ptr);
static int accelerator_cuda_get_address_range(int dev_id, const void *ptr, void **base,
size_t *size);
static int accelerator_cuda_host_register(int dev_id, void *ptr, size_t size);
static int accelerator_cuda_host_unregister(int dev_id, void *ptr);
static int accelerator_cuda_get_device(int *dev_id);
static int accelerator_cuda_get_device_pci_attr(int dev_id, opal_accelerator_pci_attr_t *pci_attr);
static int accelerator_cuda_device_can_access_peer( int *access, int dev1, int dev2);
static int accelerator_cuda_get_buffer_id(int dev_id, const void *addr, opal_accelerator_buffer_id_t *buf_id);
opal_accelerator_base_module_t opal_accelerator_cuda_module =
{
accelerator_cuda_check_addr,
accelerator_cuda_create_stream,
accelerator_cuda_create_event,
accelerator_cuda_record_event,
accelerator_cuda_query_event,
accelerator_cuda_memcpy_async,
accelerator_cuda_memcpy,
accelerator_cuda_memmove,
accelerator_cuda_mem_alloc,
accelerator_cuda_mem_release,
accelerator_cuda_get_address_range,
accelerator_cuda_host_register,
accelerator_cuda_host_unregister,
accelerator_cuda_get_device,
accelerator_cuda_get_device_pci_attr,
accelerator_cuda_device_can_access_peer,
accelerator_cuda_get_buffer_id
};
static int accelerator_cuda_check_vmm(CUdeviceptr dbuf, CUmemorytype *mem_type,
int *dev_id)
{
#if OPAL_CUDA_VMM_SUPPORT
static int device_count = -1;
CUmemAllocationProp prop;
CUmemLocation location;
CUresult result;
unsigned long long flags;
CUmemGenericAllocationHandle alloc_handle;
if (device_count == -1) {
result = cuDeviceGetCount(&device_count);
if (result != CUDA_SUCCESS) {
return 0;
}
}
result = cuMemRetainAllocationHandle(&alloc_handle, (void*)dbuf);
if (result != CUDA_SUCCESS) {
return 0;
}
result = cuMemGetAllocationPropertiesFromHandle(&prop, alloc_handle);
if (result != CUDA_SUCCESS) {
cuMemRelease(alloc_handle);
return 0;
}
if (prop.location.type == CU_MEM_LOCATION_TYPE_DEVICE) {
*mem_type = CU_MEMORYTYPE_DEVICE;
*dev_id = prop.location.id;
cuMemRelease(alloc_handle);
return 1;
}
if (prop.location.type == CU_MEM_LOCATION_TYPE_HOST_NUMA) {
/* check if device has access */
for (int i = 0; i < device_count; i++) {
location.type = CU_MEM_LOCATION_TYPE_DEVICE;
location.id = i;
result = cuMemGetAccess(&flags, &location, dbuf);
if ((CUDA_SUCCESS == result) &&
(CU_MEM_ACCESS_FLAGS_PROT_READWRITE == flags)) {
*mem_type = CU_MEMORYTYPE_DEVICE;
*dev_id = i;
cuMemRelease(alloc_handle);
return 1;
}
}
}
/* host must have access as device access possibility is exhausted */
*mem_type = CU_MEMORYTYPE_HOST;
*dev_id = MCA_ACCELERATOR_NO_DEVICE_ID;
cuMemRelease(alloc_handle);
return 1;
#endif
return 0;
}
static int accelerator_cuda_get_device_id(CUcontext mem_ctx) {
/* query the device from the context */
int dev_id = -1;
CUdevice ptr_dev;
cuCtxPushCurrent(mem_ctx);
cuCtxGetDevice(&ptr_dev);
for (int i = 0; i < opal_accelerator_cuda_num_devices; ++i) {
CUdevice dev;
cuDeviceGet(&dev, i);
if (dev == ptr_dev) {
dev_id = i;
break;
}
}
cuCtxPopCurrent(&mem_ctx);
return dev_id;
}
static int accelerator_cuda_check_mpool(CUdeviceptr dbuf, CUmemorytype *mem_type,
int *dev_id)
{
#if OPAL_CUDA_VMM_SUPPORT
static int device_count = -1;
static int mpool_supported = -1;
CUresult result;
CUmemoryPool mpool;
CUmemAccess_flags flags;
CUmemLocation location;
if (mpool_supported <= 0) {
if (mpool_supported == -1) {
if (device_count == -1) {
result = cuDeviceGetCount(&device_count);
if (result != CUDA_SUCCESS || (0 == device_count)) {
mpool_supported = 0; /* never check again */
device_count = 0;
return 0;
}
}
/* assume uniformity of devices */
result = cuDeviceGetAttribute(&mpool_supported,
CU_DEVICE_ATTRIBUTE_MEMORY_POOLS_SUPPORTED, 0);
if (result != CUDA_SUCCESS) {
mpool_supported = 0;
}
}
if (0 == mpool_supported) {
return 0;
}
}
result = cuPointerGetAttribute(&mpool, CU_POINTER_ATTRIBUTE_MEMPOOL_HANDLE,
dbuf);
if (CUDA_SUCCESS != result) {
return 0;
}
/* check if device has access */
for (int i = 0; i < device_count; i++) {
location.type = CU_MEM_LOCATION_TYPE_DEVICE;
location.id = i;
result = cuMemPoolGetAccess(&flags, mpool, &location);
if ((CUDA_SUCCESS == result) &&
(CU_MEM_ACCESS_FLAGS_PROT_READWRITE == flags)) {
*mem_type = CU_MEMORYTYPE_DEVICE;
*dev_id = i;
return 1;
}
}
/* host must have access as device access possibility is exhausted */
*mem_type = CU_MEMORYTYPE_HOST;
*dev_id = MCA_ACCELERATOR_NO_DEVICE_ID;
return 0;
#endif
return 0;
}
static int accelerator_cuda_get_primary_context(CUdevice dev_id, CUcontext *pctx)
{
CUresult result;
unsigned int flags;
int active;
result = cuDevicePrimaryCtxGetState(dev_id, &flags, &active);
if (CUDA_SUCCESS != result) {
return OPAL_ERROR;
}
if (active) {
result = cuDevicePrimaryCtxRetain(pctx, dev_id);
return OPAL_SUCCESS;
}
return OPAL_ERROR;
}
static int accelerator_cuda_check_addr(const void *addr, int *dev_id, uint64_t *flags)
{
CUresult result;
int is_vmm = 0;
int is_mpool_ptr = 0;
int vmm_dev_id = MCA_ACCELERATOR_NO_DEVICE_ID;
int mpool_dev_id = MCA_ACCELERATOR_NO_DEVICE_ID;
CUmemorytype vmm_mem_type = 0;
CUmemorytype mpool_mem_type = 0;
CUmemorytype mem_type = 0;
CUdeviceptr dbuf = (CUdeviceptr) addr;
CUcontext ctx = NULL, mem_ctx = NULL;
*dev_id = MCA_ACCELERATOR_NO_DEVICE_ID;
if (NULL == addr || NULL == flags) {
return OPAL_ERR_BAD_PARAM;
}
*flags = 0;
is_vmm = accelerator_cuda_check_vmm(dbuf, &vmm_mem_type, &vmm_dev_id);
is_mpool_ptr = accelerator_cuda_check_mpool(dbuf, &mpool_mem_type, &mpool_dev_id);
#if OPAL_CUDA_GET_ATTRIBUTES
uint32_t is_managed = 0;
/* With CUDA 7.0, we can get multiple attributes with a single call */
CUpointer_attribute attributes[3] = {CU_POINTER_ATTRIBUTE_MEMORY_TYPE,
CU_POINTER_ATTRIBUTE_CONTEXT,
CU_POINTER_ATTRIBUTE_IS_MANAGED};
void *attrdata[] = {(void *) &mem_type, (void *) &mem_ctx, (void *) &is_managed};
result = cuPointerGetAttributes(3, attributes, attrdata, dbuf);
OPAL_OUTPUT_VERBOSE((101, opal_accelerator_base_framework.framework_output,
"dbuf=%p, mem_type=%d, mem_ctx=%p, is_managed=%d, result=%d", (void *) dbuf,
(int) mem_type, (void *) mem_ctx, is_managed, result));
/* Mark unified memory buffers with a flag. This will allow all unified
* memory to be forced through host buffers. Note that this memory can
* be either host or device so we need to set this flag prior to that check. */
if (1 == is_managed) {
*flags |= MCA_ACCELERATOR_FLAGS_UNIFIED_MEMORY;
}
if (CUDA_SUCCESS != result) {
/* If cuda is not initialized, assume it is a host buffer. It can also
* return invalid value if the ptr was not allocated by, mapped by,
* or registered with a CUcontext */
if (CUDA_ERROR_NOT_INITIALIZED == result || CUDA_ERROR_INVALID_VALUE == result) {
return 0;
} else {
return OPAL_ERROR;
}
} else if (CU_MEMORYTYPE_HOST == mem_type) {
if (is_vmm && (vmm_mem_type == CU_MEMORYTYPE_DEVICE)) {
mem_type = CU_MEMORYTYPE_DEVICE;
*dev_id = vmm_dev_id;
} else if (is_mpool_ptr && (mpool_mem_type == CU_MEMORYTYPE_DEVICE)) {
mem_type = CU_MEMORYTYPE_DEVICE;
*dev_id = mpool_dev_id;
} else {
/* Host memory, nothing to do here */
return 0;
}
} else if (0 == mem_type) {
/* This can happen when CUDA is initialized but dbuf is not valid CUDA pointer */
return 0;
} else {
if (is_vmm) {
*dev_id = vmm_dev_id;
} else if (is_mpool_ptr) {
*dev_id = mpool_dev_id;
} else {
/* query the device from the context */
*dev_id = accelerator_cuda_get_device_id(mem_ctx);
}
}
#else /* OPAL_CUDA_GET_ATTRIBUTES */
result = cuPointerGetAttribute(&mem_type, CU_POINTER_ATTRIBUTE_MEMORY_TYPE, dbuf);
if (CUDA_SUCCESS != result) {
/* If cuda is not initialized, assume it is a host buffer. */
if (CUDA_ERROR_NOT_INITIALIZED == result) {
return 0;
} else {
return OPAL_ERROR;
}
} else if (CU_MEMORYTYPE_HOST == mem_type) {
if (is_vmm && (vmm_mem_type == CU_MEMORYTYPE_DEVICE)) {
mem_type = CU_MEMORYTYPE_DEVICE;
*dev_id = vmm_dev_id;
} else if (is_mpool_ptr && (mpool_mem_type == CU_MEMORYTYPE_DEVICE)) {
mem_type = CU_MEMORYTYPE_DEVICE;
*dev_id = mpool_dev_id;
} else {
/* Host memory, nothing to do here */
return 0;
}
} else {
if (is_vmm) {
*dev_id = vmm_dev_id;
} else if (is_mpool_ptr) {
*dev_id = mpool_dev_id;
} else {
result = cuPointerGetAttribute(&mem_ctx,
CU_POINTER_ATTRIBUTE_CONTEXT, dbuf);
/* query the device from the context */
*dev_id = accelerator_cuda_get_device_id(mem_ctx);
}
}
#endif /* OPAL_CUDA_GET_ATTRIBUTES */
/* Must be a device pointer */
assert(CU_MEMORYTYPE_DEVICE == mem_type);
/* This piece of code was added in to handle in a case involving
* OMP threads. The user had initialized CUDA and then spawned
* two threads. The first thread had the CUDA context, but the
* second thread did not. We therefore had no context to act upon
* and future CUDA driver calls would fail. Therefore, if we have
* GPU memory, but no context, get the context from the GPU memory
* and set the current context to that. It is rare that we will not
* have a context. */
result = cuCtxGetCurrent(&ctx);
if (OPAL_UNLIKELY(NULL == ctx)) {
if (CUDA_SUCCESS == result) {
#if !OPAL_CUDA_GET_ATTRIBUTES
result = cuPointerGetAttribute(&mem_ctx, CU_POINTER_ATTRIBUTE_CONTEXT, dbuf);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_output(0,
"CUDA: error calling cuPointerGetAttribute: "
"result=%d, ptr=%p aborting...",
result, addr);
return OPAL_ERROR;
}
#endif /* OPAL_CUDA_GET_ATTRIBUTES */
if (is_vmm || is_mpool_ptr) {
if (OPAL_SUCCESS ==
accelerator_cuda_get_primary_context(
is_vmm ? vmm_dev_id : mpool_dev_id, &mem_ctx)) {
/* As VMM/mempool allocations have no context associated
* with them, check if device primary context can be set */
} else {
opal_output(0,
"CUDA: unable to set ctx with the given pointer"
"ptr=%p aborting...", addr);
return OPAL_ERROR;
}
}
result = cuCtxSetCurrent(mem_ctx);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_output(0,
"CUDA: error calling cuCtxSetCurrent: "
"result=%d, ptr=%p aborting...",
result, addr);
return OPAL_ERROR;
} else {
OPAL_OUTPUT_VERBOSE(
(10, opal_accelerator_base_framework.framework_output, "CUDA: cuCtxSetCurrent passed: ptr=%p", addr));
}
} else {
/* Print error and proceed */
opal_output(0,
"CUDA: error calling cuCtxGetCurrent: "
"result=%d, ptr=%p aborting...",
result, addr);
return OPAL_ERROR;
}
}
/* WORKAROUND - They are times when the above code determines a pice of memory
* is GPU memory, but it actually is not. That has been seen on multi-GPU systems
* with 6 or 8 GPUs on them. Therefore, we will do this extra check. Note if we
* made it this far, then the assumption at this point is we have GPU memory.
* Unfotunately, this extra call is costing us another 100 ns almost doubling
* the cost of this entire function. */
if (OPAL_LIKELY(((CUDA_VERSION > 7000) ? 0 : 1))) {
CUdeviceptr pbase;
size_t psize;
result = cuMemGetAddressRange(&pbase, &psize, dbuf);
if (CUDA_SUCCESS != result) {
opal_output_verbose(5, opal_accelerator_base_framework.framework_output,
"CUDA: cuMemGetAddressRange failed on this pointer: result=%d, buf=%p "
"Overriding check and setting to host pointer. ",
result, (void *) dbuf);
/* This cannot be GPU memory if the previous call failed */
return 0;
}
}
/* First access on a device pointer finalizes CUDA support initialization. */
opal_accelerator_cuda_delayed_init();
return 1;
}
static int accelerator_cuda_create_stream(int dev_id, opal_accelerator_stream_t **stream)
{
CUresult result;
int delayed_init = opal_accelerator_cuda_delayed_init();
if (OPAL_UNLIKELY(0 != delayed_init)) {
return delayed_init;
}
*stream = (opal_accelerator_stream_t*)OBJ_NEW(opal_accelerator_cuda_stream_t);
if (NULL == *stream) {
return OPAL_ERR_OUT_OF_RESOURCE;
}
(*stream)->stream = malloc(sizeof(CUstream));
if (NULL == (*stream)->stream) {
OBJ_RELEASE(*stream);
return OPAL_ERR_OUT_OF_RESOURCE;
}
result = cuStreamCreate((*stream)->stream, 0);
if (OPAL_UNLIKELY(result != CUDA_SUCCESS)) {
opal_show_help("help-accelerator-cuda.txt", "cuStreamCreate failed", true,
OPAL_PROC_MY_HOSTNAME, result);
free((*stream)->stream);
OBJ_RELEASE(*stream);
return OPAL_ERROR;
}
return OPAL_SUCCESS;
}
static void opal_accelerator_cuda_stream_destruct(opal_accelerator_cuda_stream_t *stream)
{
CUresult result;
if (NULL != stream->base.stream) {
result = cuStreamDestroy(*(CUstream *)stream->base.stream);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_show_help("help-accelerator-cuda.txt", "cuStreamDestroy failed", true,
result);
}
free(stream->base.stream);
}
}
OBJ_CLASS_INSTANCE(
opal_accelerator_cuda_stream_t,
opal_accelerator_stream_t,
NULL,
opal_accelerator_cuda_stream_destruct);
static int accelerator_cuda_create_event(int dev_id, opal_accelerator_event_t **event)
{
CUresult result;
int delayed_init = opal_accelerator_cuda_delayed_init();
if (OPAL_UNLIKELY(0 != delayed_init)) {
return delayed_init;
}
*event = (opal_accelerator_event_t*)OBJ_NEW(opal_accelerator_cuda_event_t);
if (NULL == *event) {
return OPAL_ERR_OUT_OF_RESOURCE;
}
(*event)->event = malloc(sizeof(CUevent));
if (NULL == (*event)->event) {
OBJ_RELEASE(*event);
return OPAL_ERR_OUT_OF_RESOURCE;
}
result = cuEventCreate((*event)->event, CU_EVENT_DISABLE_TIMING);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_show_help("help-accelerator-cuda.txt", "cuEventCreate failed", true,
OPAL_PROC_MY_HOSTNAME, result);
free((*event)->event);
OBJ_RELEASE(*event);
return OPAL_ERROR;
}
return OPAL_SUCCESS;
}
static void opal_accelerator_cuda_event_destruct(opal_accelerator_cuda_event_t *event)
{
CUresult result;
if (NULL != event->base.event) {
result = cuEventDestroy(*(CUevent *)event->base.event);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_show_help("help-accelerator-cuda.txt", "cuEventDestroy failed", true,
result);
}
free(event->base.event);
}
}
OBJ_CLASS_INSTANCE(
opal_accelerator_cuda_event_t,
opal_accelerator_event_t,
NULL,
opal_accelerator_cuda_event_destruct);
static int accelerator_cuda_record_event(int dev_id, opal_accelerator_event_t *event, opal_accelerator_stream_t *stream)
{
CUresult result;
if (NULL == stream || NULL == event) {
return OPAL_ERR_BAD_PARAM;
}
result = cuEventRecord(*(CUevent *)event->event, *(CUstream *)stream->stream);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_show_help("help-accelerator-cuda.txt", "cuEventRecord failed", true,
OPAL_PROC_MY_HOSTNAME, result);
return OPAL_ERROR;
}
return OPAL_SUCCESS;
}
static int accelerator_cuda_query_event(int dev_id, opal_accelerator_event_t *event)
{
CUresult result;
if (NULL == event) {
return OPAL_ERR_BAD_PARAM;
}
result = cuEventQuery(*(CUevent *)event->event);
switch (result) {
case CUDA_SUCCESS:
{
return OPAL_SUCCESS;
break;
}
case CUDA_ERROR_NOT_READY:
{
return OPAL_ERR_RESOURCE_BUSY;
break;
}
default:
{
opal_show_help("help-accelerator-cuda.txt", "cuEventQuery failed", true,
result);
return OPAL_ERROR;
}
}
}
static int accelerator_cuda_memcpy_async(int dest_dev_id, int src_dev_id, void *dest, const void *src, size_t size,
opal_accelerator_stream_t *stream, opal_accelerator_transfer_type_t type)
{
CUresult result;
int delayed_init = opal_accelerator_cuda_delayed_init();
if (OPAL_UNLIKELY(0 != delayed_init)) {
return delayed_init;
}
if (NULL == stream || NULL == dest || NULL == src || size < 0) {
return OPAL_ERR_BAD_PARAM;
}
if (0 == size) {
return OPAL_SUCCESS;
}
result = cuMemcpyAsync((CUdeviceptr) dest, (CUdeviceptr) src, size, *(CUstream *)stream->stream);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_show_help("help-accelerator-cuda.txt", "cuMemcpyAsync failed", true, dest, src,
size, result);
return OPAL_ERROR;
}
return OPAL_SUCCESS;
}
static int accelerator_cuda_memcpy(int dest_dev_id, int src_dev_id, void *dest, const void *src,
size_t size, opal_accelerator_transfer_type_t type)
{
CUresult result;
int delayed_init = opal_accelerator_cuda_delayed_init();
if (OPAL_UNLIKELY(0 != delayed_init)) {
return delayed_init;
}
if (NULL == dest || NULL == src || size < 0) {
return OPAL_ERR_BAD_PARAM;
}
if (0 == size) {
return OPAL_SUCCESS;
}
/* Async copy then synchronize is the default behavior as some applications
* cannot utilize synchronous copies. In addition, host memory does not need
* to be page-locked if an Async memory copy is done (It just makes it synchronous
* which is what we want anyway):
* https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html#concurrent-execution-host-device
* Additionally, cuMemcpy is not necessarily always synchronous. See:
* https://docs.nvidia.com/cuda/cuda-driver-api/api-sync-behavior.html
* TODO: Add optimizations for type field */
result = cuMemcpyAsync((CUdeviceptr) dest, (CUdeviceptr) src, size, opal_accelerator_cuda_memcpy_stream);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_show_help("help-accelerator-cuda.txt", "cuMemcpyAsync failed", true, dest, src,
size, result);
return OPAL_ERROR;
}
result = cuStreamSynchronize(opal_accelerator_cuda_memcpy_stream);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_show_help("help-accelerator-cuda.txt", "cuStreamSynchronize failed", true,
OPAL_PROC_MY_HOSTNAME, result);
return OPAL_ERROR;
}
return OPAL_SUCCESS;
}
static int accelerator_cuda_memmove(int dest_dev_id, int src_dev_id, void *dest, const void *src, size_t size,
opal_accelerator_transfer_type_t type)
{
CUdeviceptr tmp;
CUresult result;
int delayed_init = opal_accelerator_cuda_delayed_init();
if (OPAL_UNLIKELY(0 != delayed_init)) {
return delayed_init;
}
if (NULL == dest || NULL == src || size <= 0) {
return OPAL_ERR_BAD_PARAM;
}
result = cuMemAlloc(&tmp, size);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
return OPAL_ERROR;
}
result = cuMemcpyAsync(tmp, (CUdeviceptr) src, size, opal_accelerator_cuda_memcpy_stream);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_show_help("help-accelerator-cuda.txt", "cuMemcpyAsync failed", true, tmp, src, size,
result);
return OPAL_ERROR;
}
result = cuMemcpyAsync((CUdeviceptr) dest, tmp, size, opal_accelerator_cuda_memcpy_stream);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_show_help("help-accelerator-cuda.txt", "cuMemcpyAsync failed", true, dest, tmp,
size, result);
return OPAL_ERROR;
}
result = cuStreamSynchronize(opal_accelerator_cuda_memcpy_stream);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_show_help("help-accelerator-cuda.txt", "cuStreamSynchronize failed", true,
OPAL_PROC_MY_HOSTNAME, result);
return OPAL_ERROR;
}
cuMemFree(tmp);
return OPAL_SUCCESS;
}
static int accelerator_cuda_mem_alloc(int dev_id, void **ptr, size_t size)
{
CUresult result;
int delayed_init = opal_accelerator_cuda_delayed_init();
if (OPAL_UNLIKELY(0 != delayed_init)) {
return delayed_init;
}
if (NULL == ptr || 0 == size) {
return OPAL_ERR_BAD_PARAM;
}
if (size > 0) {
result = cuMemAlloc((CUdeviceptr *) ptr, size);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_show_help("help-accelerator-cuda.txt", "cuMemAlloc failed", true,
OPAL_PROC_MY_HOSTNAME, result);
return OPAL_ERROR;
}
}
return 0;
}
static int accelerator_cuda_mem_release(int dev_id, void *ptr)
{
CUresult result;
if (NULL != ptr) {
result = cuMemFree((CUdeviceptr) ptr);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_show_help("help-accelerator-cuda.txt", "cuMemFree failed", true,
OPAL_PROC_MY_HOSTNAME, result);
return OPAL_ERROR;
}
}
return 0;
}
static int accelerator_cuda_get_address_range(int dev_id, const void *ptr, void **base,
size_t *size)
{
CUresult result;
int delayed_init = opal_accelerator_cuda_delayed_init();
if (OPAL_UNLIKELY(0 != delayed_init)) {
return delayed_init;
}
if (NULL == ptr || NULL == base || NULL == size) {
return OPAL_ERR_BAD_PARAM;
}
result = cuMemGetAddressRange((CUdeviceptr *) base, size, (CUdeviceptr) ptr);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_show_help("help-accelerator-cuda.txt", "cuMemGetAddressRange failed 2", true,
OPAL_PROC_MY_HOSTNAME, result, ptr);
return OPAL_ERROR;
} else {
opal_output_verbose(50, opal_accelerator_base_framework.framework_output,
"CUDA: cuMemGetAddressRange passed: addr=%p, pbase=%p, psize=%lu ",
ptr, *(char **) base, *size);
}
return 0;
}
static int accelerator_cuda_host_register(int dev_id, void *ptr, size_t size)
{
CUresult result;
int delayed_init = opal_accelerator_cuda_delayed_init();
if (OPAL_UNLIKELY(0 != delayed_init)) {
return delayed_init;
}
if (NULL == ptr && size > 0) {
return OPAL_ERR_BAD_PARAM;
}
result = cuMemHostRegister(ptr, size, 0);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_show_help("help-accelerator-cuda.txt", "cuMemHostRegister failed", true,
ptr, size, OPAL_PROC_MY_HOSTNAME, result);
return OPAL_ERROR;
}
return OPAL_SUCCESS;
}
static int accelerator_cuda_host_unregister(int dev_id, void *ptr)
{
CUresult result;
if (NULL != ptr) {
result = cuMemHostUnregister(ptr);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_show_help("help-accelerator-cuda.txt", "cuMemHostUnregister failed", true,
ptr, OPAL_PROC_MY_HOSTNAME, result);
return OPAL_ERROR;
}
}
return OPAL_SUCCESS;
}
static int accelerator_cuda_get_device(int *dev_id)
{
CUdevice cuDev;
CUresult result;
int delayed_init = opal_accelerator_cuda_delayed_init();
if (OPAL_UNLIKELY(0 != delayed_init)) {
return delayed_init;
}
if (NULL == dev_id) {
return OPAL_ERR_BAD_PARAM;
}
result = cuCtxGetDevice(&cuDev);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_show_help("help-accelerator-cuda.txt", "cuCtxGetDevice failed", true,
result);
return OPAL_ERROR;
}
*dev_id = cuDev;
return 0;
}
static int accelerator_cuda_get_device_pci_attr(int dev_id, opal_accelerator_pci_attr_t *pci_attr)
{
CUresult result;
int ret;
static const int PCI_BUS_ID_LENGTH = 13;
char pci_bus_id[PCI_BUS_ID_LENGTH];
char domain_id[5] = {0}, bus_id[3] = {0}, device_id[3] = {0}, function_id[2] = {0};
if (NULL == pci_attr) {
return OPAL_ERR_BAD_PARAM;
}
result = cuDeviceGetPCIBusId(pci_bus_id, PCI_BUS_ID_LENGTH, dev_id);
if (CUDA_SUCCESS != result) {
opal_output_verbose(5, opal_accelerator_base_framework.framework_output,
"CUDA: Failed to get device PCI bus id");
return OPAL_ERROR;
}
ret = sscanf(pci_bus_id, "%4s:%2s:%2s.%1s", domain_id, bus_id, device_id, function_id);
if (4 > ret) {
opal_output_verbose(5, opal_accelerator_base_framework.framework_output,
"CUDA: Failed to parse device PCI bus id");
return OPAL_ERROR;
}
errno = 0;
pci_attr->domain_id = strtol(domain_id, NULL, 16);
pci_attr->bus_id = strtol(bus_id, NULL, 16);
pci_attr->device_id = strtol(device_id, NULL, 16);
pci_attr->function_id = strtol(function_id, NULL, 16);
if (0 != errno) {
return OPAL_ERROR;
}
return OPAL_SUCCESS;
}
static int accelerator_cuda_device_can_access_peer(int *access, int dev1, int dev2)
{
CUresult result;
int delayed_init = opal_accelerator_cuda_delayed_init();
if (OPAL_UNLIKELY(0 != delayed_init)) {
return delayed_init;
}
if (NULL == access) {
return OPAL_ERR_BAD_PARAM;
}
result = cuDeviceCanAccessPeer(access, (CUdevice) dev1, (CUdevice) dev2);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_show_help("help-accelerator-cuda.txt", "cuDeviceCanAccessPeer failed", true,
OPAL_PROC_MY_HOSTNAME, result);
return OPAL_ERROR;
}
return 0;
}
/*
* Get the buffer ID from the memory.
* This is needed to ensure the cached registration is not stale. If
* we fail to get buffer ID, print an error and set buffer ID to 0.
* Also set SYNC_MEMOPS on any GPU registration to ensure that
* synchronous copies complete before the buffer is accessed.
*/
static int accelerator_cuda_get_buffer_id(int dev_id, const void *addr, opal_accelerator_buffer_id_t *buf_id)
{
CUresult result;
int enable = 1;
int delayed_init = opal_accelerator_cuda_delayed_init();
if (OPAL_UNLIKELY(0 != delayed_init)) {
return delayed_init;
}
result = cuPointerGetAttribute((unsigned long long *)buf_id, CU_POINTER_ATTRIBUTE_BUFFER_ID, (CUdeviceptr) addr);
if (OPAL_UNLIKELY(result != CUDA_SUCCESS)) {
opal_show_help("help-accelerator-cuda.txt", "bufferID failed", true, OPAL_PROC_MY_HOSTNAME,
result);
return OPAL_ERROR;
}
result = cuPointerSetAttribute(&enable, CU_POINTER_ATTRIBUTE_SYNC_MEMOPS,
(CUdeviceptr) addr);
if (OPAL_UNLIKELY(CUDA_SUCCESS != result)) {
opal_show_help("help-accelerator-cuda.txt", "cuPointerSetAttribute failed", true,
OPAL_PROC_MY_HOSTNAME, result, addr);
return OPAL_ERROR;
}
return OPAL_SUCCESS;
}
|