pyopencl 2025.2.3__cp313-cp313-win_amd64.whl → 2025.2.4__cp313-cp313-win_amd64.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.

Binary file
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
@@ -55,3 +55,7 @@ KernelArg: TypeAlias = """
55
55
  | None"""
56
56
 
57
57
  Allocator: TypeAlias = "Callable[[int], _cl.MemoryObjectHolder | _cl.SVMPointer]"
58
+
59
+
60
+ __all__ = [
61
+ ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyopencl
3
- Version: 2025.2.3
3
+ Version: 2025.2.4
4
4
  Summary: Python wrapper for OpenCL
5
5
  Author-Email: Andreas Kloeckner <inform@tiker.net>
6
6
  License-Expression: MIT
@@ -1,11 +1,11 @@
1
1
  pyopencl/__init__.py,sha256=JAui3XXEV-mVuAeufIOvmvg4TwagUkNsppoJewozayg,65173
2
- pyopencl/_cl.cp313-win_amd64.pyd,sha256=B8EOsfSeF0NyCN9a34JYUDUDaOBgUQhQxzKWTELHhLA,635904
2
+ pyopencl/_cl.cp313-win_amd64.pyd,sha256=oyM4iOP6BEB4mFUWY3pC_DHsoTszdJBLTBIRufgiwpo,635904
3
3
  pyopencl/_cl.pyi,sha256=QnCqG_fjW3VyUQsxcdcZ8M3ZePQ1BtA4XWFfgjfwGPg,58241
4
4
  pyopencl/_cluda.py,sha256=zlp4ECLzlQOF5ERjXeDJ6j5wYsxPm3VAYwd7adnNYo0,2168
5
5
  pyopencl/_monkeypatch.py,sha256=EyC-4DeFCaSBKQ00kJZxF6z-e44P-XSL6xAN2X0oDXM,35908
6
6
  pyopencl/_mymako.py,sha256=Ki5F6iY5oAdm_R6Mll-ltbO-DZF37FDEINimG2HRyRY,674
7
7
  pyopencl/algorithm.py,sha256=Gx7xqny_g7SA56gbApRdWUvm8UHWJDNvkdL1L3eQ4rY,52824
8
- pyopencl/array.py,sha256=a99NDsxrpzEWfLx8vqUmLF9RY9U3XIgxjAQY5AIjhag,114958
8
+ pyopencl/array.py,sha256=n_JkuAd64pqfIYDjW8Vv6tGWwqCgU2ZqS8NJtFAac6s,115483
9
9
  pyopencl/bitonic_sort.py,sha256=RQUC8tpezdTQGzSEFyue86gVjc76vLKDwaNkqi4afa8,8297
10
10
  pyopencl/bitonic_sort_templates.py,sha256=RQaGOQf7f3f4FPX80h4rxOq3_gAq0e6OKaZIuBjcoUI,16785
11
11
  pyopencl/cache.py,sha256=R_EW9ekoMe9V4Am6MbIgtnMm-BbRQyWZgzfscKEtkB0,16552
@@ -38,9 +38,9 @@ pyopencl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
38
  pyopencl/reduction.py,sha256=QypvaTblYw0oKcNv_Gs-pYz96RvcQa2GouAkVhvft58,27459
39
39
  pyopencl/scan.py,sha256=tmYbMbSx0CfilgZoRzbROX9TbjptPCxHD-WDUx11uTg,67535
40
40
  pyopencl/tools.py,sha256=jLvZAjCBJKwN0Wg_jH9XAObvqIJh-haz_VXpFSfXB1M,48161
41
- pyopencl/typing.py,sha256=JX9tpZPtwyDb2IpM8Ka3YopLpxe1Iidz-Ot7IFprrU8,2027
41
+ pyopencl/typing.py,sha256=d1xGKJTTi1TYa6HKD01N-Zd-QrdbBd4Dr5MPHrpoXmw,2047
42
42
  pyopencl/version.py,sha256=Z5G_fsr_KVWqiYzK_pOQ2PbAO20wrFlEuqqKBGiAv4I,315
43
- pyopencl-2025.2.3.dist-info/METADATA,sha256=2_oRPyLkdxIGNHm3rCoXzlT-GQkg97zLWGWae1v0GIo,4756
44
- pyopencl-2025.2.3.dist-info/WHEEL,sha256=9y7ongB9C9SKxcdQbfZEuRQ0kgbFdtXA-x9tA6LgmEA,106
45
- pyopencl-2025.2.3.dist-info/licenses/LICENSE,sha256=jib9h6nV8oAvCkKPKDecpLakmQi1SktCn4YXmllgySY,15566
46
- pyopencl-2025.2.3.dist-info/RECORD,,
43
+ pyopencl-2025.2.4.dist-info/METADATA,sha256=eDa4Y8wB7m8VTYu2x8JpG8sRIiasx7ZPXA-HHsklghM,4756
44
+ pyopencl-2025.2.4.dist-info/WHEEL,sha256=9y7ongB9C9SKxcdQbfZEuRQ0kgbFdtXA-x9tA6LgmEA,106
45
+ pyopencl-2025.2.4.dist-info/licenses/LICENSE,sha256=jib9h6nV8oAvCkKPKDecpLakmQi1SktCn4YXmllgySY,15566
46
+ pyopencl-2025.2.4.dist-info/RECORD,,