2022-05-24 02:02:31 -07:00
|
|
|
/*************************************************************************
|
|
|
|
|
* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* See LICENSE.txt for license information
|
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef NCCL_CUDAWRAP_H_
|
|
|
|
|
#define NCCL_CUDAWRAP_H_
|
|
|
|
|
|
|
|
|
|
#include <cuda.h>
|
2022-09-27 02:31:13 -07:00
|
|
|
#include <cuda_runtime.h>
|
|
|
|
|
#include "checks.h"
|
2022-05-24 02:02:31 -07:00
|
|
|
|
|
|
|
|
#if CUDART_VERSION >= 11030
|
|
|
|
|
#include <cudaTypedefs.h>
|
|
|
|
|
#else
|
2022-08-18 02:53:17 -07:00
|
|
|
typedef CUresult (CUDAAPI *PFN_cuInit_v2000)(unsigned int Flags);
|
|
|
|
|
typedef CUresult (CUDAAPI *PFN_cuDriverGetVersion_v2020)(int *driverVersion);
|
|
|
|
|
typedef CUresult (CUDAAPI *PFN_cuGetProcAddress_v11030)(const char *symbol, void **pfn, int driverVersion, cuuint64_t flags);
|
2022-05-24 02:02:31 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#define CUPFN(symbol) pfn_##symbol
|
|
|
|
|
|
|
|
|
|
// Check CUDA PFN driver calls
|
|
|
|
|
#define CUCHECK(cmd) do { \
|
|
|
|
|
CUresult err = pfn_##cmd; \
|
|
|
|
|
if( err != CUDA_SUCCESS ) { \
|
|
|
|
|
const char *errStr; \
|
|
|
|
|
(void) pfn_cuGetErrorString(err, &errStr); \
|
|
|
|
|
WARN("Cuda failure '%s'", errStr); \
|
|
|
|
|
return ncclUnhandledCudaError; \
|
|
|
|
|
} \
|
|
|
|
|
} while(false)
|
|
|
|
|
|
|
|
|
|
#define CUCHECKGOTO(cmd, res, label) do { \
|
|
|
|
|
CUresult err = pfn_##cmd; \
|
|
|
|
|
if( err != CUDA_SUCCESS ) { \
|
|
|
|
|
const char *errStr; \
|
|
|
|
|
(void) pfn_cuGetErrorString(err, &errStr); \
|
|
|
|
|
WARN("Cuda failure '%s'", errStr); \
|
|
|
|
|
res = ncclUnhandledCudaError; \
|
|
|
|
|
goto label; \
|
|
|
|
|
} \
|
|
|
|
|
} while(false)
|
|
|
|
|
|
|
|
|
|
// Report failure but clear error and continue
|
|
|
|
|
#define CUCHECKIGNORE(cmd) do { \
|
|
|
|
|
CUresult err = pfn_##cmd; \
|
|
|
|
|
if( err != CUDA_SUCCESS ) { \
|
|
|
|
|
const char *errStr; \
|
|
|
|
|
(void) pfn_cuGetErrorString(err, &errStr); \
|
|
|
|
|
INFO(NCCL_ALL,"%s:%d Cuda failure '%s'", __FILE__, __LINE__, errStr); \
|
|
|
|
|
} \
|
|
|
|
|
} while(false)
|
|
|
|
|
|
|
|
|
|
#define CUCHECKTHREAD(cmd, args) do { \
|
|
|
|
|
CUresult err = pfn_##cmd; \
|
|
|
|
|
if (err != CUDA_SUCCESS) { \
|
|
|
|
|
INFO(NCCL_INIT,"%s:%d -> %d [Async thread]", __FILE__, __LINE__, err); \
|
|
|
|
|
args->ret = ncclUnhandledCudaError; \
|
|
|
|
|
return args; \
|
|
|
|
|
} \
|
|
|
|
|
} while(0)
|
|
|
|
|
|
2022-08-18 02:53:17 -07:00
|
|
|
#define DECLARE_CUDA_PFN_EXTERN(symbol,version) extern PFN_##symbol##_v##version pfn_##symbol
|
2022-05-24 02:02:31 -07:00
|
|
|
|
|
|
|
|
#if CUDART_VERSION >= 11030
|
|
|
|
|
/* CUDA Driver functions loaded with cuGetProcAddress for versioning */
|
2022-08-18 02:53:17 -07:00
|
|
|
DECLARE_CUDA_PFN_EXTERN(cuDeviceGet, 2000);
|
|
|
|
|
DECLARE_CUDA_PFN_EXTERN(cuDeviceGetAttribute, 2000);
|
|
|
|
|
DECLARE_CUDA_PFN_EXTERN(cuGetErrorString, 6000);
|
|
|
|
|
DECLARE_CUDA_PFN_EXTERN(cuGetErrorName, 6000);
|
|
|
|
|
DECLARE_CUDA_PFN_EXTERN(cuMemGetAddressRange, 3020);
|
|
|
|
|
DECLARE_CUDA_PFN_EXTERN(cuCtxCreate, 3020);
|
|
|
|
|
DECLARE_CUDA_PFN_EXTERN(cuCtxDestroy, 4000);
|
|
|
|
|
DECLARE_CUDA_PFN_EXTERN(cuCtxSetCurrent, 4000);
|
2022-05-24 02:02:31 -07:00
|
|
|
#if CUDA_VERSION >= 11070
|
2022-08-18 02:53:17 -07:00
|
|
|
DECLARE_CUDA_PFN_EXTERN(cuMemGetHandleForAddressRange, 11070); // DMA-BUF support
|
2022-05-24 02:02:31 -07:00
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* CUDA Driver functions loaded with dlsym() */
|
2022-08-18 02:53:17 -07:00
|
|
|
DECLARE_CUDA_PFN_EXTERN(cuInit, 2000);
|
|
|
|
|
DECLARE_CUDA_PFN_EXTERN(cuDriverGetVersion, 2020);
|
|
|
|
|
DECLARE_CUDA_PFN_EXTERN(cuGetProcAddress, 11030);
|
2022-05-24 02:02:31 -07:00
|
|
|
|
|
|
|
|
|
2022-09-27 02:31:13 -07:00
|
|
|
ncclResult_t ncclCudaLibraryInit(void);
|
|
|
|
|
|
|
|
|
|
extern int ncclCudaDriverVersionCache;
|
|
|
|
|
|
|
|
|
|
inline ncclResult_t ncclCudaDriverVersion(int* driver) {
|
|
|
|
|
int version = __atomic_load_n(&ncclCudaDriverVersionCache, __ATOMIC_RELAXED);
|
|
|
|
|
if (version == -1) {
|
|
|
|
|
CUDACHECK(cudaDriverGetVersion(&version));
|
|
|
|
|
__atomic_store_n(&ncclCudaDriverVersionCache, version, __ATOMIC_RELAXED);
|
|
|
|
|
}
|
|
|
|
|
*driver = version;
|
|
|
|
|
return ncclSuccess;
|
|
|
|
|
}
|
2022-05-24 02:02:31 -07:00
|
|
|
|
|
|
|
|
#endif
|