File size: 104,497 Bytes
76f9669 | 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 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 | # SPDX-FileCopyrightText: Copyright (c) 2021-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
# This code was automatically generated with version 12.9.0. Do not modify it directly.
include "../cyruntime_functions.pxi"
import os
cimport cuda.bindings._bindings.cyruntime_ptds as ptds
cimport cython
cdef bint __cudaPythonInit = False
cdef bint __usePTDS = False
cdef int _cudaPythonInit() except -1 nogil:
global __cudaPythonInit
global __usePTDS
with gil:
__usePTDS = os.getenv('CUDA_PYTHON_CUDA_PER_THREAD_DEFAULT_STREAM', default=False)
__cudaPythonInit = True
return __usePTDS
# Create a very small function to check whether we are init'ed, so the C
# compiler can inline it.
cdef inline int cudaPythonInit() except -1 nogil:
if __cudaPythonInit:
return __usePTDS
return _cudaPythonInit()
cdef cudaError_t _cudaDeviceReset() except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceReset()
return cudaDeviceReset()
cdef cudaError_t _cudaDeviceSynchronize() except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceSynchronize()
return cudaDeviceSynchronize()
cdef cudaError_t _cudaDeviceSetLimit(cudaLimit limit, size_t value) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceSetLimit(limit, value)
return cudaDeviceSetLimit(limit, value)
cdef cudaError_t _cudaDeviceGetLimit(size_t* pValue, cudaLimit limit) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceGetLimit(pValue, limit)
return cudaDeviceGetLimit(pValue, limit)
cdef cudaError_t _cudaDeviceGetTexture1DLinearMaxWidth(size_t* maxWidthInElements, const cudaChannelFormatDesc* fmtDesc, int device) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceGetTexture1DLinearMaxWidth(maxWidthInElements, fmtDesc, device)
return cudaDeviceGetTexture1DLinearMaxWidth(maxWidthInElements, fmtDesc, device)
cdef cudaError_t _cudaDeviceGetCacheConfig(cudaFuncCache* pCacheConfig) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceGetCacheConfig(pCacheConfig)
return cudaDeviceGetCacheConfig(pCacheConfig)
cdef cudaError_t _cudaDeviceGetStreamPriorityRange(int* leastPriority, int* greatestPriority) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceGetStreamPriorityRange(leastPriority, greatestPriority)
return cudaDeviceGetStreamPriorityRange(leastPriority, greatestPriority)
cdef cudaError_t _cudaDeviceSetCacheConfig(cudaFuncCache cacheConfig) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceSetCacheConfig(cacheConfig)
return cudaDeviceSetCacheConfig(cacheConfig)
cdef cudaError_t _cudaDeviceGetByPCIBusId(int* device, const char* pciBusId) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceGetByPCIBusId(device, pciBusId)
return cudaDeviceGetByPCIBusId(device, pciBusId)
cdef cudaError_t _cudaDeviceGetPCIBusId(char* pciBusId, int length, int device) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceGetPCIBusId(pciBusId, length, device)
return cudaDeviceGetPCIBusId(pciBusId, length, device)
cdef cudaError_t _cudaIpcGetEventHandle(cudaIpcEventHandle_t* handle, cudaEvent_t event) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaIpcGetEventHandle(handle, event)
return cudaIpcGetEventHandle(handle, event)
cdef cudaError_t _cudaIpcOpenEventHandle(cudaEvent_t* event, cudaIpcEventHandle_t handle) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaIpcOpenEventHandle(event, handle)
return cudaIpcOpenEventHandle(event, handle)
cdef cudaError_t _cudaIpcGetMemHandle(cudaIpcMemHandle_t* handle, void* devPtr) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaIpcGetMemHandle(handle, devPtr)
return cudaIpcGetMemHandle(handle, devPtr)
cdef cudaError_t _cudaIpcOpenMemHandle(void** devPtr, cudaIpcMemHandle_t handle, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaIpcOpenMemHandle(devPtr, handle, flags)
return cudaIpcOpenMemHandle(devPtr, handle, flags)
cdef cudaError_t _cudaIpcCloseMemHandle(void* devPtr) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaIpcCloseMemHandle(devPtr)
return cudaIpcCloseMemHandle(devPtr)
cdef cudaError_t _cudaDeviceFlushGPUDirectRDMAWrites(cudaFlushGPUDirectRDMAWritesTarget target, cudaFlushGPUDirectRDMAWritesScope scope) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceFlushGPUDirectRDMAWrites(target, scope)
return cudaDeviceFlushGPUDirectRDMAWrites(target, scope)
cdef cudaError_t _cudaDeviceRegisterAsyncNotification(int device, cudaAsyncCallback callbackFunc, void* userData, cudaAsyncCallbackHandle_t* callback) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceRegisterAsyncNotification(device, callbackFunc, userData, callback)
return cudaDeviceRegisterAsyncNotification(device, callbackFunc, userData, callback)
cdef cudaError_t _cudaDeviceUnregisterAsyncNotification(int device, cudaAsyncCallbackHandle_t callback) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceUnregisterAsyncNotification(device, callback)
return cudaDeviceUnregisterAsyncNotification(device, callback)
cdef cudaError_t _cudaDeviceGetSharedMemConfig(cudaSharedMemConfig* pConfig) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceGetSharedMemConfig(pConfig)
return cudaDeviceGetSharedMemConfig(pConfig)
cdef cudaError_t _cudaDeviceSetSharedMemConfig(cudaSharedMemConfig config) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceSetSharedMemConfig(config)
return cudaDeviceSetSharedMemConfig(config)
cdef cudaError_t _cudaGetLastError() except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGetLastError()
return cudaGetLastError()
cdef cudaError_t _cudaPeekAtLastError() except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaPeekAtLastError()
return cudaPeekAtLastError()
cdef const char* _cudaGetErrorName(cudaError_t error) except ?NULL nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGetErrorName(error)
return cudaGetErrorName(error)
cdef const char* _cudaGetErrorString(cudaError_t error) except ?NULL nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGetErrorString(error)
return cudaGetErrorString(error)
cdef cudaError_t _cudaGetDeviceCount(int* count) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGetDeviceCount(count)
return cudaGetDeviceCount(count)
cdef cudaError_t _cudaGetDeviceProperties_v2(cudaDeviceProp* prop, int device) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGetDeviceProperties_v2(prop, device)
return cudaGetDeviceProperties_v2(prop, device)
cdef cudaError_t _cudaDeviceGetAttribute(int* value, cudaDeviceAttr attr, int device) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceGetAttribute(value, attr, device)
return cudaDeviceGetAttribute(value, attr, device)
cdef cudaError_t _cudaDeviceGetDefaultMemPool(cudaMemPool_t* memPool, int device) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceGetDefaultMemPool(memPool, device)
return cudaDeviceGetDefaultMemPool(memPool, device)
cdef cudaError_t _cudaDeviceSetMemPool(int device, cudaMemPool_t memPool) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceSetMemPool(device, memPool)
return cudaDeviceSetMemPool(device, memPool)
cdef cudaError_t _cudaDeviceGetMemPool(cudaMemPool_t* memPool, int device) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceGetMemPool(memPool, device)
return cudaDeviceGetMemPool(memPool, device)
cdef cudaError_t _cudaDeviceGetNvSciSyncAttributes(void* nvSciSyncAttrList, int device, int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceGetNvSciSyncAttributes(nvSciSyncAttrList, device, flags)
return cudaDeviceGetNvSciSyncAttributes(nvSciSyncAttrList, device, flags)
cdef cudaError_t _cudaDeviceGetP2PAttribute(int* value, cudaDeviceP2PAttr attr, int srcDevice, int dstDevice) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceGetP2PAttribute(value, attr, srcDevice, dstDevice)
return cudaDeviceGetP2PAttribute(value, attr, srcDevice, dstDevice)
cdef cudaError_t _cudaChooseDevice(int* device, const cudaDeviceProp* prop) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaChooseDevice(device, prop)
return cudaChooseDevice(device, prop)
cdef cudaError_t _cudaInitDevice(int device, unsigned int deviceFlags, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaInitDevice(device, deviceFlags, flags)
return cudaInitDevice(device, deviceFlags, flags)
cdef cudaError_t _cudaSetDevice(int device) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaSetDevice(device)
return cudaSetDevice(device)
cdef cudaError_t _cudaGetDevice(int* device) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGetDevice(device)
return cudaGetDevice(device)
cdef cudaError_t _cudaSetDeviceFlags(unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaSetDeviceFlags(flags)
return cudaSetDeviceFlags(flags)
cdef cudaError_t _cudaGetDeviceFlags(unsigned int* flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGetDeviceFlags(flags)
return cudaGetDeviceFlags(flags)
cdef cudaError_t _cudaStreamCreate(cudaStream_t* pStream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamCreate(pStream)
return cudaStreamCreate(pStream)
cdef cudaError_t _cudaStreamCreateWithFlags(cudaStream_t* pStream, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamCreateWithFlags(pStream, flags)
return cudaStreamCreateWithFlags(pStream, flags)
cdef cudaError_t _cudaStreamCreateWithPriority(cudaStream_t* pStream, unsigned int flags, int priority) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamCreateWithPriority(pStream, flags, priority)
return cudaStreamCreateWithPriority(pStream, flags, priority)
cdef cudaError_t _cudaStreamGetPriority(cudaStream_t hStream, int* priority) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamGetPriority(hStream, priority)
return cudaStreamGetPriority(hStream, priority)
cdef cudaError_t _cudaStreamGetFlags(cudaStream_t hStream, unsigned int* flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamGetFlags(hStream, flags)
return cudaStreamGetFlags(hStream, flags)
cdef cudaError_t _cudaStreamGetId(cudaStream_t hStream, unsigned long long* streamId) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamGetId(hStream, streamId)
return cudaStreamGetId(hStream, streamId)
cdef cudaError_t _cudaStreamGetDevice(cudaStream_t hStream, int* device) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamGetDevice(hStream, device)
return cudaStreamGetDevice(hStream, device)
cdef cudaError_t _cudaCtxResetPersistingL2Cache() except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaCtxResetPersistingL2Cache()
return cudaCtxResetPersistingL2Cache()
cdef cudaError_t _cudaStreamCopyAttributes(cudaStream_t dst, cudaStream_t src) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamCopyAttributes(dst, src)
return cudaStreamCopyAttributes(dst, src)
cdef cudaError_t _cudaStreamGetAttribute(cudaStream_t hStream, cudaStreamAttrID attr, cudaStreamAttrValue* value_out) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamGetAttribute(hStream, attr, value_out)
return cudaStreamGetAttribute(hStream, attr, value_out)
cdef cudaError_t _cudaStreamSetAttribute(cudaStream_t hStream, cudaStreamAttrID attr, const cudaStreamAttrValue* value) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamSetAttribute(hStream, attr, value)
return cudaStreamSetAttribute(hStream, attr, value)
cdef cudaError_t _cudaStreamDestroy(cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamDestroy(stream)
return cudaStreamDestroy(stream)
cdef cudaError_t _cudaStreamWaitEvent(cudaStream_t stream, cudaEvent_t event, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamWaitEvent(stream, event, flags)
return cudaStreamWaitEvent(stream, event, flags)
cdef cudaError_t _cudaStreamAddCallback(cudaStream_t stream, cudaStreamCallback_t callback, void* userData, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamAddCallback(stream, callback, userData, flags)
return cudaStreamAddCallback(stream, callback, userData, flags)
cdef cudaError_t _cudaStreamSynchronize(cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamSynchronize(stream)
return cudaStreamSynchronize(stream)
cdef cudaError_t _cudaStreamQuery(cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamQuery(stream)
return cudaStreamQuery(stream)
cdef cudaError_t _cudaStreamAttachMemAsync(cudaStream_t stream, void* devPtr, size_t length, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamAttachMemAsync(stream, devPtr, length, flags)
return cudaStreamAttachMemAsync(stream, devPtr, length, flags)
cdef cudaError_t _cudaStreamBeginCapture(cudaStream_t stream, cudaStreamCaptureMode mode) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamBeginCapture(stream, mode)
return cudaStreamBeginCapture(stream, mode)
cdef cudaError_t _cudaStreamBeginCaptureToGraph(cudaStream_t stream, cudaGraph_t graph, const cudaGraphNode_t* dependencies, const cudaGraphEdgeData* dependencyData, size_t numDependencies, cudaStreamCaptureMode mode) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamBeginCaptureToGraph(stream, graph, dependencies, dependencyData, numDependencies, mode)
return cudaStreamBeginCaptureToGraph(stream, graph, dependencies, dependencyData, numDependencies, mode)
cdef cudaError_t _cudaThreadExchangeStreamCaptureMode(cudaStreamCaptureMode* mode) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaThreadExchangeStreamCaptureMode(mode)
return cudaThreadExchangeStreamCaptureMode(mode)
cdef cudaError_t _cudaStreamEndCapture(cudaStream_t stream, cudaGraph_t* pGraph) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamEndCapture(stream, pGraph)
return cudaStreamEndCapture(stream, pGraph)
cdef cudaError_t _cudaStreamIsCapturing(cudaStream_t stream, cudaStreamCaptureStatus* pCaptureStatus) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamIsCapturing(stream, pCaptureStatus)
return cudaStreamIsCapturing(stream, pCaptureStatus)
cdef cudaError_t _cudaStreamGetCaptureInfo_v2(cudaStream_t stream, cudaStreamCaptureStatus* captureStatus_out, unsigned long long* id_out, cudaGraph_t* graph_out, const cudaGraphNode_t** dependencies_out, size_t* numDependencies_out) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamGetCaptureInfo_v2(stream, captureStatus_out, id_out, graph_out, dependencies_out, numDependencies_out)
return cudaStreamGetCaptureInfo_v2(stream, captureStatus_out, id_out, graph_out, dependencies_out, numDependencies_out)
cdef cudaError_t _cudaStreamGetCaptureInfo_v3(cudaStream_t stream, cudaStreamCaptureStatus* captureStatus_out, unsigned long long* id_out, cudaGraph_t* graph_out, const cudaGraphNode_t** dependencies_out, const cudaGraphEdgeData** edgeData_out, size_t* numDependencies_out) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamGetCaptureInfo_v3(stream, captureStatus_out, id_out, graph_out, dependencies_out, edgeData_out, numDependencies_out)
return cudaStreamGetCaptureInfo_v3(stream, captureStatus_out, id_out, graph_out, dependencies_out, edgeData_out, numDependencies_out)
cdef cudaError_t _cudaStreamUpdateCaptureDependencies(cudaStream_t stream, cudaGraphNode_t* dependencies, size_t numDependencies, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamUpdateCaptureDependencies(stream, dependencies, numDependencies, flags)
return cudaStreamUpdateCaptureDependencies(stream, dependencies, numDependencies, flags)
cdef cudaError_t _cudaStreamUpdateCaptureDependencies_v2(cudaStream_t stream, cudaGraphNode_t* dependencies, const cudaGraphEdgeData* dependencyData, size_t numDependencies, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaStreamUpdateCaptureDependencies_v2(stream, dependencies, dependencyData, numDependencies, flags)
return cudaStreamUpdateCaptureDependencies_v2(stream, dependencies, dependencyData, numDependencies, flags)
cdef cudaError_t _cudaEventCreate(cudaEvent_t* event) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaEventCreate(event)
return cudaEventCreate(event)
cdef cudaError_t _cudaEventCreateWithFlags(cudaEvent_t* event, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaEventCreateWithFlags(event, flags)
return cudaEventCreateWithFlags(event, flags)
cdef cudaError_t _cudaEventRecord(cudaEvent_t event, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaEventRecord(event, stream)
return cudaEventRecord(event, stream)
cdef cudaError_t _cudaEventRecordWithFlags(cudaEvent_t event, cudaStream_t stream, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaEventRecordWithFlags(event, stream, flags)
return cudaEventRecordWithFlags(event, stream, flags)
cdef cudaError_t _cudaEventQuery(cudaEvent_t event) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaEventQuery(event)
return cudaEventQuery(event)
cdef cudaError_t _cudaEventSynchronize(cudaEvent_t event) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaEventSynchronize(event)
return cudaEventSynchronize(event)
cdef cudaError_t _cudaEventDestroy(cudaEvent_t event) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaEventDestroy(event)
return cudaEventDestroy(event)
cdef cudaError_t _cudaEventElapsedTime(float* ms, cudaEvent_t start, cudaEvent_t end) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaEventElapsedTime(ms, start, end)
return cudaEventElapsedTime(ms, start, end)
cdef cudaError_t _cudaEventElapsedTime_v2(float* ms, cudaEvent_t start, cudaEvent_t end) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaEventElapsedTime_v2(ms, start, end)
return cudaEventElapsedTime_v2(ms, start, end)
cdef cudaError_t _cudaImportExternalMemory(cudaExternalMemory_t* extMem_out, const cudaExternalMemoryHandleDesc* memHandleDesc) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaImportExternalMemory(extMem_out, memHandleDesc)
return cudaImportExternalMemory(extMem_out, memHandleDesc)
cdef cudaError_t _cudaExternalMemoryGetMappedBuffer(void** devPtr, cudaExternalMemory_t extMem, const cudaExternalMemoryBufferDesc* bufferDesc) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaExternalMemoryGetMappedBuffer(devPtr, extMem, bufferDesc)
return cudaExternalMemoryGetMappedBuffer(devPtr, extMem, bufferDesc)
cdef cudaError_t _cudaExternalMemoryGetMappedMipmappedArray(cudaMipmappedArray_t* mipmap, cudaExternalMemory_t extMem, const cudaExternalMemoryMipmappedArrayDesc* mipmapDesc) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaExternalMemoryGetMappedMipmappedArray(mipmap, extMem, mipmapDesc)
return cudaExternalMemoryGetMappedMipmappedArray(mipmap, extMem, mipmapDesc)
cdef cudaError_t _cudaDestroyExternalMemory(cudaExternalMemory_t extMem) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDestroyExternalMemory(extMem)
return cudaDestroyExternalMemory(extMem)
cdef cudaError_t _cudaImportExternalSemaphore(cudaExternalSemaphore_t* extSem_out, const cudaExternalSemaphoreHandleDesc* semHandleDesc) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaImportExternalSemaphore(extSem_out, semHandleDesc)
return cudaImportExternalSemaphore(extSem_out, semHandleDesc)
cdef cudaError_t _cudaSignalExternalSemaphoresAsync_v2(const cudaExternalSemaphore_t* extSemArray, const cudaExternalSemaphoreSignalParams* paramsArray, unsigned int numExtSems, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaSignalExternalSemaphoresAsync_v2(extSemArray, paramsArray, numExtSems, stream)
return cudaSignalExternalSemaphoresAsync_v2(extSemArray, paramsArray, numExtSems, stream)
cdef cudaError_t _cudaWaitExternalSemaphoresAsync_v2(const cudaExternalSemaphore_t* extSemArray, const cudaExternalSemaphoreWaitParams* paramsArray, unsigned int numExtSems, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaWaitExternalSemaphoresAsync_v2(extSemArray, paramsArray, numExtSems, stream)
return cudaWaitExternalSemaphoresAsync_v2(extSemArray, paramsArray, numExtSems, stream)
cdef cudaError_t _cudaDestroyExternalSemaphore(cudaExternalSemaphore_t extSem) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDestroyExternalSemaphore(extSem)
return cudaDestroyExternalSemaphore(extSem)
cdef cudaError_t _cudaFuncSetCacheConfig(const void* func, cudaFuncCache cacheConfig) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaFuncSetCacheConfig(func, cacheConfig)
return cudaFuncSetCacheConfig(func, cacheConfig)
cdef cudaError_t _cudaFuncGetAttributes(cudaFuncAttributes* attr, const void* func) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaFuncGetAttributes(attr, func)
return cudaFuncGetAttributes(attr, func)
cdef cudaError_t _cudaFuncSetAttribute(const void* func, cudaFuncAttribute attr, int value) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaFuncSetAttribute(func, attr, value)
return cudaFuncSetAttribute(func, attr, value)
cdef cudaError_t _cudaLaunchHostFunc(cudaStream_t stream, cudaHostFn_t fn, void* userData) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaLaunchHostFunc(stream, fn, userData)
return cudaLaunchHostFunc(stream, fn, userData)
cdef cudaError_t _cudaFuncSetSharedMemConfig(const void* func, cudaSharedMemConfig config) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaFuncSetSharedMemConfig(func, config)
return cudaFuncSetSharedMemConfig(func, config)
cdef cudaError_t _cudaOccupancyMaxActiveBlocksPerMultiprocessor(int* numBlocks, const void* func, int blockSize, size_t dynamicSMemSize) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaOccupancyMaxActiveBlocksPerMultiprocessor(numBlocks, func, blockSize, dynamicSMemSize)
return cudaOccupancyMaxActiveBlocksPerMultiprocessor(numBlocks, func, blockSize, dynamicSMemSize)
cdef cudaError_t _cudaOccupancyAvailableDynamicSMemPerBlock(size_t* dynamicSmemSize, const void* func, int numBlocks, int blockSize) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaOccupancyAvailableDynamicSMemPerBlock(dynamicSmemSize, func, numBlocks, blockSize)
return cudaOccupancyAvailableDynamicSMemPerBlock(dynamicSmemSize, func, numBlocks, blockSize)
cdef cudaError_t _cudaOccupancyMaxActiveBlocksPerMultiprocessorWithFlags(int* numBlocks, const void* func, int blockSize, size_t dynamicSMemSize, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaOccupancyMaxActiveBlocksPerMultiprocessorWithFlags(numBlocks, func, blockSize, dynamicSMemSize, flags)
return cudaOccupancyMaxActiveBlocksPerMultiprocessorWithFlags(numBlocks, func, blockSize, dynamicSMemSize, flags)
cdef cudaError_t _cudaMallocManaged(void** devPtr, size_t size, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMallocManaged(devPtr, size, flags)
return cudaMallocManaged(devPtr, size, flags)
cdef cudaError_t _cudaMalloc(void** devPtr, size_t size) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMalloc(devPtr, size)
return cudaMalloc(devPtr, size)
cdef cudaError_t _cudaMallocHost(void** ptr, size_t size) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMallocHost(ptr, size)
return cudaMallocHost(ptr, size)
cdef cudaError_t _cudaMallocPitch(void** devPtr, size_t* pitch, size_t width, size_t height) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMallocPitch(devPtr, pitch, width, height)
return cudaMallocPitch(devPtr, pitch, width, height)
cdef cudaError_t _cudaMallocArray(cudaArray_t* array, const cudaChannelFormatDesc* desc, size_t width, size_t height, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMallocArray(array, desc, width, height, flags)
return cudaMallocArray(array, desc, width, height, flags)
cdef cudaError_t _cudaFree(void* devPtr) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaFree(devPtr)
return cudaFree(devPtr)
cdef cudaError_t _cudaFreeHost(void* ptr) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaFreeHost(ptr)
return cudaFreeHost(ptr)
cdef cudaError_t _cudaFreeArray(cudaArray_t array) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaFreeArray(array)
return cudaFreeArray(array)
cdef cudaError_t _cudaFreeMipmappedArray(cudaMipmappedArray_t mipmappedArray) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaFreeMipmappedArray(mipmappedArray)
return cudaFreeMipmappedArray(mipmappedArray)
cdef cudaError_t _cudaHostAlloc(void** pHost, size_t size, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaHostAlloc(pHost, size, flags)
return cudaHostAlloc(pHost, size, flags)
cdef cudaError_t _cudaHostRegister(void* ptr, size_t size, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaHostRegister(ptr, size, flags)
return cudaHostRegister(ptr, size, flags)
cdef cudaError_t _cudaHostUnregister(void* ptr) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaHostUnregister(ptr)
return cudaHostUnregister(ptr)
cdef cudaError_t _cudaHostGetDevicePointer(void** pDevice, void* pHost, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaHostGetDevicePointer(pDevice, pHost, flags)
return cudaHostGetDevicePointer(pDevice, pHost, flags)
cdef cudaError_t _cudaHostGetFlags(unsigned int* pFlags, void* pHost) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaHostGetFlags(pFlags, pHost)
return cudaHostGetFlags(pFlags, pHost)
cdef cudaError_t _cudaMalloc3D(cudaPitchedPtr* pitchedDevPtr, cudaExtent extent) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMalloc3D(pitchedDevPtr, extent)
return cudaMalloc3D(pitchedDevPtr, extent)
cdef cudaError_t _cudaMalloc3DArray(cudaArray_t* array, const cudaChannelFormatDesc* desc, cudaExtent extent, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMalloc3DArray(array, desc, extent, flags)
return cudaMalloc3DArray(array, desc, extent, flags)
cdef cudaError_t _cudaMallocMipmappedArray(cudaMipmappedArray_t* mipmappedArray, const cudaChannelFormatDesc* desc, cudaExtent extent, unsigned int numLevels, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMallocMipmappedArray(mipmappedArray, desc, extent, numLevels, flags)
return cudaMallocMipmappedArray(mipmappedArray, desc, extent, numLevels, flags)
cdef cudaError_t _cudaGetMipmappedArrayLevel(cudaArray_t* levelArray, cudaMipmappedArray_const_t mipmappedArray, unsigned int level) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGetMipmappedArrayLevel(levelArray, mipmappedArray, level)
return cudaGetMipmappedArrayLevel(levelArray, mipmappedArray, level)
cdef cudaError_t _cudaMemcpy3D(const cudaMemcpy3DParms* p) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpy3D(p)
return cudaMemcpy3D(p)
cdef cudaError_t _cudaMemcpy3DPeer(const cudaMemcpy3DPeerParms* p) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpy3DPeer(p)
return cudaMemcpy3DPeer(p)
cdef cudaError_t _cudaMemcpy3DAsync(const cudaMemcpy3DParms* p, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpy3DAsync(p, stream)
return cudaMemcpy3DAsync(p, stream)
cdef cudaError_t _cudaMemcpy3DPeerAsync(const cudaMemcpy3DPeerParms* p, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpy3DPeerAsync(p, stream)
return cudaMemcpy3DPeerAsync(p, stream)
cdef cudaError_t _cudaMemGetInfo(size_t* free, size_t* total) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemGetInfo(free, total)
return cudaMemGetInfo(free, total)
cdef cudaError_t _cudaArrayGetInfo(cudaChannelFormatDesc* desc, cudaExtent* extent, unsigned int* flags, cudaArray_t array) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaArrayGetInfo(desc, extent, flags, array)
return cudaArrayGetInfo(desc, extent, flags, array)
cdef cudaError_t _cudaArrayGetPlane(cudaArray_t* pPlaneArray, cudaArray_t hArray, unsigned int planeIdx) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaArrayGetPlane(pPlaneArray, hArray, planeIdx)
return cudaArrayGetPlane(pPlaneArray, hArray, planeIdx)
cdef cudaError_t _cudaArrayGetMemoryRequirements(cudaArrayMemoryRequirements* memoryRequirements, cudaArray_t array, int device) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaArrayGetMemoryRequirements(memoryRequirements, array, device)
return cudaArrayGetMemoryRequirements(memoryRequirements, array, device)
cdef cudaError_t _cudaMipmappedArrayGetMemoryRequirements(cudaArrayMemoryRequirements* memoryRequirements, cudaMipmappedArray_t mipmap, int device) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMipmappedArrayGetMemoryRequirements(memoryRequirements, mipmap, device)
return cudaMipmappedArrayGetMemoryRequirements(memoryRequirements, mipmap, device)
cdef cudaError_t _cudaArrayGetSparseProperties(cudaArraySparseProperties* sparseProperties, cudaArray_t array) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaArrayGetSparseProperties(sparseProperties, array)
return cudaArrayGetSparseProperties(sparseProperties, array)
cdef cudaError_t _cudaMipmappedArrayGetSparseProperties(cudaArraySparseProperties* sparseProperties, cudaMipmappedArray_t mipmap) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMipmappedArrayGetSparseProperties(sparseProperties, mipmap)
return cudaMipmappedArrayGetSparseProperties(sparseProperties, mipmap)
cdef cudaError_t _cudaMemcpy(void* dst, const void* src, size_t count, cudaMemcpyKind kind) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpy(dst, src, count, kind)
return cudaMemcpy(dst, src, count, kind)
cdef cudaError_t _cudaMemcpyPeer(void* dst, int dstDevice, const void* src, int srcDevice, size_t count) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpyPeer(dst, dstDevice, src, srcDevice, count)
return cudaMemcpyPeer(dst, dstDevice, src, srcDevice, count)
cdef cudaError_t _cudaMemcpy2D(void* dst, size_t dpitch, const void* src, size_t spitch, size_t width, size_t height, cudaMemcpyKind kind) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpy2D(dst, dpitch, src, spitch, width, height, kind)
return cudaMemcpy2D(dst, dpitch, src, spitch, width, height, kind)
cdef cudaError_t _cudaMemcpy2DToArray(cudaArray_t dst, size_t wOffset, size_t hOffset, const void* src, size_t spitch, size_t width, size_t height, cudaMemcpyKind kind) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpy2DToArray(dst, wOffset, hOffset, src, spitch, width, height, kind)
return cudaMemcpy2DToArray(dst, wOffset, hOffset, src, spitch, width, height, kind)
cdef cudaError_t _cudaMemcpy2DFromArray(void* dst, size_t dpitch, cudaArray_const_t src, size_t wOffset, size_t hOffset, size_t width, size_t height, cudaMemcpyKind kind) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpy2DFromArray(dst, dpitch, src, wOffset, hOffset, width, height, kind)
return cudaMemcpy2DFromArray(dst, dpitch, src, wOffset, hOffset, width, height, kind)
cdef cudaError_t _cudaMemcpy2DArrayToArray(cudaArray_t dst, size_t wOffsetDst, size_t hOffsetDst, cudaArray_const_t src, size_t wOffsetSrc, size_t hOffsetSrc, size_t width, size_t height, cudaMemcpyKind kind) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpy2DArrayToArray(dst, wOffsetDst, hOffsetDst, src, wOffsetSrc, hOffsetSrc, width, height, kind)
return cudaMemcpy2DArrayToArray(dst, wOffsetDst, hOffsetDst, src, wOffsetSrc, hOffsetSrc, width, height, kind)
cdef cudaError_t _cudaMemcpyAsync(void* dst, const void* src, size_t count, cudaMemcpyKind kind, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpyAsync(dst, src, count, kind, stream)
return cudaMemcpyAsync(dst, src, count, kind, stream)
cdef cudaError_t _cudaMemcpyPeerAsync(void* dst, int dstDevice, const void* src, int srcDevice, size_t count, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpyPeerAsync(dst, dstDevice, src, srcDevice, count, stream)
return cudaMemcpyPeerAsync(dst, dstDevice, src, srcDevice, count, stream)
cdef cudaError_t _cudaMemcpyBatchAsync(void** dsts, void** srcs, size_t* sizes, size_t count, cudaMemcpyAttributes* attrs, size_t* attrsIdxs, size_t numAttrs, size_t* failIdx, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpyBatchAsync(dsts, srcs, sizes, count, attrs, attrsIdxs, numAttrs, failIdx, stream)
return cudaMemcpyBatchAsync(dsts, srcs, sizes, count, attrs, attrsIdxs, numAttrs, failIdx, stream)
cdef cudaError_t _cudaMemcpy3DBatchAsync(size_t numOps, cudaMemcpy3DBatchOp* opList, size_t* failIdx, unsigned long long flags, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpy3DBatchAsync(numOps, opList, failIdx, flags, stream)
return cudaMemcpy3DBatchAsync(numOps, opList, failIdx, flags, stream)
cdef cudaError_t _cudaMemcpy2DAsync(void* dst, size_t dpitch, const void* src, size_t spitch, size_t width, size_t height, cudaMemcpyKind kind, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpy2DAsync(dst, dpitch, src, spitch, width, height, kind, stream)
return cudaMemcpy2DAsync(dst, dpitch, src, spitch, width, height, kind, stream)
cdef cudaError_t _cudaMemcpy2DToArrayAsync(cudaArray_t dst, size_t wOffset, size_t hOffset, const void* src, size_t spitch, size_t width, size_t height, cudaMemcpyKind kind, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpy2DToArrayAsync(dst, wOffset, hOffset, src, spitch, width, height, kind, stream)
return cudaMemcpy2DToArrayAsync(dst, wOffset, hOffset, src, spitch, width, height, kind, stream)
cdef cudaError_t _cudaMemcpy2DFromArrayAsync(void* dst, size_t dpitch, cudaArray_const_t src, size_t wOffset, size_t hOffset, size_t width, size_t height, cudaMemcpyKind kind, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpy2DFromArrayAsync(dst, dpitch, src, wOffset, hOffset, width, height, kind, stream)
return cudaMemcpy2DFromArrayAsync(dst, dpitch, src, wOffset, hOffset, width, height, kind, stream)
cdef cudaError_t _cudaMemset(void* devPtr, int value, size_t count) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemset(devPtr, value, count)
return cudaMemset(devPtr, value, count)
cdef cudaError_t _cudaMemset2D(void* devPtr, size_t pitch, int value, size_t width, size_t height) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemset2D(devPtr, pitch, value, width, height)
return cudaMemset2D(devPtr, pitch, value, width, height)
cdef cudaError_t _cudaMemset3D(cudaPitchedPtr pitchedDevPtr, int value, cudaExtent extent) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemset3D(pitchedDevPtr, value, extent)
return cudaMemset3D(pitchedDevPtr, value, extent)
cdef cudaError_t _cudaMemsetAsync(void* devPtr, int value, size_t count, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemsetAsync(devPtr, value, count, stream)
return cudaMemsetAsync(devPtr, value, count, stream)
cdef cudaError_t _cudaMemset2DAsync(void* devPtr, size_t pitch, int value, size_t width, size_t height, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemset2DAsync(devPtr, pitch, value, width, height, stream)
return cudaMemset2DAsync(devPtr, pitch, value, width, height, stream)
cdef cudaError_t _cudaMemset3DAsync(cudaPitchedPtr pitchedDevPtr, int value, cudaExtent extent, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemset3DAsync(pitchedDevPtr, value, extent, stream)
return cudaMemset3DAsync(pitchedDevPtr, value, extent, stream)
cdef cudaError_t _cudaMemPrefetchAsync(const void* devPtr, size_t count, int dstDevice, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemPrefetchAsync(devPtr, count, dstDevice, stream)
return cudaMemPrefetchAsync(devPtr, count, dstDevice, stream)
cdef cudaError_t _cudaMemPrefetchAsync_v2(const void* devPtr, size_t count, cudaMemLocation location, unsigned int flags, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemPrefetchAsync_v2(devPtr, count, location, flags, stream)
return cudaMemPrefetchAsync_v2(devPtr, count, location, flags, stream)
cdef cudaError_t _cudaMemAdvise(const void* devPtr, size_t count, cudaMemoryAdvise advice, int device) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemAdvise(devPtr, count, advice, device)
return cudaMemAdvise(devPtr, count, advice, device)
cdef cudaError_t _cudaMemAdvise_v2(const void* devPtr, size_t count, cudaMemoryAdvise advice, cudaMemLocation location) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemAdvise_v2(devPtr, count, advice, location)
return cudaMemAdvise_v2(devPtr, count, advice, location)
cdef cudaError_t _cudaMemRangeGetAttribute(void* data, size_t dataSize, cudaMemRangeAttribute attribute, const void* devPtr, size_t count) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemRangeGetAttribute(data, dataSize, attribute, devPtr, count)
return cudaMemRangeGetAttribute(data, dataSize, attribute, devPtr, count)
cdef cudaError_t _cudaMemRangeGetAttributes(void** data, size_t* dataSizes, cudaMemRangeAttribute* attributes, size_t numAttributes, const void* devPtr, size_t count) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemRangeGetAttributes(data, dataSizes, attributes, numAttributes, devPtr, count)
return cudaMemRangeGetAttributes(data, dataSizes, attributes, numAttributes, devPtr, count)
cdef cudaError_t _cudaMemcpyToArray(cudaArray_t dst, size_t wOffset, size_t hOffset, const void* src, size_t count, cudaMemcpyKind kind) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpyToArray(dst, wOffset, hOffset, src, count, kind)
return cudaMemcpyToArray(dst, wOffset, hOffset, src, count, kind)
cdef cudaError_t _cudaMemcpyFromArray(void* dst, cudaArray_const_t src, size_t wOffset, size_t hOffset, size_t count, cudaMemcpyKind kind) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpyFromArray(dst, src, wOffset, hOffset, count, kind)
return cudaMemcpyFromArray(dst, src, wOffset, hOffset, count, kind)
cdef cudaError_t _cudaMemcpyArrayToArray(cudaArray_t dst, size_t wOffsetDst, size_t hOffsetDst, cudaArray_const_t src, size_t wOffsetSrc, size_t hOffsetSrc, size_t count, cudaMemcpyKind kind) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpyArrayToArray(dst, wOffsetDst, hOffsetDst, src, wOffsetSrc, hOffsetSrc, count, kind)
return cudaMemcpyArrayToArray(dst, wOffsetDst, hOffsetDst, src, wOffsetSrc, hOffsetSrc, count, kind)
cdef cudaError_t _cudaMemcpyToArrayAsync(cudaArray_t dst, size_t wOffset, size_t hOffset, const void* src, size_t count, cudaMemcpyKind kind, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpyToArrayAsync(dst, wOffset, hOffset, src, count, kind, stream)
return cudaMemcpyToArrayAsync(dst, wOffset, hOffset, src, count, kind, stream)
cdef cudaError_t _cudaMemcpyFromArrayAsync(void* dst, cudaArray_const_t src, size_t wOffset, size_t hOffset, size_t count, cudaMemcpyKind kind, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemcpyFromArrayAsync(dst, src, wOffset, hOffset, count, kind, stream)
return cudaMemcpyFromArrayAsync(dst, src, wOffset, hOffset, count, kind, stream)
cdef cudaError_t _cudaMallocAsync(void** devPtr, size_t size, cudaStream_t hStream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMallocAsync(devPtr, size, hStream)
return cudaMallocAsync(devPtr, size, hStream)
cdef cudaError_t _cudaFreeAsync(void* devPtr, cudaStream_t hStream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaFreeAsync(devPtr, hStream)
return cudaFreeAsync(devPtr, hStream)
cdef cudaError_t _cudaMemPoolTrimTo(cudaMemPool_t memPool, size_t minBytesToKeep) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemPoolTrimTo(memPool, minBytesToKeep)
return cudaMemPoolTrimTo(memPool, minBytesToKeep)
cdef cudaError_t _cudaMemPoolSetAttribute(cudaMemPool_t memPool, cudaMemPoolAttr attr, void* value) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemPoolSetAttribute(memPool, attr, value)
return cudaMemPoolSetAttribute(memPool, attr, value)
cdef cudaError_t _cudaMemPoolGetAttribute(cudaMemPool_t memPool, cudaMemPoolAttr attr, void* value) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemPoolGetAttribute(memPool, attr, value)
return cudaMemPoolGetAttribute(memPool, attr, value)
cdef cudaError_t _cudaMemPoolSetAccess(cudaMemPool_t memPool, const cudaMemAccessDesc* descList, size_t count) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemPoolSetAccess(memPool, descList, count)
return cudaMemPoolSetAccess(memPool, descList, count)
cdef cudaError_t _cudaMemPoolGetAccess(cudaMemAccessFlags* flags, cudaMemPool_t memPool, cudaMemLocation* location) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemPoolGetAccess(flags, memPool, location)
return cudaMemPoolGetAccess(flags, memPool, location)
cdef cudaError_t _cudaMemPoolCreate(cudaMemPool_t* memPool, const cudaMemPoolProps* poolProps) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemPoolCreate(memPool, poolProps)
return cudaMemPoolCreate(memPool, poolProps)
cdef cudaError_t _cudaMemPoolDestroy(cudaMemPool_t memPool) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemPoolDestroy(memPool)
return cudaMemPoolDestroy(memPool)
cdef cudaError_t _cudaMallocFromPoolAsync(void** ptr, size_t size, cudaMemPool_t memPool, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMallocFromPoolAsync(ptr, size, memPool, stream)
return cudaMallocFromPoolAsync(ptr, size, memPool, stream)
cdef cudaError_t _cudaMemPoolExportToShareableHandle(void* shareableHandle, cudaMemPool_t memPool, cudaMemAllocationHandleType handleType, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemPoolExportToShareableHandle(shareableHandle, memPool, handleType, flags)
return cudaMemPoolExportToShareableHandle(shareableHandle, memPool, handleType, flags)
cdef cudaError_t _cudaMemPoolImportFromShareableHandle(cudaMemPool_t* memPool, void* shareableHandle, cudaMemAllocationHandleType handleType, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemPoolImportFromShareableHandle(memPool, shareableHandle, handleType, flags)
return cudaMemPoolImportFromShareableHandle(memPool, shareableHandle, handleType, flags)
cdef cudaError_t _cudaMemPoolExportPointer(cudaMemPoolPtrExportData* exportData, void* ptr) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemPoolExportPointer(exportData, ptr)
return cudaMemPoolExportPointer(exportData, ptr)
cdef cudaError_t _cudaMemPoolImportPointer(void** ptr, cudaMemPool_t memPool, cudaMemPoolPtrExportData* exportData) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaMemPoolImportPointer(ptr, memPool, exportData)
return cudaMemPoolImportPointer(ptr, memPool, exportData)
cdef cudaError_t _cudaPointerGetAttributes(cudaPointerAttributes* attributes, const void* ptr) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaPointerGetAttributes(attributes, ptr)
return cudaPointerGetAttributes(attributes, ptr)
cdef cudaError_t _cudaDeviceCanAccessPeer(int* canAccessPeer, int device, int peerDevice) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceCanAccessPeer(canAccessPeer, device, peerDevice)
return cudaDeviceCanAccessPeer(canAccessPeer, device, peerDevice)
cdef cudaError_t _cudaDeviceEnablePeerAccess(int peerDevice, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceEnablePeerAccess(peerDevice, flags)
return cudaDeviceEnablePeerAccess(peerDevice, flags)
cdef cudaError_t _cudaDeviceDisablePeerAccess(int peerDevice) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceDisablePeerAccess(peerDevice)
return cudaDeviceDisablePeerAccess(peerDevice)
cdef cudaError_t _cudaGraphicsUnregisterResource(cudaGraphicsResource_t resource) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphicsUnregisterResource(resource)
return cudaGraphicsUnregisterResource(resource)
cdef cudaError_t _cudaGraphicsResourceSetMapFlags(cudaGraphicsResource_t resource, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphicsResourceSetMapFlags(resource, flags)
return cudaGraphicsResourceSetMapFlags(resource, flags)
cdef cudaError_t _cudaGraphicsMapResources(int count, cudaGraphicsResource_t* resources, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphicsMapResources(count, resources, stream)
return cudaGraphicsMapResources(count, resources, stream)
cdef cudaError_t _cudaGraphicsUnmapResources(int count, cudaGraphicsResource_t* resources, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphicsUnmapResources(count, resources, stream)
return cudaGraphicsUnmapResources(count, resources, stream)
cdef cudaError_t _cudaGraphicsResourceGetMappedPointer(void** devPtr, size_t* size, cudaGraphicsResource_t resource) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphicsResourceGetMappedPointer(devPtr, size, resource)
return cudaGraphicsResourceGetMappedPointer(devPtr, size, resource)
cdef cudaError_t _cudaGraphicsSubResourceGetMappedArray(cudaArray_t* array, cudaGraphicsResource_t resource, unsigned int arrayIndex, unsigned int mipLevel) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphicsSubResourceGetMappedArray(array, resource, arrayIndex, mipLevel)
return cudaGraphicsSubResourceGetMappedArray(array, resource, arrayIndex, mipLevel)
cdef cudaError_t _cudaGraphicsResourceGetMappedMipmappedArray(cudaMipmappedArray_t* mipmappedArray, cudaGraphicsResource_t resource) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphicsResourceGetMappedMipmappedArray(mipmappedArray, resource)
return cudaGraphicsResourceGetMappedMipmappedArray(mipmappedArray, resource)
cdef cudaError_t _cudaGetChannelDesc(cudaChannelFormatDesc* desc, cudaArray_const_t array) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGetChannelDesc(desc, array)
return cudaGetChannelDesc(desc, array)
@cython.show_performance_hints(False)
cdef cudaChannelFormatDesc _cudaCreateChannelDesc(int x, int y, int z, int w, cudaChannelFormatKind f) except* nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaCreateChannelDesc(x, y, z, w, f)
return cudaCreateChannelDesc(x, y, z, w, f)
cdef cudaError_t _cudaCreateTextureObject(cudaTextureObject_t* pTexObject, const cudaResourceDesc* pResDesc, const cudaTextureDesc* pTexDesc, const cudaResourceViewDesc* pResViewDesc) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaCreateTextureObject(pTexObject, pResDesc, pTexDesc, pResViewDesc)
return cudaCreateTextureObject(pTexObject, pResDesc, pTexDesc, pResViewDesc)
cdef cudaError_t _cudaDestroyTextureObject(cudaTextureObject_t texObject) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDestroyTextureObject(texObject)
return cudaDestroyTextureObject(texObject)
cdef cudaError_t _cudaGetTextureObjectResourceDesc(cudaResourceDesc* pResDesc, cudaTextureObject_t texObject) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGetTextureObjectResourceDesc(pResDesc, texObject)
return cudaGetTextureObjectResourceDesc(pResDesc, texObject)
cdef cudaError_t _cudaGetTextureObjectTextureDesc(cudaTextureDesc* pTexDesc, cudaTextureObject_t texObject) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGetTextureObjectTextureDesc(pTexDesc, texObject)
return cudaGetTextureObjectTextureDesc(pTexDesc, texObject)
cdef cudaError_t _cudaGetTextureObjectResourceViewDesc(cudaResourceViewDesc* pResViewDesc, cudaTextureObject_t texObject) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGetTextureObjectResourceViewDesc(pResViewDesc, texObject)
return cudaGetTextureObjectResourceViewDesc(pResViewDesc, texObject)
cdef cudaError_t _cudaCreateSurfaceObject(cudaSurfaceObject_t* pSurfObject, const cudaResourceDesc* pResDesc) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaCreateSurfaceObject(pSurfObject, pResDesc)
return cudaCreateSurfaceObject(pSurfObject, pResDesc)
cdef cudaError_t _cudaDestroySurfaceObject(cudaSurfaceObject_t surfObject) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDestroySurfaceObject(surfObject)
return cudaDestroySurfaceObject(surfObject)
cdef cudaError_t _cudaGetSurfaceObjectResourceDesc(cudaResourceDesc* pResDesc, cudaSurfaceObject_t surfObject) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGetSurfaceObjectResourceDesc(pResDesc, surfObject)
return cudaGetSurfaceObjectResourceDesc(pResDesc, surfObject)
cdef cudaError_t _cudaDriverGetVersion(int* driverVersion) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDriverGetVersion(driverVersion)
return cudaDriverGetVersion(driverVersion)
cdef cudaError_t _cudaRuntimeGetVersion(int* runtimeVersion) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaRuntimeGetVersion(runtimeVersion)
return cudaRuntimeGetVersion(runtimeVersion)
cdef cudaError_t _cudaGraphCreate(cudaGraph_t* pGraph, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphCreate(pGraph, flags)
return cudaGraphCreate(pGraph, flags)
cdef cudaError_t _cudaGraphAddKernelNode(cudaGraphNode_t* pGraphNode, cudaGraph_t graph, const cudaGraphNode_t* pDependencies, size_t numDependencies, const cudaKernelNodeParams* pNodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphAddKernelNode(pGraphNode, graph, pDependencies, numDependencies, pNodeParams)
return cudaGraphAddKernelNode(pGraphNode, graph, pDependencies, numDependencies, pNodeParams)
cdef cudaError_t _cudaGraphKernelNodeGetParams(cudaGraphNode_t node, cudaKernelNodeParams* pNodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphKernelNodeGetParams(node, pNodeParams)
return cudaGraphKernelNodeGetParams(node, pNodeParams)
cdef cudaError_t _cudaGraphKernelNodeSetParams(cudaGraphNode_t node, const cudaKernelNodeParams* pNodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphKernelNodeSetParams(node, pNodeParams)
return cudaGraphKernelNodeSetParams(node, pNodeParams)
cdef cudaError_t _cudaGraphKernelNodeCopyAttributes(cudaGraphNode_t hSrc, cudaGraphNode_t hDst) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphKernelNodeCopyAttributes(hSrc, hDst)
return cudaGraphKernelNodeCopyAttributes(hSrc, hDst)
cdef cudaError_t _cudaGraphKernelNodeGetAttribute(cudaGraphNode_t hNode, cudaKernelNodeAttrID attr, cudaKernelNodeAttrValue* value_out) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphKernelNodeGetAttribute(hNode, attr, value_out)
return cudaGraphKernelNodeGetAttribute(hNode, attr, value_out)
cdef cudaError_t _cudaGraphKernelNodeSetAttribute(cudaGraphNode_t hNode, cudaKernelNodeAttrID attr, const cudaKernelNodeAttrValue* value) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphKernelNodeSetAttribute(hNode, attr, value)
return cudaGraphKernelNodeSetAttribute(hNode, attr, value)
cdef cudaError_t _cudaGraphAddMemcpyNode(cudaGraphNode_t* pGraphNode, cudaGraph_t graph, const cudaGraphNode_t* pDependencies, size_t numDependencies, const cudaMemcpy3DParms* pCopyParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphAddMemcpyNode(pGraphNode, graph, pDependencies, numDependencies, pCopyParams)
return cudaGraphAddMemcpyNode(pGraphNode, graph, pDependencies, numDependencies, pCopyParams)
cdef cudaError_t _cudaGraphAddMemcpyNode1D(cudaGraphNode_t* pGraphNode, cudaGraph_t graph, const cudaGraphNode_t* pDependencies, size_t numDependencies, void* dst, const void* src, size_t count, cudaMemcpyKind kind) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphAddMemcpyNode1D(pGraphNode, graph, pDependencies, numDependencies, dst, src, count, kind)
return cudaGraphAddMemcpyNode1D(pGraphNode, graph, pDependencies, numDependencies, dst, src, count, kind)
cdef cudaError_t _cudaGraphMemcpyNodeGetParams(cudaGraphNode_t node, cudaMemcpy3DParms* pNodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphMemcpyNodeGetParams(node, pNodeParams)
return cudaGraphMemcpyNodeGetParams(node, pNodeParams)
cdef cudaError_t _cudaGraphMemcpyNodeSetParams(cudaGraphNode_t node, const cudaMemcpy3DParms* pNodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphMemcpyNodeSetParams(node, pNodeParams)
return cudaGraphMemcpyNodeSetParams(node, pNodeParams)
cdef cudaError_t _cudaGraphMemcpyNodeSetParams1D(cudaGraphNode_t node, void* dst, const void* src, size_t count, cudaMemcpyKind kind) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphMemcpyNodeSetParams1D(node, dst, src, count, kind)
return cudaGraphMemcpyNodeSetParams1D(node, dst, src, count, kind)
cdef cudaError_t _cudaGraphAddMemsetNode(cudaGraphNode_t* pGraphNode, cudaGraph_t graph, const cudaGraphNode_t* pDependencies, size_t numDependencies, const cudaMemsetParams* pMemsetParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphAddMemsetNode(pGraphNode, graph, pDependencies, numDependencies, pMemsetParams)
return cudaGraphAddMemsetNode(pGraphNode, graph, pDependencies, numDependencies, pMemsetParams)
cdef cudaError_t _cudaGraphMemsetNodeGetParams(cudaGraphNode_t node, cudaMemsetParams* pNodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphMemsetNodeGetParams(node, pNodeParams)
return cudaGraphMemsetNodeGetParams(node, pNodeParams)
cdef cudaError_t _cudaGraphMemsetNodeSetParams(cudaGraphNode_t node, const cudaMemsetParams* pNodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphMemsetNodeSetParams(node, pNodeParams)
return cudaGraphMemsetNodeSetParams(node, pNodeParams)
cdef cudaError_t _cudaGraphAddHostNode(cudaGraphNode_t* pGraphNode, cudaGraph_t graph, const cudaGraphNode_t* pDependencies, size_t numDependencies, const cudaHostNodeParams* pNodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphAddHostNode(pGraphNode, graph, pDependencies, numDependencies, pNodeParams)
return cudaGraphAddHostNode(pGraphNode, graph, pDependencies, numDependencies, pNodeParams)
cdef cudaError_t _cudaGraphHostNodeGetParams(cudaGraphNode_t node, cudaHostNodeParams* pNodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphHostNodeGetParams(node, pNodeParams)
return cudaGraphHostNodeGetParams(node, pNodeParams)
cdef cudaError_t _cudaGraphHostNodeSetParams(cudaGraphNode_t node, const cudaHostNodeParams* pNodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphHostNodeSetParams(node, pNodeParams)
return cudaGraphHostNodeSetParams(node, pNodeParams)
cdef cudaError_t _cudaGraphAddChildGraphNode(cudaGraphNode_t* pGraphNode, cudaGraph_t graph, const cudaGraphNode_t* pDependencies, size_t numDependencies, cudaGraph_t childGraph) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphAddChildGraphNode(pGraphNode, graph, pDependencies, numDependencies, childGraph)
return cudaGraphAddChildGraphNode(pGraphNode, graph, pDependencies, numDependencies, childGraph)
cdef cudaError_t _cudaGraphChildGraphNodeGetGraph(cudaGraphNode_t node, cudaGraph_t* pGraph) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphChildGraphNodeGetGraph(node, pGraph)
return cudaGraphChildGraphNodeGetGraph(node, pGraph)
cdef cudaError_t _cudaGraphAddEmptyNode(cudaGraphNode_t* pGraphNode, cudaGraph_t graph, const cudaGraphNode_t* pDependencies, size_t numDependencies) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphAddEmptyNode(pGraphNode, graph, pDependencies, numDependencies)
return cudaGraphAddEmptyNode(pGraphNode, graph, pDependencies, numDependencies)
cdef cudaError_t _cudaGraphAddEventRecordNode(cudaGraphNode_t* pGraphNode, cudaGraph_t graph, const cudaGraphNode_t* pDependencies, size_t numDependencies, cudaEvent_t event) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphAddEventRecordNode(pGraphNode, graph, pDependencies, numDependencies, event)
return cudaGraphAddEventRecordNode(pGraphNode, graph, pDependencies, numDependencies, event)
cdef cudaError_t _cudaGraphEventRecordNodeGetEvent(cudaGraphNode_t node, cudaEvent_t* event_out) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphEventRecordNodeGetEvent(node, event_out)
return cudaGraphEventRecordNodeGetEvent(node, event_out)
cdef cudaError_t _cudaGraphEventRecordNodeSetEvent(cudaGraphNode_t node, cudaEvent_t event) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphEventRecordNodeSetEvent(node, event)
return cudaGraphEventRecordNodeSetEvent(node, event)
cdef cudaError_t _cudaGraphAddEventWaitNode(cudaGraphNode_t* pGraphNode, cudaGraph_t graph, const cudaGraphNode_t* pDependencies, size_t numDependencies, cudaEvent_t event) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphAddEventWaitNode(pGraphNode, graph, pDependencies, numDependencies, event)
return cudaGraphAddEventWaitNode(pGraphNode, graph, pDependencies, numDependencies, event)
cdef cudaError_t _cudaGraphEventWaitNodeGetEvent(cudaGraphNode_t node, cudaEvent_t* event_out) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphEventWaitNodeGetEvent(node, event_out)
return cudaGraphEventWaitNodeGetEvent(node, event_out)
cdef cudaError_t _cudaGraphEventWaitNodeSetEvent(cudaGraphNode_t node, cudaEvent_t event) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphEventWaitNodeSetEvent(node, event)
return cudaGraphEventWaitNodeSetEvent(node, event)
cdef cudaError_t _cudaGraphAddExternalSemaphoresSignalNode(cudaGraphNode_t* pGraphNode, cudaGraph_t graph, const cudaGraphNode_t* pDependencies, size_t numDependencies, const cudaExternalSemaphoreSignalNodeParams* nodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphAddExternalSemaphoresSignalNode(pGraphNode, graph, pDependencies, numDependencies, nodeParams)
return cudaGraphAddExternalSemaphoresSignalNode(pGraphNode, graph, pDependencies, numDependencies, nodeParams)
cdef cudaError_t _cudaGraphExternalSemaphoresSignalNodeGetParams(cudaGraphNode_t hNode, cudaExternalSemaphoreSignalNodeParams* params_out) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphExternalSemaphoresSignalNodeGetParams(hNode, params_out)
return cudaGraphExternalSemaphoresSignalNodeGetParams(hNode, params_out)
cdef cudaError_t _cudaGraphExternalSemaphoresSignalNodeSetParams(cudaGraphNode_t hNode, const cudaExternalSemaphoreSignalNodeParams* nodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphExternalSemaphoresSignalNodeSetParams(hNode, nodeParams)
return cudaGraphExternalSemaphoresSignalNodeSetParams(hNode, nodeParams)
cdef cudaError_t _cudaGraphAddExternalSemaphoresWaitNode(cudaGraphNode_t* pGraphNode, cudaGraph_t graph, const cudaGraphNode_t* pDependencies, size_t numDependencies, const cudaExternalSemaphoreWaitNodeParams* nodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphAddExternalSemaphoresWaitNode(pGraphNode, graph, pDependencies, numDependencies, nodeParams)
return cudaGraphAddExternalSemaphoresWaitNode(pGraphNode, graph, pDependencies, numDependencies, nodeParams)
cdef cudaError_t _cudaGraphExternalSemaphoresWaitNodeGetParams(cudaGraphNode_t hNode, cudaExternalSemaphoreWaitNodeParams* params_out) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphExternalSemaphoresWaitNodeGetParams(hNode, params_out)
return cudaGraphExternalSemaphoresWaitNodeGetParams(hNode, params_out)
cdef cudaError_t _cudaGraphExternalSemaphoresWaitNodeSetParams(cudaGraphNode_t hNode, const cudaExternalSemaphoreWaitNodeParams* nodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphExternalSemaphoresWaitNodeSetParams(hNode, nodeParams)
return cudaGraphExternalSemaphoresWaitNodeSetParams(hNode, nodeParams)
cdef cudaError_t _cudaGraphAddMemAllocNode(cudaGraphNode_t* pGraphNode, cudaGraph_t graph, const cudaGraphNode_t* pDependencies, size_t numDependencies, cudaMemAllocNodeParams* nodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphAddMemAllocNode(pGraphNode, graph, pDependencies, numDependencies, nodeParams)
return cudaGraphAddMemAllocNode(pGraphNode, graph, pDependencies, numDependencies, nodeParams)
cdef cudaError_t _cudaGraphMemAllocNodeGetParams(cudaGraphNode_t node, cudaMemAllocNodeParams* params_out) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphMemAllocNodeGetParams(node, params_out)
return cudaGraphMemAllocNodeGetParams(node, params_out)
cdef cudaError_t _cudaGraphAddMemFreeNode(cudaGraphNode_t* pGraphNode, cudaGraph_t graph, const cudaGraphNode_t* pDependencies, size_t numDependencies, void* dptr) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphAddMemFreeNode(pGraphNode, graph, pDependencies, numDependencies, dptr)
return cudaGraphAddMemFreeNode(pGraphNode, graph, pDependencies, numDependencies, dptr)
cdef cudaError_t _cudaGraphMemFreeNodeGetParams(cudaGraphNode_t node, void* dptr_out) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphMemFreeNodeGetParams(node, dptr_out)
return cudaGraphMemFreeNodeGetParams(node, dptr_out)
cdef cudaError_t _cudaDeviceGraphMemTrim(int device) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceGraphMemTrim(device)
return cudaDeviceGraphMemTrim(device)
cdef cudaError_t _cudaDeviceGetGraphMemAttribute(int device, cudaGraphMemAttributeType attr, void* value) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceGetGraphMemAttribute(device, attr, value)
return cudaDeviceGetGraphMemAttribute(device, attr, value)
cdef cudaError_t _cudaDeviceSetGraphMemAttribute(int device, cudaGraphMemAttributeType attr, void* value) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaDeviceSetGraphMemAttribute(device, attr, value)
return cudaDeviceSetGraphMemAttribute(device, attr, value)
cdef cudaError_t _cudaGraphClone(cudaGraph_t* pGraphClone, cudaGraph_t originalGraph) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphClone(pGraphClone, originalGraph)
return cudaGraphClone(pGraphClone, originalGraph)
cdef cudaError_t _cudaGraphNodeFindInClone(cudaGraphNode_t* pNode, cudaGraphNode_t originalNode, cudaGraph_t clonedGraph) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphNodeFindInClone(pNode, originalNode, clonedGraph)
return cudaGraphNodeFindInClone(pNode, originalNode, clonedGraph)
cdef cudaError_t _cudaGraphNodeGetType(cudaGraphNode_t node, cudaGraphNodeType* pType) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphNodeGetType(node, pType)
return cudaGraphNodeGetType(node, pType)
cdef cudaError_t _cudaGraphGetNodes(cudaGraph_t graph, cudaGraphNode_t* nodes, size_t* numNodes) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphGetNodes(graph, nodes, numNodes)
return cudaGraphGetNodes(graph, nodes, numNodes)
cdef cudaError_t _cudaGraphGetRootNodes(cudaGraph_t graph, cudaGraphNode_t* pRootNodes, size_t* pNumRootNodes) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphGetRootNodes(graph, pRootNodes, pNumRootNodes)
return cudaGraphGetRootNodes(graph, pRootNodes, pNumRootNodes)
cdef cudaError_t _cudaGraphGetEdges(cudaGraph_t graph, cudaGraphNode_t* from_, cudaGraphNode_t* to, size_t* numEdges) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphGetEdges(graph, from_, to, numEdges)
return cudaGraphGetEdges(graph, from_, to, numEdges)
cdef cudaError_t _cudaGraphGetEdges_v2(cudaGraph_t graph, cudaGraphNode_t* from_, cudaGraphNode_t* to, cudaGraphEdgeData* edgeData, size_t* numEdges) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphGetEdges_v2(graph, from_, to, edgeData, numEdges)
return cudaGraphGetEdges_v2(graph, from_, to, edgeData, numEdges)
cdef cudaError_t _cudaGraphNodeGetDependencies(cudaGraphNode_t node, cudaGraphNode_t* pDependencies, size_t* pNumDependencies) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphNodeGetDependencies(node, pDependencies, pNumDependencies)
return cudaGraphNodeGetDependencies(node, pDependencies, pNumDependencies)
cdef cudaError_t _cudaGraphNodeGetDependencies_v2(cudaGraphNode_t node, cudaGraphNode_t* pDependencies, cudaGraphEdgeData* edgeData, size_t* pNumDependencies) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphNodeGetDependencies_v2(node, pDependencies, edgeData, pNumDependencies)
return cudaGraphNodeGetDependencies_v2(node, pDependencies, edgeData, pNumDependencies)
cdef cudaError_t _cudaGraphNodeGetDependentNodes(cudaGraphNode_t node, cudaGraphNode_t* pDependentNodes, size_t* pNumDependentNodes) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphNodeGetDependentNodes(node, pDependentNodes, pNumDependentNodes)
return cudaGraphNodeGetDependentNodes(node, pDependentNodes, pNumDependentNodes)
cdef cudaError_t _cudaGraphNodeGetDependentNodes_v2(cudaGraphNode_t node, cudaGraphNode_t* pDependentNodes, cudaGraphEdgeData* edgeData, size_t* pNumDependentNodes) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphNodeGetDependentNodes_v2(node, pDependentNodes, edgeData, pNumDependentNodes)
return cudaGraphNodeGetDependentNodes_v2(node, pDependentNodes, edgeData, pNumDependentNodes)
cdef cudaError_t _cudaGraphAddDependencies(cudaGraph_t graph, const cudaGraphNode_t* from_, const cudaGraphNode_t* to, size_t numDependencies) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphAddDependencies(graph, from_, to, numDependencies)
return cudaGraphAddDependencies(graph, from_, to, numDependencies)
cdef cudaError_t _cudaGraphAddDependencies_v2(cudaGraph_t graph, const cudaGraphNode_t* from_, const cudaGraphNode_t* to, const cudaGraphEdgeData* edgeData, size_t numDependencies) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphAddDependencies_v2(graph, from_, to, edgeData, numDependencies)
return cudaGraphAddDependencies_v2(graph, from_, to, edgeData, numDependencies)
cdef cudaError_t _cudaGraphRemoveDependencies(cudaGraph_t graph, const cudaGraphNode_t* from_, const cudaGraphNode_t* to, size_t numDependencies) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphRemoveDependencies(graph, from_, to, numDependencies)
return cudaGraphRemoveDependencies(graph, from_, to, numDependencies)
cdef cudaError_t _cudaGraphRemoveDependencies_v2(cudaGraph_t graph, const cudaGraphNode_t* from_, const cudaGraphNode_t* to, const cudaGraphEdgeData* edgeData, size_t numDependencies) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphRemoveDependencies_v2(graph, from_, to, edgeData, numDependencies)
return cudaGraphRemoveDependencies_v2(graph, from_, to, edgeData, numDependencies)
cdef cudaError_t _cudaGraphDestroyNode(cudaGraphNode_t node) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphDestroyNode(node)
return cudaGraphDestroyNode(node)
cdef cudaError_t _cudaGraphInstantiate(cudaGraphExec_t* pGraphExec, cudaGraph_t graph, unsigned long long flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphInstantiate(pGraphExec, graph, flags)
return cudaGraphInstantiate(pGraphExec, graph, flags)
cdef cudaError_t _cudaGraphInstantiateWithFlags(cudaGraphExec_t* pGraphExec, cudaGraph_t graph, unsigned long long flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphInstantiateWithFlags(pGraphExec, graph, flags)
return cudaGraphInstantiateWithFlags(pGraphExec, graph, flags)
cdef cudaError_t _cudaGraphInstantiateWithParams(cudaGraphExec_t* pGraphExec, cudaGraph_t graph, cudaGraphInstantiateParams* instantiateParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphInstantiateWithParams(pGraphExec, graph, instantiateParams)
return cudaGraphInstantiateWithParams(pGraphExec, graph, instantiateParams)
cdef cudaError_t _cudaGraphExecGetFlags(cudaGraphExec_t graphExec, unsigned long long* flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphExecGetFlags(graphExec, flags)
return cudaGraphExecGetFlags(graphExec, flags)
cdef cudaError_t _cudaGraphExecKernelNodeSetParams(cudaGraphExec_t hGraphExec, cudaGraphNode_t node, const cudaKernelNodeParams* pNodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphExecKernelNodeSetParams(hGraphExec, node, pNodeParams)
return cudaGraphExecKernelNodeSetParams(hGraphExec, node, pNodeParams)
cdef cudaError_t _cudaGraphExecMemcpyNodeSetParams(cudaGraphExec_t hGraphExec, cudaGraphNode_t node, const cudaMemcpy3DParms* pNodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphExecMemcpyNodeSetParams(hGraphExec, node, pNodeParams)
return cudaGraphExecMemcpyNodeSetParams(hGraphExec, node, pNodeParams)
cdef cudaError_t _cudaGraphExecMemcpyNodeSetParams1D(cudaGraphExec_t hGraphExec, cudaGraphNode_t node, void* dst, const void* src, size_t count, cudaMemcpyKind kind) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphExecMemcpyNodeSetParams1D(hGraphExec, node, dst, src, count, kind)
return cudaGraphExecMemcpyNodeSetParams1D(hGraphExec, node, dst, src, count, kind)
cdef cudaError_t _cudaGraphExecMemsetNodeSetParams(cudaGraphExec_t hGraphExec, cudaGraphNode_t node, const cudaMemsetParams* pNodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphExecMemsetNodeSetParams(hGraphExec, node, pNodeParams)
return cudaGraphExecMemsetNodeSetParams(hGraphExec, node, pNodeParams)
cdef cudaError_t _cudaGraphExecHostNodeSetParams(cudaGraphExec_t hGraphExec, cudaGraphNode_t node, const cudaHostNodeParams* pNodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphExecHostNodeSetParams(hGraphExec, node, pNodeParams)
return cudaGraphExecHostNodeSetParams(hGraphExec, node, pNodeParams)
cdef cudaError_t _cudaGraphExecChildGraphNodeSetParams(cudaGraphExec_t hGraphExec, cudaGraphNode_t node, cudaGraph_t childGraph) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphExecChildGraphNodeSetParams(hGraphExec, node, childGraph)
return cudaGraphExecChildGraphNodeSetParams(hGraphExec, node, childGraph)
cdef cudaError_t _cudaGraphExecEventRecordNodeSetEvent(cudaGraphExec_t hGraphExec, cudaGraphNode_t hNode, cudaEvent_t event) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphExecEventRecordNodeSetEvent(hGraphExec, hNode, event)
return cudaGraphExecEventRecordNodeSetEvent(hGraphExec, hNode, event)
cdef cudaError_t _cudaGraphExecEventWaitNodeSetEvent(cudaGraphExec_t hGraphExec, cudaGraphNode_t hNode, cudaEvent_t event) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphExecEventWaitNodeSetEvent(hGraphExec, hNode, event)
return cudaGraphExecEventWaitNodeSetEvent(hGraphExec, hNode, event)
cdef cudaError_t _cudaGraphExecExternalSemaphoresSignalNodeSetParams(cudaGraphExec_t hGraphExec, cudaGraphNode_t hNode, const cudaExternalSemaphoreSignalNodeParams* nodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphExecExternalSemaphoresSignalNodeSetParams(hGraphExec, hNode, nodeParams)
return cudaGraphExecExternalSemaphoresSignalNodeSetParams(hGraphExec, hNode, nodeParams)
cdef cudaError_t _cudaGraphExecExternalSemaphoresWaitNodeSetParams(cudaGraphExec_t hGraphExec, cudaGraphNode_t hNode, const cudaExternalSemaphoreWaitNodeParams* nodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphExecExternalSemaphoresWaitNodeSetParams(hGraphExec, hNode, nodeParams)
return cudaGraphExecExternalSemaphoresWaitNodeSetParams(hGraphExec, hNode, nodeParams)
cdef cudaError_t _cudaGraphNodeSetEnabled(cudaGraphExec_t hGraphExec, cudaGraphNode_t hNode, unsigned int isEnabled) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphNodeSetEnabled(hGraphExec, hNode, isEnabled)
return cudaGraphNodeSetEnabled(hGraphExec, hNode, isEnabled)
cdef cudaError_t _cudaGraphNodeGetEnabled(cudaGraphExec_t hGraphExec, cudaGraphNode_t hNode, unsigned int* isEnabled) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphNodeGetEnabled(hGraphExec, hNode, isEnabled)
return cudaGraphNodeGetEnabled(hGraphExec, hNode, isEnabled)
cdef cudaError_t _cudaGraphExecUpdate(cudaGraphExec_t hGraphExec, cudaGraph_t hGraph, cudaGraphExecUpdateResultInfo* resultInfo) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphExecUpdate(hGraphExec, hGraph, resultInfo)
return cudaGraphExecUpdate(hGraphExec, hGraph, resultInfo)
cdef cudaError_t _cudaGraphUpload(cudaGraphExec_t graphExec, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphUpload(graphExec, stream)
return cudaGraphUpload(graphExec, stream)
cdef cudaError_t _cudaGraphLaunch(cudaGraphExec_t graphExec, cudaStream_t stream) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphLaunch(graphExec, stream)
return cudaGraphLaunch(graphExec, stream)
cdef cudaError_t _cudaGraphExecDestroy(cudaGraphExec_t graphExec) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphExecDestroy(graphExec)
return cudaGraphExecDestroy(graphExec)
cdef cudaError_t _cudaGraphDestroy(cudaGraph_t graph) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphDestroy(graph)
return cudaGraphDestroy(graph)
cdef cudaError_t _cudaGraphDebugDotPrint(cudaGraph_t graph, const char* path, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphDebugDotPrint(graph, path, flags)
return cudaGraphDebugDotPrint(graph, path, flags)
cdef cudaError_t _cudaUserObjectCreate(cudaUserObject_t* object_out, void* ptr, cudaHostFn_t destroy, unsigned int initialRefcount, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaUserObjectCreate(object_out, ptr, destroy, initialRefcount, flags)
return cudaUserObjectCreate(object_out, ptr, destroy, initialRefcount, flags)
cdef cudaError_t _cudaUserObjectRetain(cudaUserObject_t object, unsigned int count) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaUserObjectRetain(object, count)
return cudaUserObjectRetain(object, count)
cdef cudaError_t _cudaUserObjectRelease(cudaUserObject_t object, unsigned int count) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaUserObjectRelease(object, count)
return cudaUserObjectRelease(object, count)
cdef cudaError_t _cudaGraphRetainUserObject(cudaGraph_t graph, cudaUserObject_t object, unsigned int count, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphRetainUserObject(graph, object, count, flags)
return cudaGraphRetainUserObject(graph, object, count, flags)
cdef cudaError_t _cudaGraphReleaseUserObject(cudaGraph_t graph, cudaUserObject_t object, unsigned int count) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphReleaseUserObject(graph, object, count)
return cudaGraphReleaseUserObject(graph, object, count)
cdef cudaError_t _cudaGraphAddNode(cudaGraphNode_t* pGraphNode, cudaGraph_t graph, const cudaGraphNode_t* pDependencies, size_t numDependencies, cudaGraphNodeParams* nodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphAddNode(pGraphNode, graph, pDependencies, numDependencies, nodeParams)
return cudaGraphAddNode(pGraphNode, graph, pDependencies, numDependencies, nodeParams)
cdef cudaError_t _cudaGraphAddNode_v2(cudaGraphNode_t* pGraphNode, cudaGraph_t graph, const cudaGraphNode_t* pDependencies, const cudaGraphEdgeData* dependencyData, size_t numDependencies, cudaGraphNodeParams* nodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphAddNode_v2(pGraphNode, graph, pDependencies, dependencyData, numDependencies, nodeParams)
return cudaGraphAddNode_v2(pGraphNode, graph, pDependencies, dependencyData, numDependencies, nodeParams)
cdef cudaError_t _cudaGraphNodeSetParams(cudaGraphNode_t node, cudaGraphNodeParams* nodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphNodeSetParams(node, nodeParams)
return cudaGraphNodeSetParams(node, nodeParams)
cdef cudaError_t _cudaGraphExecNodeSetParams(cudaGraphExec_t graphExec, cudaGraphNode_t node, cudaGraphNodeParams* nodeParams) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphExecNodeSetParams(graphExec, node, nodeParams)
return cudaGraphExecNodeSetParams(graphExec, node, nodeParams)
cdef cudaError_t _cudaGraphConditionalHandleCreate(cudaGraphConditionalHandle* pHandle_out, cudaGraph_t graph, unsigned int defaultLaunchValue, unsigned int flags) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGraphConditionalHandleCreate(pHandle_out, graph, defaultLaunchValue, flags)
return cudaGraphConditionalHandleCreate(pHandle_out, graph, defaultLaunchValue, flags)
cdef cudaError_t _cudaGetDriverEntryPoint(const char* symbol, void** funcPtr, unsigned long long flags, cudaDriverEntryPointQueryResult* driverStatus) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGetDriverEntryPoint(symbol, funcPtr, flags, driverStatus)
return cudaGetDriverEntryPoint(symbol, funcPtr, flags, driverStatus)
cdef cudaError_t _cudaGetDriverEntryPointByVersion(const char* symbol, void** funcPtr, unsigned int cudaVersion, unsigned long long flags, cudaDriverEntryPointQueryResult* driverStatus) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGetDriverEntryPointByVersion(symbol, funcPtr, cudaVersion, flags, driverStatus)
return cudaGetDriverEntryPointByVersion(symbol, funcPtr, cudaVersion, flags, driverStatus)
cdef cudaError_t _cudaLibraryLoadData(cudaLibrary_t* library, const void* code, cudaJitOption* jitOptions, void** jitOptionsValues, unsigned int numJitOptions, cudaLibraryOption* libraryOptions, void** libraryOptionValues, unsigned int numLibraryOptions) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaLibraryLoadData(library, code, jitOptions, jitOptionsValues, numJitOptions, libraryOptions, libraryOptionValues, numLibraryOptions)
return cudaLibraryLoadData(library, code, jitOptions, jitOptionsValues, numJitOptions, libraryOptions, libraryOptionValues, numLibraryOptions)
cdef cudaError_t _cudaLibraryLoadFromFile(cudaLibrary_t* library, const char* fileName, cudaJitOption* jitOptions, void** jitOptionsValues, unsigned int numJitOptions, cudaLibraryOption* libraryOptions, void** libraryOptionValues, unsigned int numLibraryOptions) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaLibraryLoadFromFile(library, fileName, jitOptions, jitOptionsValues, numJitOptions, libraryOptions, libraryOptionValues, numLibraryOptions)
return cudaLibraryLoadFromFile(library, fileName, jitOptions, jitOptionsValues, numJitOptions, libraryOptions, libraryOptionValues, numLibraryOptions)
cdef cudaError_t _cudaLibraryUnload(cudaLibrary_t library) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaLibraryUnload(library)
return cudaLibraryUnload(library)
cdef cudaError_t _cudaLibraryGetKernel(cudaKernel_t* pKernel, cudaLibrary_t library, const char* name) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaLibraryGetKernel(pKernel, library, name)
return cudaLibraryGetKernel(pKernel, library, name)
cdef cudaError_t _cudaLibraryGetGlobal(void** dptr, size_t* numbytes, cudaLibrary_t library, const char* name) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaLibraryGetGlobal(dptr, numbytes, library, name)
return cudaLibraryGetGlobal(dptr, numbytes, library, name)
cdef cudaError_t _cudaLibraryGetManaged(void** dptr, size_t* numbytes, cudaLibrary_t library, const char* name) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaLibraryGetManaged(dptr, numbytes, library, name)
return cudaLibraryGetManaged(dptr, numbytes, library, name)
cdef cudaError_t _cudaLibraryGetUnifiedFunction(void** fptr, cudaLibrary_t library, const char* symbol) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaLibraryGetUnifiedFunction(fptr, library, symbol)
return cudaLibraryGetUnifiedFunction(fptr, library, symbol)
cdef cudaError_t _cudaLibraryGetKernelCount(unsigned int* count, cudaLibrary_t lib) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaLibraryGetKernelCount(count, lib)
return cudaLibraryGetKernelCount(count, lib)
cdef cudaError_t _cudaLibraryEnumerateKernels(cudaKernel_t* kernels, unsigned int numKernels, cudaLibrary_t lib) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaLibraryEnumerateKernels(kernels, numKernels, lib)
return cudaLibraryEnumerateKernels(kernels, numKernels, lib)
cdef cudaError_t _cudaKernelSetAttributeForDevice(cudaKernel_t kernel, cudaFuncAttribute attr, int value, int device) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaKernelSetAttributeForDevice(kernel, attr, value, device)
return cudaKernelSetAttributeForDevice(kernel, attr, value, device)
cdef cudaError_t _cudaGetExportTable(const void** ppExportTable, const cudaUUID_t* pExportTableId) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGetExportTable(ppExportTable, pExportTableId)
return cudaGetExportTable(ppExportTable, pExportTableId)
cdef cudaError_t _cudaGetKernel(cudaKernel_t* kernelPtr, const void* entryFuncAddr) except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaGetKernel(kernelPtr, entryFuncAddr)
return cudaGetKernel(kernelPtr, entryFuncAddr)
@cython.show_performance_hints(False)
cdef cudaPitchedPtr _make_cudaPitchedPtr(void* d, size_t p, size_t xsz, size_t ysz) except* nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._make_cudaPitchedPtr(d, p, xsz, ysz)
return make_cudaPitchedPtr(d, p, xsz, ysz)
@cython.show_performance_hints(False)
cdef cudaPos _make_cudaPos(size_t x, size_t y, size_t z) except* nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._make_cudaPos(x, y, z)
return make_cudaPos(x, y, z)
@cython.show_performance_hints(False)
cdef cudaExtent _make_cudaExtent(size_t w, size_t h, size_t d) except* nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._make_cudaExtent(w, h, d)
return make_cudaExtent(w, h, d)
cdef cudaError_t _cudaProfilerStart() except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaProfilerStart()
return cudaProfilerStart()
cdef cudaError_t _cudaProfilerStop() except ?cudaErrorCallRequiresNewerDriver nogil:
cdef bint usePTDS = cudaPythonInit()
if usePTDS:
return ptds._cudaProfilerStop()
return cudaProfilerStop()
include "../_lib/cyruntime/cyruntime.pxi"
|