SWDEV-362199 - add vulkan interop apis in nvidia
Change-Id: I6c5de6174a80be862b6d869927ed704dd1421b41
Tento commit je obsažen v:
@@ -1122,6 +1122,16 @@ inline static enum cudaChannelFormatKind hipChannelFormatKindToCudaChannelFormat
|
||||
}
|
||||
}
|
||||
|
||||
typedef enum cudaExternalMemoryHandleType hipExternalMemoryHandleType;
|
||||
typedef struct cudaExternalMemoryHandleDesc hipExternalMemoryHandleDesc;
|
||||
typedef struct cudaExternalMemoryBufferDesc hipExternalMemoryBufferDesc;
|
||||
typedef cudaExternalMemory_t hipExternalMemory_t;
|
||||
typedef enum cudaExternalSemaphoreHandleType hipExternalSemaphoreHandleType;
|
||||
typedef struct cudaExternalSemaphoreHandleDesc hipExternalSemaphoreHandleDesc;
|
||||
typedef cudaExternalSemaphore_t hipExternalSemaphore_t;
|
||||
typedef struct cudaExternalSemaphoreSignalParams hipExternalSemaphoreSignalParams;
|
||||
typedef struct cudaExternalSemaphoreWaitParams hipExternalSemaphoreWaitParams;
|
||||
|
||||
/**
|
||||
* graph types
|
||||
*
|
||||
@@ -2128,7 +2138,7 @@ inline static hipError_t hipOccupancyMaxActiveBlocksPerMultiprocessorWithFlags(i
|
||||
blockSize, dynamicSMemSize, flags));
|
||||
}
|
||||
|
||||
inline static hipError_t hipModuleOccupancyMaxActiveBlocksPerMultiprocessor(int* numBlocks,
|
||||
inline static hipError_t hipModuleOccupancyMaxActiveBlocksPerMultiprocessor(int* numBlocks,
|
||||
hipFunction_t f,
|
||||
int blockSize,
|
||||
size_t dynamicSMemSize ){
|
||||
@@ -2608,6 +2618,38 @@ inline static hipError_t hipLaunchCooperativeKernelMultiDevice(hipLaunchParams*
|
||||
return hipCUDAErrorTohipError(cudaLaunchCooperativeKernelMultiDevice(launchParamsList, numDevices, flags));
|
||||
}
|
||||
|
||||
inline static hipError_t hipImportExternalSemaphore(hipExternalSemaphore_t* extSem_out,
|
||||
const hipExternalSemaphoreHandleDesc* semHandleDesc) {
|
||||
return hipCUDAErrorTohipError(cudaImportExternalSemaphore(extSem_out,(const struct cudaExternalSemaphoreHandleDesc*)semHandleDesc));
|
||||
}
|
||||
|
||||
inline static hipError_t hipSignalExternalSemaphoresAsync(const hipExternalSemaphore_t* extSemArray,
|
||||
const hipExternalSemaphoreSignalParams* paramsArray,
|
||||
unsigned int numExtSems, hipStream_t stream) {
|
||||
return hipCUDAErrorTohipError(cudaSignalExternalSemaphoresAsync(extSemArray, (const struct cudaExternalSemaphoreSignalParams*)paramsArray, numExtSems, stream));
|
||||
}
|
||||
inline static hipError_t hipWaitExternalSemaphoresAsync(const hipExternalSemaphore_t* extSemArray,
|
||||
const hipExternalSemaphoreWaitParams* paramsArray,
|
||||
unsigned int numExtSems, hipStream_t stream) {
|
||||
return hipCUDAErrorTohipError(cudaWaitExternalSemaphoresAsync(extSemArray, (const struct cudaExternalSemaphoreWaitParams*)paramsArray, numExtSems, stream));
|
||||
}
|
||||
|
||||
inline static hipError_t hipDestroyExternalSemaphore(hipExternalSemaphore_t extSem) {
|
||||
return hipCUDAErrorTohipError(cudaDestroyExternalSemaphore(extSem));
|
||||
}
|
||||
|
||||
inline static hipError_t hipImportExternalMemory(hipExternalMemory_t* extMem_out, const hipExternalMemoryHandleDesc* memHandleDesc) {
|
||||
return hipCUDAErrorTohipError(cudaImportExternalMemory(extMem_out, (const struct cudaExternalMemoryHandleDesc*)memHandleDesc));
|
||||
}
|
||||
|
||||
inline static hipError_t hipExternalMemoryGetMappedBuffer(void **devPtr, hipExternalMemory_t extMem, const hipExternalMemoryBufferDesc *bufferDesc) {
|
||||
return hipCUDAErrorTohipError(cudaExternalMemoryGetMappedBuffer(devPtr, extMem, (const struct cudaExternalMemoryBufferDesc*)bufferDesc));
|
||||
}
|
||||
|
||||
inline static hipError_t hipDestroyExternalMemory(hipExternalMemory_t extMem) {
|
||||
return hipCUDAErrorTohipError(cudaDestroyExternalMemory(extMem));
|
||||
}
|
||||
|
||||
#if CUDA_VERSION >= CUDA_11020
|
||||
// ========================== HIP Stream Ordered Memory Allocator =================================
|
||||
inline static hipError_t hipDeviceGetDefaultMemPool(hipMemPool_t* mem_pool, int device) {
|
||||
|
||||
Odkázat v novém úkolu
Zablokovat Uživatele