We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29f5f07 commit 4350787Copy full SHA for 4350787
cuda_core/cuda/core/system/device.pyx
@@ -11,7 +11,7 @@ from typing import Iterable
11
from cuda.bindings import _nvml as nvml
12
13
from ._nvml_context import validate
14
-from .utils cimport unpack_bitmask
+from .utils import unpack_bitmask
15
16
17
class DeviceArchitecture:
cuda_core/cuda/core/system/utils.pxd
cuda_core/cuda/core/system/utils.pyx
@@ -6,7 +6,7 @@ from cpython cimport array
6
from libc.stdint cimport uint64_t
7
8
9
-cpdef list[int] unpack_bitmask(x: list[int] | array.array):
+cdef list[int] unpack_bitmask(x: list[int] | array.array):
10
"""
Unpack a list of integers containing bitmasks.
0 commit comments