Skip to content

Commit a5c3d39

Browse files
ax3lgithub-actions[bot]
authored andcommitted
Update Stub Files
1 parent b6af1b3 commit a5c3d39

File tree

6 files changed

+123
-9
lines changed

6 files changed

+123
-9
lines changed

src/amrex/space1d/__init__.pyi

+3-1
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ from amrex.space1d.amrex_1d_pybind import (
199199
ParticleTileData_pureSoA_5_0,
200200
ParticleTileData_pureSoA_8_0,
201201
Periodicity,
202+
PlotFileData,
202203
PODVector_int_arena,
203204
PODVector_int_pinned,
204205
PODVector_int_std,
@@ -425,6 +426,7 @@ __all__ = [
425426
"Particle_5_2",
426427
"Particle_8_0",
427428
"Periodicity",
429+
"PlotFileData",
428430
"Print",
429431
"RealBox",
430432
"RealVect",
@@ -501,4 +503,4 @@ __author__: str = (
501503
"Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
502504
)
503505
__license__: str = "BSD-3-Clause-LBNL"
504-
__version__: str = "24.06-16-g1f038e767011"
506+
__version__: str = "24.07"

src/amrex/space1d/amrex_1d_pybind/__init__.pyi

+38-2
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,7 @@ __all__ = [
205205
"Particle_5_2",
206206
"Particle_8_0",
207207
"Periodicity",
208+
"PlotFileData",
208209
"RealBox",
209210
"RealVect",
210211
"StructOfArrays_1_0_idcpu_arena",
@@ -4765,7 +4766,7 @@ class BoxArray:
47654766
def size(self) -> int: ...
47664767

47674768
class Config:
4768-
amrex_version: typing.ClassVar[str] = "24.06-16-g1f038e767011"
4769+
amrex_version: typing.ClassVar[str] = "24.07"
47694770
gpu_backend = None
47704771
have_gpu: typing.ClassVar[bool] = False
47714772
have_mpi: typing.ClassVar[bool] = True
@@ -12696,6 +12697,41 @@ class Periodicity:
1269612697
@property
1269712698
def shift_IntVect(self) -> list[IntVect1D]: ...
1269812699

12700+
class PlotFileData:
12701+
def DistributionMap(self, arg0: int) -> DistributionMapping: ...
12702+
def __init__(self, arg0: str) -> None: ...
12703+
def boxArray(self, arg0: int) -> BoxArray: ...
12704+
def cellSize(
12705+
self, arg0: int
12706+
) -> typing.Annotated[list[float], pybind11_stubgen.typing_ext.FixedSize(1)]: ...
12707+
def coordSys(self) -> int: ...
12708+
def finestLevel(self) -> int: ...
12709+
@typing.overload
12710+
def get(self, arg0: int) -> MultiFab: ...
12711+
@typing.overload
12712+
def get(self, arg0: int, arg1: str) -> MultiFab: ...
12713+
def levelStep(self, arg0: int) -> int: ...
12714+
def nComp(self) -> int: ...
12715+
def nGrowVect(self, arg0: int) -> IntVect1D: ...
12716+
def probDomain(self, arg0: int) -> Box: ...
12717+
def probHi(
12718+
self,
12719+
) -> typing.Annotated[list[float], pybind11_stubgen.typing_ext.FixedSize(1)]: ...
12720+
def probLo(
12721+
self,
12722+
) -> typing.Annotated[list[float], pybind11_stubgen.typing_ext.FixedSize(1)]: ...
12723+
def probSize(
12724+
self,
12725+
) -> typing.Annotated[list[float], pybind11_stubgen.typing_ext.FixedSize(1)]: ...
12726+
def refRatio(self, arg0: int) -> int: ...
12727+
def spaceDim(self) -> int: ...
12728+
@typing.overload
12729+
def syncDistributionMap(self, arg0: PlotFileData) -> None: ...
12730+
@typing.overload
12731+
def syncDistributionMap(self, arg0: int, arg1: PlotFileData) -> None: ...
12732+
def time(self) -> float: ...
12733+
def varNames(self) -> Vector_string: ...
12734+
1269912735
class RealBox:
1270012736
@typing.overload
1270112737
def __init__(self) -> None: ...
@@ -16615,5 +16651,5 @@ __author__: str = (
1661516651
"Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
1661616652
)
1661716653
__license__: str = "BSD-3-Clause-LBNL"
16618-
__version__: str = "24.06-16-g1f038e767011"
16654+
__version__: str = "24.07"
1661916655
IntVect = IntVect1D

src/amrex/space2d/__init__.pyi

+3-1
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ from amrex.space2d.amrex_2d_pybind import (
220220
ParticleTileData_pureSoA_7_0,
221221
ParticleTileData_pureSoA_8_0,
222222
Periodicity,
223+
PlotFileData,
223224
PODVector_int_arena,
224225
PODVector_int_pinned,
225226
PODVector_int_std,
@@ -470,6 +471,7 @@ __all__ = [
470471
"Particle_7_0",
471472
"Particle_8_0",
472473
"Periodicity",
474+
"PlotFileData",
473475
"Print",
474476
"RealBox",
475477
"RealVect",
@@ -549,4 +551,4 @@ __author__: str = (
549551
"Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
550552
)
551553
__license__: str = "BSD-3-Clause-LBNL"
552-
__version__: str = "24.06-16-g1f038e767011"
554+
__version__: str = "24.07"

src/amrex/space2d/amrex_2d_pybind/__init__.pyi

+38-2
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ __all__ = [
226226
"Particle_7_0",
227227
"Particle_8_0",
228228
"Periodicity",
229+
"PlotFileData",
229230
"RealBox",
230231
"RealVect",
231232
"StructOfArrays_2_0_idcpu_arena",
@@ -4789,7 +4790,7 @@ class BoxArray:
47894790
def size(self) -> int: ...
47904791

47914792
class Config:
4792-
amrex_version: typing.ClassVar[str] = "24.06-16-g1f038e767011"
4793+
amrex_version: typing.ClassVar[str] = "24.07"
47934794
gpu_backend = None
47944795
have_gpu: typing.ClassVar[bool] = False
47954796
have_mpi: typing.ClassVar[bool] = True
@@ -13929,6 +13930,41 @@ class Periodicity:
1392913930
@property
1393013931
def shift_IntVect(self) -> list[IntVect2D]: ...
1393113932

13933+
class PlotFileData:
13934+
def DistributionMap(self, arg0: int) -> DistributionMapping: ...
13935+
def __init__(self, arg0: str) -> None: ...
13936+
def boxArray(self, arg0: int) -> BoxArray: ...
13937+
def cellSize(
13938+
self, arg0: int
13939+
) -> typing.Annotated[list[float], pybind11_stubgen.typing_ext.FixedSize(2)]: ...
13940+
def coordSys(self) -> int: ...
13941+
def finestLevel(self) -> int: ...
13942+
@typing.overload
13943+
def get(self, arg0: int) -> MultiFab: ...
13944+
@typing.overload
13945+
def get(self, arg0: int, arg1: str) -> MultiFab: ...
13946+
def levelStep(self, arg0: int) -> int: ...
13947+
def nComp(self) -> int: ...
13948+
def nGrowVect(self, arg0: int) -> IntVect2D: ...
13949+
def probDomain(self, arg0: int) -> Box: ...
13950+
def probHi(
13951+
self,
13952+
) -> typing.Annotated[list[float], pybind11_stubgen.typing_ext.FixedSize(2)]: ...
13953+
def probLo(
13954+
self,
13955+
) -> typing.Annotated[list[float], pybind11_stubgen.typing_ext.FixedSize(2)]: ...
13956+
def probSize(
13957+
self,
13958+
) -> typing.Annotated[list[float], pybind11_stubgen.typing_ext.FixedSize(2)]: ...
13959+
def refRatio(self, arg0: int) -> int: ...
13960+
def spaceDim(self) -> int: ...
13961+
@typing.overload
13962+
def syncDistributionMap(self, arg0: PlotFileData) -> None: ...
13963+
@typing.overload
13964+
def syncDistributionMap(self, arg0: int, arg1: PlotFileData) -> None: ...
13965+
def time(self) -> float: ...
13966+
def varNames(self) -> Vector_string: ...
13967+
1393213968
class RealBox:
1393313969
@typing.overload
1393413970
def __init__(self) -> None: ...
@@ -18453,5 +18489,5 @@ __author__: str = (
1845318489
"Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
1845418490
)
1845518491
__license__: str = "BSD-3-Clause-LBNL"
18456-
__version__: str = "24.06-16-g1f038e767011"
18492+
__version__: str = "24.07"
1845718493
IntVect = IntVect2D

src/amrex/space3d/__init__.pyi

+3-1
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ from amrex.space3d.amrex_3d_pybind import (
199199
ParticleTileData_pureSoA_7_0,
200200
ParticleTileData_pureSoA_8_0,
201201
Periodicity,
202+
PlotFileData,
202203
PODVector_int_arena,
203204
PODVector_int_pinned,
204205
PODVector_int_std,
@@ -425,6 +426,7 @@ __all__ = [
425426
"Particle_7_0",
426427
"Particle_8_0",
427428
"Periodicity",
429+
"PlotFileData",
428430
"Print",
429431
"RealBox",
430432
"RealVect",
@@ -501,4 +503,4 @@ __author__: str = (
501503
"Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
502504
)
503505
__license__: str = "BSD-3-Clause-LBNL"
504-
__version__: str = "24.06-16-g1f038e767011"
506+
__version__: str = "24.07"

src/amrex/space3d/amrex_3d_pybind/__init__.pyi

+38-2
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,7 @@ __all__ = [
205205
"Particle_7_0",
206206
"Particle_8_0",
207207
"Periodicity",
208+
"PlotFileData",
208209
"RealBox",
209210
"RealVect",
210211
"StructOfArrays_3_0_idcpu_arena",
@@ -4765,7 +4766,7 @@ class BoxArray:
47654766
def size(self) -> int: ...
47664767

47674768
class Config:
4768-
amrex_version: typing.ClassVar[str] = "24.06-16-g1f038e767011"
4769+
amrex_version: typing.ClassVar[str] = "24.07"
47694770
gpu_backend = None
47704771
have_gpu: typing.ClassVar[bool] = False
47714772
have_mpi: typing.ClassVar[bool] = True
@@ -12713,6 +12714,41 @@ class Periodicity:
1271312714
@property
1271412715
def shift_IntVect(self) -> list[IntVect3D]: ...
1271512716

12717+
class PlotFileData:
12718+
def DistributionMap(self, arg0: int) -> DistributionMapping: ...
12719+
def __init__(self, arg0: str) -> None: ...
12720+
def boxArray(self, arg0: int) -> BoxArray: ...
12721+
def cellSize(
12722+
self, arg0: int
12723+
) -> typing.Annotated[list[float], pybind11_stubgen.typing_ext.FixedSize(3)]: ...
12724+
def coordSys(self) -> int: ...
12725+
def finestLevel(self) -> int: ...
12726+
@typing.overload
12727+
def get(self, arg0: int) -> MultiFab: ...
12728+
@typing.overload
12729+
def get(self, arg0: int, arg1: str) -> MultiFab: ...
12730+
def levelStep(self, arg0: int) -> int: ...
12731+
def nComp(self) -> int: ...
12732+
def nGrowVect(self, arg0: int) -> IntVect3D: ...
12733+
def probDomain(self, arg0: int) -> Box: ...
12734+
def probHi(
12735+
self,
12736+
) -> typing.Annotated[list[float], pybind11_stubgen.typing_ext.FixedSize(3)]: ...
12737+
def probLo(
12738+
self,
12739+
) -> typing.Annotated[list[float], pybind11_stubgen.typing_ext.FixedSize(3)]: ...
12740+
def probSize(
12741+
self,
12742+
) -> typing.Annotated[list[float], pybind11_stubgen.typing_ext.FixedSize(3)]: ...
12743+
def refRatio(self, arg0: int) -> int: ...
12744+
def spaceDim(self) -> int: ...
12745+
@typing.overload
12746+
def syncDistributionMap(self, arg0: PlotFileData) -> None: ...
12747+
@typing.overload
12748+
def syncDistributionMap(self, arg0: int, arg1: PlotFileData) -> None: ...
12749+
def time(self) -> float: ...
12750+
def varNames(self) -> Vector_string: ...
12751+
1271612752
class RealBox:
1271712753
@typing.overload
1271812754
def __init__(self) -> None: ...
@@ -16647,5 +16683,5 @@ __author__: str = (
1664716683
"Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
1664816684
)
1664916685
__license__: str = "BSD-3-Clause-LBNL"
16650-
__version__: str = "24.06-16-g1f038e767011"
16686+
__version__: str = "24.07"
1665116687
IntVect = IntVect3D

0 commit comments

Comments
 (0)