|
2 | 2 | # |
3 | 3 | # SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE |
4 | 4 | # |
5 | | -# This code was automatically generated across versions from 12.9.0 to 13.3.0, generator version 0.3.1.dev1630+gadce055ea.d20260422. Do not modify it directly. |
| 5 | +# This code was automatically generated across versions from 12.9.0 to 13.3.0, generator version 0.3.1.dev1622+g48467ab08.d20260421. Do not modify it directly. |
6 | 6 |
|
7 | 7 | from ._internal cimport driver as _driver |
8 | 8 |
|
@@ -2008,3 +2008,55 @@ cdef CUresult cuCoredumpDeregisterStartCallback(CUcoredumpCallbackHandle callbac |
2008 | 2008 |
|
2009 | 2009 | cdef CUresult cuCoredumpDeregisterCompleteCallback(CUcoredumpCallbackHandle callback) except ?CUDA_ERROR_NOT_FOUND nogil: |
2010 | 2010 | return _driver._cuCoredumpDeregisterCompleteCallback(callback) |
| 2011 | + |
| 2012 | + |
| 2013 | +cdef CUresult cuLogicalEndpointIdReserve(CUlogicalEndpointId* baseLeId, cuuint32_t count) except ?CUDA_ERROR_NOT_FOUND nogil: |
| 2014 | + return _driver._cuLogicalEndpointIdReserve(baseLeId, count) |
| 2015 | + |
| 2016 | + |
| 2017 | +cdef CUresult cuLogicalEndpointIdRelease(CUlogicalEndpointId baseLeId, cuuint32_t count) except ?CUDA_ERROR_NOT_FOUND nogil: |
| 2018 | + return _driver._cuLogicalEndpointIdRelease(baseLeId, count) |
| 2019 | + |
| 2020 | + |
| 2021 | +cdef CUresult cuLogicalEndpointCreate(CUlogicalEndpointId leId, const CUlogicalEndpointProp* prop) except ?CUDA_ERROR_NOT_FOUND nogil: |
| 2022 | + return _driver._cuLogicalEndpointCreate(leId, prop) |
| 2023 | + |
| 2024 | + |
| 2025 | +cdef CUresult cuLogicalEndpointAddDevice(CUlogicalEndpointId leId, CUdevice dev) except ?CUDA_ERROR_NOT_FOUND nogil: |
| 2026 | + return _driver._cuLogicalEndpointAddDevice(leId, dev) |
| 2027 | + |
| 2028 | + |
| 2029 | +cdef CUresult cuLogicalEndpointDestroy(CUlogicalEndpointId leId) except ?CUDA_ERROR_NOT_FOUND nogil: |
| 2030 | + return _driver._cuLogicalEndpointDestroy(leId) |
| 2031 | + |
| 2032 | + |
| 2033 | +cdef CUresult cuLogicalEndpointBindAddr(CUlogicalEndpointId leId, CUdevice dev, cuuint64_t offset, void* ptr, cuuint64_t size, unsigned long long flags) except ?CUDA_ERROR_NOT_FOUND nogil: |
| 2034 | + return _driver._cuLogicalEndpointBindAddr(leId, dev, offset, ptr, size, flags) |
| 2035 | + |
| 2036 | + |
| 2037 | +cdef CUresult cuLogicalEndpointBindMem(CUlogicalEndpointId leId, CUdevice dev, cuuint64_t offset, CUmemGenericAllocationHandle memHandle, cuuint64_t memOffset, cuuint64_t size, unsigned long long flags) except ?CUDA_ERROR_NOT_FOUND nogil: |
| 2038 | + return _driver._cuLogicalEndpointBindMem(leId, dev, offset, memHandle, memOffset, size, flags) |
| 2039 | + |
| 2040 | + |
| 2041 | +cdef CUresult cuLogicalEndpointUnbind(CUlogicalEndpointId leId, CUdevice dev, cuuint64_t offset, cuuint64_t size) except ?CUDA_ERROR_NOT_FOUND nogil: |
| 2042 | + return _driver._cuLogicalEndpointUnbind(leId, dev, offset, size) |
| 2043 | + |
| 2044 | + |
| 2045 | +cdef CUresult cuLogicalEndpointExport(void* handle, CUlogicalEndpointId leId, CUlogicalEndpointIpcHandleType handleType) except ?CUDA_ERROR_NOT_FOUND nogil: |
| 2046 | + return _driver._cuLogicalEndpointExport(handle, leId, handleType) |
| 2047 | + |
| 2048 | + |
| 2049 | +cdef CUresult cuLogicalEndpointImport(CUlogicalEndpointId leId, const void* handle, CUlogicalEndpointIpcHandleType handleType) except ?CUDA_ERROR_NOT_FOUND nogil: |
| 2050 | + return _driver._cuLogicalEndpointImport(leId, handle, handleType) |
| 2051 | + |
| 2052 | + |
| 2053 | +cdef CUresult cuLogicalEndpointGetLimits(cuuint64_t* bindAlignment, cuuint64_t* maxSize, const CUlogicalEndpointProp* prop) except ?CUDA_ERROR_NOT_FOUND nogil: |
| 2054 | + return _driver._cuLogicalEndpointGetLimits(bindAlignment, maxSize, prop) |
| 2055 | + |
| 2056 | + |
| 2057 | +cdef CUresult cuLogicalEndpointQuery(CUlogicalEndpointId leId, cuuint32_t count, int* queryStatus) except ?CUDA_ERROR_NOT_FOUND nogil: |
| 2058 | + return _driver._cuLogicalEndpointQuery(leId, count, queryStatus) |
| 2059 | + |
| 2060 | + |
| 2061 | +cdef CUresult cuStreamBeginRecaptureToGraph(CUstream hStream, CUstreamCaptureMode mode, CUgraph hGraph, CUgraphRecaptureCallback callbackFunc, void* userData) except ?CUDA_ERROR_NOT_FOUND nogil: |
| 2062 | + return _driver._cuStreamBeginRecaptureToGraph(hStream, mode, hGraph, callbackFunc, userData) |
0 commit comments