pyopencl 2025.2.3__cp311-cp311-macosx_11_0_arm64.whl → 2025.2.4__cp311-cp311-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pyopencl might be problematic. Click here for more details.
- pyopencl/array.py +36 -2
- pyopencl/typing.py +4 -0
- {pyopencl-2025.2.3.dist-info → pyopencl-2025.2.4.dist-info}/METADATA +1 -1
- {pyopencl-2025.2.3.dist-info → pyopencl-2025.2.4.dist-info}/RECORD +6 -6
- {pyopencl-2025.2.3.dist-info → pyopencl-2025.2.4.dist-info}/WHEEL +0 -0
- {pyopencl-2025.2.3.dist-info → pyopencl-2025.2.4.dist-info}/licenses/LICENSE +0 -0
pyopencl/array.py
CHANGED
|
@@ -59,6 +59,7 @@ from pyopencl.compyte.array import (
|
|
|
59
59
|
equal_strides as _equal_strides,
|
|
60
60
|
f_contiguous_strides as _f_contiguous_strides,
|
|
61
61
|
)
|
|
62
|
+
from pyopencl.typing import Allocator
|
|
62
63
|
|
|
63
64
|
|
|
64
65
|
if TYPE_CHECKING:
|
|
@@ -66,8 +67,6 @@ if TYPE_CHECKING:
|
|
|
66
67
|
|
|
67
68
|
from numpy.typing import DTypeLike, NDArray
|
|
68
69
|
|
|
69
|
-
from pyopencl.typing import Allocator
|
|
70
|
-
|
|
71
70
|
|
|
72
71
|
SCALAR_CLASSES = (Number, np.bool_, bool)
|
|
73
72
|
|
|
@@ -3404,4 +3403,39 @@ def cumsum(a, output_dtype=None, queue: cl.CommandQueue | None = None,
|
|
|
3404
3403
|
|
|
3405
3404
|
# }}}
|
|
3406
3405
|
|
|
3406
|
+
|
|
3407
|
+
__all__ = [
|
|
3408
|
+
"Allocator",
|
|
3409
|
+
"Array",
|
|
3410
|
+
"all",
|
|
3411
|
+
"any",
|
|
3412
|
+
"arange",
|
|
3413
|
+
"as_strided",
|
|
3414
|
+
"concatenate",
|
|
3415
|
+
"cumsum",
|
|
3416
|
+
"diff",
|
|
3417
|
+
"dot",
|
|
3418
|
+
"empty_like",
|
|
3419
|
+
"hstack",
|
|
3420
|
+
"if_positive",
|
|
3421
|
+
"logical_and",
|
|
3422
|
+
"logical_not",
|
|
3423
|
+
"logical_or",
|
|
3424
|
+
"maximum",
|
|
3425
|
+
"minimum",
|
|
3426
|
+
"multi_put",
|
|
3427
|
+
"multi_take",
|
|
3428
|
+
"multi_take_put",
|
|
3429
|
+
"reshape",
|
|
3430
|
+
"stack",
|
|
3431
|
+
"subset_dot",
|
|
3432
|
+
"sum",
|
|
3433
|
+
"take",
|
|
3434
|
+
"to_device",
|
|
3435
|
+
"transpose",
|
|
3436
|
+
"vdot",
|
|
3437
|
+
"zeros",
|
|
3438
|
+
"zeros_like",
|
|
3439
|
+
]
|
|
3440
|
+
|
|
3407
3441
|
# vim: foldmethod=marker
|
pyopencl/typing.py
CHANGED
|
@@ -17,8 +17,8 @@ pyopencl/_cluda.py,sha256=kjI6pW9M-zGCVDsautsKsYMs1U9v73_W5riUjdzmKA0,2111
|
|
|
17
17
|
pyopencl/_cl.cpython-311-darwin.so,sha256=QoKLIpHEtXulXf1-d_lE37FBk1lWnpzSVt0UGcFfFHg,539736
|
|
18
18
|
pyopencl/_mymako.py,sha256=1xp0pWcE57hpIDKw915CvOGQpC-Jral02Inykx_k198,657
|
|
19
19
|
pyopencl/_monkeypatch.py,sha256=bBJjQYW6XdiurbG_jgTzJg5BtDteuNVqRQ3Fuzx-Gbk,34845
|
|
20
|
-
pyopencl/typing.py,sha256=
|
|
21
|
-
pyopencl/array.py,sha256=
|
|
20
|
+
pyopencl/typing.py,sha256=LN50UCqujen7SE5cforFvJLoEd3KNEKygxuQiZV4YoQ,1986
|
|
21
|
+
pyopencl/array.py,sha256=kqCowsSiDxdbcpuSYK2bgwbRlBvkSCsOQBfroHVYkiE,112042
|
|
22
22
|
pyopencl/bitonic_sort.py,sha256=FpTfCf_s22O-SgPWBoXZjCG_k1afm7uUwnO9N7jubgg,8052
|
|
23
23
|
pyopencl/bitonic_sort_templates.py,sha256=316nsWdr7jpg9g8SmZk8KCoHmHKabjvOdBaufxQPw8Y,16188
|
|
24
24
|
pyopencl/clrandom.py,sha256=Ox_Eebq5fcjsBXpa68C1kt8Ca6CPi5tXwXhEhLY_yP8,13081
|
|
@@ -40,7 +40,7 @@ pyopencl/cl/pyopencl-random123/threefry.cl,sha256=2WmQGxx5gPSv22UL9_MlXv0eMug91k
|
|
|
40
40
|
pyopencl/cl/pyopencl-random123/philox.cl,sha256=vYcQH7Vw13Q3qkW5Nhy1HTUDbWLGKoloE1YP0VWk6vU,21740
|
|
41
41
|
pyopencl/cl/pyopencl-random123/array.h,sha256=nIV0zDWYuybldNgtsh79icNtDXHYdDsSpFaWIvDTyw4,17088
|
|
42
42
|
pyopencl/cl/pyopencl-random123/openclfeatures.h,sha256=pAPbl7JkQgJxulSuGGevpaI43P7PwiH2mYxtNfHq59M,2881
|
|
43
|
-
pyopencl-2025.2.
|
|
44
|
-
pyopencl-2025.2.
|
|
45
|
-
pyopencl-2025.2.
|
|
46
|
-
pyopencl-2025.2.
|
|
43
|
+
pyopencl-2025.2.4.dist-info/RECORD,,
|
|
44
|
+
pyopencl-2025.2.4.dist-info/WHEEL,sha256=7CikrUOKtiy-2ivl-sZ5UBq05y8ywDmf9_HO2E_GAYY,141
|
|
45
|
+
pyopencl-2025.2.4.dist-info/METADATA,sha256=eDa4Y8wB7m8VTYu2x8JpG8sRIiasx7ZPXA-HHsklghM,4756
|
|
46
|
+
pyopencl-2025.2.4.dist-info/licenses/LICENSE,sha256=wiBvs-UC54bB5DswWuvB66B96b4hkYw_VLt8IR0cBPI,15284
|
|
File without changes
|
|
File without changes
|