|
1 | 1 | # SPDX-FileCopyrightText: Copyright (c) 2021-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. |
2 | 2 | # SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE |
3 | 3 |
|
4 | | -# This code was automatically generated with version 13.1.0, generator version 49a8141. Do not modify it directly. |
| 4 | +# This code was automatically generated with version 13.2.0, generator version fa58871. Do not modify it directly. |
5 | 5 | from cuda.bindings.cydriver cimport * |
6 | 6 |
|
7 | 7 | {{if 'cuGetErrorString' in found_functions}} |
@@ -439,6 +439,11 @@ cdef CUresult _cuKernelGetName(const char** name, CUkernel hfunc) except ?CUDA_E |
439 | 439 | cdef CUresult _cuKernelGetParamInfo(CUkernel kernel, size_t paramIndex, size_t* paramOffset, size_t* paramSize) except ?CUDA_ERROR_NOT_FOUND nogil |
440 | 440 | {{endif}} |
441 | 441 |
|
| 442 | +{{if 'cuKernelGetParamCount' in found_functions}} |
| 443 | + |
| 444 | +cdef CUresult _cuKernelGetParamCount(CUkernel kernel, size_t* paramCount) except ?CUDA_ERROR_NOT_FOUND nogil |
| 445 | +{{endif}} |
| 446 | + |
442 | 447 | {{if 'cuMemGetInfo_v2' in found_functions}} |
443 | 448 |
|
444 | 449 | cdef CUresult _cuMemGetInfo_v2(size_t* free, size_t* total) except ?CUDA_ERROR_NOT_FOUND nogil |
@@ -679,6 +684,16 @@ cdef CUresult _cuMemcpyBatchAsync_v2(CUdeviceptr* dsts, CUdeviceptr* srcs, size_ |
679 | 684 | cdef CUresult _cuMemcpy3DBatchAsync_v2(size_t numOps, CUDA_MEMCPY3D_BATCH_OP* opList, unsigned long long flags, CUstream hStream) except ?CUDA_ERROR_NOT_FOUND nogil |
680 | 685 | {{endif}} |
681 | 686 |
|
| 687 | +{{if 'cuMemcpyWithAttributesAsync' in found_functions}} |
| 688 | + |
| 689 | +cdef CUresult _cuMemcpyWithAttributesAsync(CUdeviceptr dst, CUdeviceptr src, size_t size, CUmemcpyAttributes* attr, CUstream hStream) except ?CUDA_ERROR_NOT_FOUND nogil |
| 690 | +{{endif}} |
| 691 | + |
| 692 | +{{if 'cuMemcpy3DWithAttributesAsync' in found_functions}} |
| 693 | + |
| 694 | +cdef CUresult _cuMemcpy3DWithAttributesAsync(CUDA_MEMCPY3D_BATCH_OP* op, unsigned long long flags, CUstream hStream) except ?CUDA_ERROR_NOT_FOUND nogil |
| 695 | +{{endif}} |
| 696 | + |
682 | 697 | {{if 'cuMemsetD8_v2' in found_functions}} |
683 | 698 |
|
684 | 699 | cdef CUresult _cuMemsetD8_v2(CUdeviceptr dstDevice, unsigned char uc, size_t N) except ?CUDA_ERROR_NOT_FOUND nogil |
@@ -1069,6 +1084,16 @@ cdef CUresult _cuStreamCreate(CUstream* phStream, unsigned int Flags) except ?CU |
1069 | 1084 | cdef CUresult _cuStreamCreateWithPriority(CUstream* phStream, unsigned int flags, int priority) except ?CUDA_ERROR_NOT_FOUND nogil |
1070 | 1085 | {{endif}} |
1071 | 1086 |
|
| 1087 | +{{if 'cuStreamBeginCaptureToCig' in found_functions}} |
| 1088 | + |
| 1089 | +cdef CUresult _cuStreamBeginCaptureToCig(CUstream hStream, CUstreamCigCaptureParams* streamCigCaptureParams) except ?CUDA_ERROR_NOT_FOUND nogil |
| 1090 | +{{endif}} |
| 1091 | + |
| 1092 | +{{if 'cuStreamEndCaptureToCig' in found_functions}} |
| 1093 | + |
| 1094 | +cdef CUresult _cuStreamEndCaptureToCig(CUstream hStream) except ?CUDA_ERROR_NOT_FOUND nogil |
| 1095 | +{{endif}} |
| 1096 | + |
1072 | 1097 | {{if 'cuStreamGetPriority' in found_functions}} |
1073 | 1098 |
|
1074 | 1099 | cdef CUresult _cuStreamGetPriority(CUstream hStream, int* priority) except ?CUDA_ERROR_NOT_FOUND nogil |
@@ -1309,6 +1334,11 @@ cdef CUresult _cuFuncGetName(const char** name, CUfunction hfunc) except ?CUDA_E |
1309 | 1334 | cdef CUresult _cuFuncGetParamInfo(CUfunction func, size_t paramIndex, size_t* paramOffset, size_t* paramSize) except ?CUDA_ERROR_NOT_FOUND nogil |
1310 | 1335 | {{endif}} |
1311 | 1336 |
|
| 1337 | +{{if 'cuFuncGetParamCount' in found_functions}} |
| 1338 | + |
| 1339 | +cdef CUresult _cuFuncGetParamCount(CUfunction func, size_t* paramCount) except ?CUDA_ERROR_NOT_FOUND nogil |
| 1340 | +{{endif}} |
| 1341 | + |
1312 | 1342 | {{if 'cuFuncIsLoaded' in found_functions}} |
1313 | 1343 |
|
1314 | 1344 | cdef CUresult _cuFuncIsLoaded(CUfunctionLoadingState* state, CUfunction function) except ?CUDA_ERROR_NOT_FOUND nogil |
@@ -1344,6 +1374,11 @@ cdef CUresult _cuLaunchCooperativeKernelMultiDevice(CUDA_LAUNCH_PARAMS* launchPa |
1344 | 1374 | cdef CUresult _cuLaunchHostFunc(CUstream hStream, CUhostFn fn, void* userData) except ?CUDA_ERROR_NOT_FOUND nogil |
1345 | 1375 | {{endif}} |
1346 | 1376 |
|
| 1377 | +{{if 'cuLaunchHostFunc_v2' in found_functions}} |
| 1378 | + |
| 1379 | +cdef CUresult _cuLaunchHostFunc_v2(CUstream hStream, CUhostFn fn, void* userData, unsigned int syncMode) except ?CUDA_ERROR_NOT_FOUND nogil |
| 1380 | +{{endif}} |
| 1381 | + |
1347 | 1382 | {{if 'cuFuncSetBlockShape' in found_functions}} |
1348 | 1383 |
|
1349 | 1384 | cdef CUresult _cuFuncSetBlockShape(CUfunction hfunc, int x, int y, int z) except ?CUDA_ERROR_NOT_FOUND nogil |
@@ -1824,6 +1859,11 @@ cdef CUresult _cuGraphAddNode_v2(CUgraphNode* phGraphNode, CUgraph hGraph, const |
1824 | 1859 | cdef CUresult _cuGraphNodeSetParams(CUgraphNode hNode, CUgraphNodeParams* nodeParams) except ?CUDA_ERROR_NOT_FOUND nogil |
1825 | 1860 | {{endif}} |
1826 | 1861 |
|
| 1862 | +{{if 'cuGraphNodeGetParams' in found_functions}} |
| 1863 | + |
| 1864 | +cdef CUresult _cuGraphNodeGetParams(CUgraphNode hNode, CUgraphNodeParams* nodeParams) except ?CUDA_ERROR_NOT_FOUND nogil |
| 1865 | +{{endif}} |
| 1866 | + |
1827 | 1867 | {{if 'cuGraphExecNodeSetParams' in found_functions}} |
1828 | 1868 |
|
1829 | 1869 | cdef CUresult _cuGraphExecNodeSetParams(CUgraphExec hGraphExec, CUgraphNode hNode, CUgraphNodeParams* nodeParams) except ?CUDA_ERROR_NOT_FOUND nogil |
@@ -2159,6 +2199,26 @@ cdef CUresult _cuCoredumpSetAttribute(CUcoredumpSettings attrib, void* value, si |
2159 | 2199 | cdef CUresult _cuCoredumpSetAttributeGlobal(CUcoredumpSettings attrib, void* value, size_t* size) except ?CUDA_ERROR_NOT_FOUND nogil |
2160 | 2200 | {{endif}} |
2161 | 2201 |
|
| 2202 | +{{if 'cuCoredumpRegisterStartCallback' in found_functions}} |
| 2203 | + |
| 2204 | +cdef CUresult _cuCoredumpRegisterStartCallback(CUcoredumpStatusCallback callback, void* userData, CUcoredumpCallbackHandle* callbackOut) except ?CUDA_ERROR_NOT_FOUND nogil |
| 2205 | +{{endif}} |
| 2206 | + |
| 2207 | +{{if 'cuCoredumpRegisterCompleteCallback' in found_functions}} |
| 2208 | + |
| 2209 | +cdef CUresult _cuCoredumpRegisterCompleteCallback(CUcoredumpStatusCallback callback, void* userData, CUcoredumpCallbackHandle* callbackOut) except ?CUDA_ERROR_NOT_FOUND nogil |
| 2210 | +{{endif}} |
| 2211 | + |
| 2212 | +{{if 'cuCoredumpDeregisterStartCallback' in found_functions}} |
| 2213 | + |
| 2214 | +cdef CUresult _cuCoredumpDeregisterStartCallback(CUcoredumpCallbackHandle callback) except ?CUDA_ERROR_NOT_FOUND nogil |
| 2215 | +{{endif}} |
| 2216 | + |
| 2217 | +{{if 'cuCoredumpDeregisterCompleteCallback' in found_functions}} |
| 2218 | + |
| 2219 | +cdef CUresult _cuCoredumpDeregisterCompleteCallback(CUcoredumpCallbackHandle callback) except ?CUDA_ERROR_NOT_FOUND nogil |
| 2220 | +{{endif}} |
| 2221 | + |
2162 | 2222 | {{if 'cuGetExportTable' in found_functions}} |
2163 | 2223 |
|
2164 | 2224 | cdef CUresult _cuGetExportTable(const void** ppExportTable, const CUuuid* pExportTableId) except ?CUDA_ERROR_NOT_FOUND nogil |
|
0 commit comments