Skip to content

Commit efca834

Browse files
EZonigithub-actions[bot]
authored andcommitted
Update Stub Files
1 parent 6f1b2dd commit efca834

File tree

6 files changed

+57
-21
lines changed

6 files changed

+57
-21
lines changed

src/amrex/space1d/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,4 +600,4 @@ def d_decl(x, y, z):
600600

601601
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
602602
__license__: str = "BSD-3-Clause-LBNL"
603-
__version__: str = "25.10"
603+
__version__: str = "25.10-11-g26054b26bb65"

src/amrex/space1d/amrex_1d_pybind/__init__.pyi

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5472,7 +5472,7 @@ class BoxArray:
54725472
def size(self) -> int: ...
54735473

54745474
class Config:
5475-
amrex_version: typing.ClassVar[str] = "25.10"
5475+
amrex_version: typing.ClassVar[str] = "25.10-11-g26054b26bb65"
54765476
gpu_backend = None
54775477
have_eb: typing.ClassVar[bool] = False
54785478
have_gpu: typing.ClassVar[bool] = False
@@ -5915,13 +5915,17 @@ class FabArray_FArrayBox(FabArrayBase):
59155915
Returns the sum of component "comp"
59165916
"""
59175917
@typing.overload
5918-
def sum_boundary(self, period: Periodicity) -> None:
5918+
def sum_boundary(self, period: Periodicity, deterministic: bool = False) -> None:
59195919
"""
59205920
Sum values in overlapped cells. The destination is limited to valid cells.
59215921
"""
59225922
@typing.overload
59235923
def sum_boundary(
5924-
self, scomp: typing.SupportsInt, ncomp: typing.SupportsInt, period: Periodicity
5924+
self,
5925+
scomp: typing.SupportsInt,
5926+
ncomp: typing.SupportsInt,
5927+
period: Periodicity,
5928+
deterministic: bool = False,
59255929
) -> None:
59265930
"""
59275931
Sum values in overlapped cells. The destination is limited to valid cells.
@@ -5933,6 +5937,7 @@ class FabArray_FArrayBox(FabArrayBase):
59335937
ncomp: typing.SupportsInt,
59345938
nghost: IntVect1D,
59355939
period: Periodicity,
5940+
deterministic: bool = False,
59365941
) -> None:
59375942
"""
59385943
Sum values in overlapped cells. The destination is limited to valid cells.
@@ -5945,6 +5950,7 @@ class FabArray_FArrayBox(FabArrayBase):
59455950
nghost: IntVect1D,
59465951
dst_nghost: IntVect1D,
59475952
period: Periodicity,
5953+
deterministic: bool = False,
59485954
) -> None:
59495955
"""
59505956
Sum values in overlapped cells. The destination is limited to valid cells.
@@ -6262,13 +6268,17 @@ class FabArray_IArrayBox(FabArrayBase):
62626268
Returns the sum of component "comp"
62636269
"""
62646270
@typing.overload
6265-
def sum_boundary(self, period: Periodicity) -> None:
6271+
def sum_boundary(self, period: Periodicity, deterministic: bool = False) -> None:
62666272
"""
62676273
Sum values in overlapped cells. The destination is limited to valid cells.
62686274
"""
62696275
@typing.overload
62706276
def sum_boundary(
6271-
self, scomp: typing.SupportsInt, ncomp: typing.SupportsInt, period: Periodicity
6277+
self,
6278+
scomp: typing.SupportsInt,
6279+
ncomp: typing.SupportsInt,
6280+
period: Periodicity,
6281+
deterministic: bool = False,
62726282
) -> None:
62736283
"""
62746284
Sum values in overlapped cells. The destination is limited to valid cells.
@@ -6280,6 +6290,7 @@ class FabArray_IArrayBox(FabArrayBase):
62806290
ncomp: typing.SupportsInt,
62816291
nghost: IntVect1D,
62826292
period: Periodicity,
6293+
deterministic: bool = False,
62836294
) -> None:
62846295
"""
62856296
Sum values in overlapped cells. The destination is limited to valid cells.
@@ -6292,6 +6303,7 @@ class FabArray_IArrayBox(FabArrayBase):
62926303
nghost: IntVect1D,
62936304
dst_nghost: IntVect1D,
62946305
period: Periodicity,
6306+
deterministic: bool = False,
62956307
) -> None:
62966308
"""
62976309
Sum values in overlapped cells. The destination is limited to valid cells.
@@ -22646,5 +22658,5 @@ def write_single_level_plotfile(
2264622658

2264722659
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
2264822660
__license__: str = "BSD-3-Clause-LBNL"
22649-
__version__: str = "25.10"
22661+
__version__: str = "25.10-11-g26054b26bb65"
2265022662
IntVect = IntVect1D

src/amrex/space2d/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,4 +648,4 @@ def d_decl(x, y, z):
648648

649649
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
650650
__license__: str = "BSD-3-Clause-LBNL"
651-
__version__: str = "25.10"
651+
__version__: str = "25.10-11-g26054b26bb65"

src/amrex/space2d/amrex_2d_pybind/__init__.pyi

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5496,7 +5496,7 @@ class BoxArray:
54965496
def size(self) -> int: ...
54975497

54985498
class Config:
5499-
amrex_version: typing.ClassVar[str] = "25.10"
5499+
amrex_version: typing.ClassVar[str] = "25.10-11-g26054b26bb65"
55005500
gpu_backend = None
55015501
have_eb: typing.ClassVar[bool] = True
55025502
have_gpu: typing.ClassVar[bool] = False
@@ -5939,13 +5939,17 @@ class FabArray_FArrayBox(FabArrayBase):
59395939
Returns the sum of component "comp"
59405940
"""
59415941
@typing.overload
5942-
def sum_boundary(self, period: Periodicity) -> None:
5942+
def sum_boundary(self, period: Periodicity, deterministic: bool = False) -> None:
59435943
"""
59445944
Sum values in overlapped cells. The destination is limited to valid cells.
59455945
"""
59465946
@typing.overload
59475947
def sum_boundary(
5948-
self, scomp: typing.SupportsInt, ncomp: typing.SupportsInt, period: Periodicity
5948+
self,
5949+
scomp: typing.SupportsInt,
5950+
ncomp: typing.SupportsInt,
5951+
period: Periodicity,
5952+
deterministic: bool = False,
59495953
) -> None:
59505954
"""
59515955
Sum values in overlapped cells. The destination is limited to valid cells.
@@ -5957,6 +5961,7 @@ class FabArray_FArrayBox(FabArrayBase):
59575961
ncomp: typing.SupportsInt,
59585962
nghost: IntVect2D,
59595963
period: Periodicity,
5964+
deterministic: bool = False,
59605965
) -> None:
59615966
"""
59625967
Sum values in overlapped cells. The destination is limited to valid cells.
@@ -5969,6 +5974,7 @@ class FabArray_FArrayBox(FabArrayBase):
59695974
nghost: IntVect2D,
59705975
dst_nghost: IntVect2D,
59715976
period: Periodicity,
5977+
deterministic: bool = False,
59725978
) -> None:
59735979
"""
59745980
Sum values in overlapped cells. The destination is limited to valid cells.
@@ -6286,13 +6292,17 @@ class FabArray_IArrayBox(FabArrayBase):
62866292
Returns the sum of component "comp"
62876293
"""
62886294
@typing.overload
6289-
def sum_boundary(self, period: Periodicity) -> None:
6295+
def sum_boundary(self, period: Periodicity, deterministic: bool = False) -> None:
62906296
"""
62916297
Sum values in overlapped cells. The destination is limited to valid cells.
62926298
"""
62936299
@typing.overload
62946300
def sum_boundary(
6295-
self, scomp: typing.SupportsInt, ncomp: typing.SupportsInt, period: Periodicity
6301+
self,
6302+
scomp: typing.SupportsInt,
6303+
ncomp: typing.SupportsInt,
6304+
period: Periodicity,
6305+
deterministic: bool = False,
62966306
) -> None:
62976307
"""
62986308
Sum values in overlapped cells. The destination is limited to valid cells.
@@ -6304,6 +6314,7 @@ class FabArray_IArrayBox(FabArrayBase):
63046314
ncomp: typing.SupportsInt,
63056315
nghost: IntVect2D,
63066316
period: Periodicity,
6317+
deterministic: bool = False,
63076318
) -> None:
63086319
"""
63096320
Sum values in overlapped cells. The destination is limited to valid cells.
@@ -6316,6 +6327,7 @@ class FabArray_IArrayBox(FabArrayBase):
63166327
nghost: IntVect2D,
63176328
dst_nghost: IntVect2D,
63186329
period: Periodicity,
6330+
deterministic: bool = False,
63196331
) -> None:
63206332
"""
63216333
Sum values in overlapped cells. The destination is limited to valid cells.
@@ -24678,5 +24690,5 @@ def write_single_level_plotfile(
2467824690

2467924691
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
2468024692
__license__: str = "BSD-3-Clause-LBNL"
24681-
__version__: str = "25.10"
24693+
__version__: str = "25.10-11-g26054b26bb65"
2468224694
IntVect = IntVect2D

src/amrex/space3d/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,4 +600,4 @@ def d_decl(x, y, z):
600600

601601
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
602602
__license__: str = "BSD-3-Clause-LBNL"
603-
__version__: str = "25.10"
603+
__version__: str = "25.10-11-g26054b26bb65"

src/amrex/space3d/amrex_3d_pybind/__init__.pyi

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5472,7 +5472,7 @@ class BoxArray:
54725472
def size(self) -> int: ...
54735473

54745474
class Config:
5475-
amrex_version: typing.ClassVar[str] = "25.10"
5475+
amrex_version: typing.ClassVar[str] = "25.10-11-g26054b26bb65"
54765476
gpu_backend = None
54775477
have_eb: typing.ClassVar[bool] = True
54785478
have_gpu: typing.ClassVar[bool] = False
@@ -5915,13 +5915,17 @@ class FabArray_FArrayBox(FabArrayBase):
59155915
Returns the sum of component "comp"
59165916
"""
59175917
@typing.overload
5918-
def sum_boundary(self, period: Periodicity) -> None:
5918+
def sum_boundary(self, period: Periodicity, deterministic: bool = False) -> None:
59195919
"""
59205920
Sum values in overlapped cells. The destination is limited to valid cells.
59215921
"""
59225922
@typing.overload
59235923
def sum_boundary(
5924-
self, scomp: typing.SupportsInt, ncomp: typing.SupportsInt, period: Periodicity
5924+
self,
5925+
scomp: typing.SupportsInt,
5926+
ncomp: typing.SupportsInt,
5927+
period: Periodicity,
5928+
deterministic: bool = False,
59255929
) -> None:
59265930
"""
59275931
Sum values in overlapped cells. The destination is limited to valid cells.
@@ -5933,6 +5937,7 @@ class FabArray_FArrayBox(FabArrayBase):
59335937
ncomp: typing.SupportsInt,
59345938
nghost: IntVect3D,
59355939
period: Periodicity,
5940+
deterministic: bool = False,
59365941
) -> None:
59375942
"""
59385943
Sum values in overlapped cells. The destination is limited to valid cells.
@@ -5945,6 +5950,7 @@ class FabArray_FArrayBox(FabArrayBase):
59455950
nghost: IntVect3D,
59465951
dst_nghost: IntVect3D,
59475952
period: Periodicity,
5953+
deterministic: bool = False,
59485954
) -> None:
59495955
"""
59505956
Sum values in overlapped cells. The destination is limited to valid cells.
@@ -6262,13 +6268,17 @@ class FabArray_IArrayBox(FabArrayBase):
62626268
Returns the sum of component "comp"
62636269
"""
62646270
@typing.overload
6265-
def sum_boundary(self, period: Periodicity) -> None:
6271+
def sum_boundary(self, period: Periodicity, deterministic: bool = False) -> None:
62666272
"""
62676273
Sum values in overlapped cells. The destination is limited to valid cells.
62686274
"""
62696275
@typing.overload
62706276
def sum_boundary(
6271-
self, scomp: typing.SupportsInt, ncomp: typing.SupportsInt, period: Periodicity
6277+
self,
6278+
scomp: typing.SupportsInt,
6279+
ncomp: typing.SupportsInt,
6280+
period: Periodicity,
6281+
deterministic: bool = False,
62726282
) -> None:
62736283
"""
62746284
Sum values in overlapped cells. The destination is limited to valid cells.
@@ -6280,6 +6290,7 @@ class FabArray_IArrayBox(FabArrayBase):
62806290
ncomp: typing.SupportsInt,
62816291
nghost: IntVect3D,
62826292
period: Periodicity,
6293+
deterministic: bool = False,
62836294
) -> None:
62846295
"""
62856296
Sum values in overlapped cells. The destination is limited to valid cells.
@@ -6292,6 +6303,7 @@ class FabArray_IArrayBox(FabArrayBase):
62926303
nghost: IntVect3D,
62936304
dst_nghost: IntVect3D,
62946305
period: Periodicity,
6306+
deterministic: bool = False,
62956307
) -> None:
62966308
"""
62976309
Sum values in overlapped cells. The destination is limited to valid cells.
@@ -22824,5 +22836,5 @@ def write_single_level_plotfile(
2282422836

2282522837
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
2282622838
__license__: str = "BSD-3-Clause-LBNL"
22827-
__version__: str = "25.10"
22839+
__version__: str = "25.10-11-g26054b26bb65"
2282822840
IntVect = IntVect3D

0 commit comments

Comments
 (0)