Skip to content

Commit b6e992f

Browse files
committed
Publish.
0 parents  commit b6e992f

32 files changed

+47289
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
dist
2+
__pycache__
3+
/cuda-python
4+
out

cuda-stubs/cuda/__init__.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
def __getattr__(name): ...

cuda-stubs/cuda/bindings/__init__.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from cuda.bindings._version import __version__ as __version__

cuda-stubs/cuda/bindings/_bindings/__init__.pyi

Whitespace-only changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
__pyx_capi__: dict
2+
__test__: dict
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
__pyx_capi__: dict
2+
__test__: dict

cuda-stubs/cuda/bindings/_internal/__init__.pyi

Whitespace-only changes.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from cuda.bindings._internal.utils import FunctionNotFoundError as FunctionNotFoundError, NotSupportedError as NotSupportedError
2+
3+
LOAD_LIBRARY_SEARCH_DEFAULT_DIRS: int
4+
LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR: int
5+
LOAD_LIBRARY_SEARCH_SYSTEM32: int
6+
__pyx_capi__: dict
7+
__test__: dict
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
__pyx_capi__: dict
2+
__test__: dict
3+
4+
class FunctionNotFoundError(RuntimeError): ...
5+
6+
class NotSupportedError(RuntimeError): ...

cuda-stubs/cuda/bindings/_lib/__init__.pyi

Whitespace-only changes.

0 commit comments

Comments
 (0)