@@ -126,14 +126,17 @@ __all__: list[str] = [
126126 "MPMD_NProcs",
127127 "MultiFab",
128128 "PODVector_int_arena",
129+ "PODVector_int_default",
129130 "PODVector_int_pinned",
130131 "PODVector_int_polymorphic",
131132 "PODVector_int_std",
132133 "PODVector_real_arena",
134+ "PODVector_real_default",
133135 "PODVector_real_pinned",
134136 "PODVector_real_polymorphic",
135137 "PODVector_real_std",
136138 "PODVector_uint64_arena",
139+ "PODVector_uint64_default",
137140 "PODVector_uint64_pinned",
138141 "PODVector_uint64_polymorphic",
139142 "PODVector_uint64_std",
@@ -11666,6 +11669,9 @@ class GrowthStrategy(enum.Enum):
1166611669 Poisson: typing.ClassVar[GrowthStrategy] # value = <GrowthStrategy.Poisson: 0>
1166711670
1166811671class PODVector_real_pinned:
11672+ """
11673+ A plain-old-data (POD) vector of 'real' elements with 'pinned' allocation.
11674+ """
1166911675 def __getitem__(self, arg0: typing.SupportsInt | typing.SupportsIndex) -> float: ...
1167011676 @typing.overload
1167111677 def __init__(self) -> None: ...
@@ -11779,6 +11785,9 @@ class PODVector_real_pinned:
1177911785 def __cuda_array_interface__(self) -> dict: ...
1178011786
1178111787class PODVector_real_arena:
11788+ """
11789+ A plain-old-data (POD) vector of 'real' elements with 'arena' allocation.
11790+ """
1178211791 def __getitem__(self, arg0: typing.SupportsInt | typing.SupportsIndex) -> float: ...
1178311792 @typing.overload
1178411793 def __init__(self) -> None: ...
@@ -11892,6 +11901,9 @@ class PODVector_real_arena:
1189211901 def __cuda_array_interface__(self) -> dict: ...
1189311902
1189411903class PODVector_real_std:
11904+ """
11905+ A plain-old-data (POD) vector of 'real' elements with 'std' allocation.
11906+ """
1189511907 def __getitem__(self, arg0: typing.SupportsInt | typing.SupportsIndex) -> float: ...
1189611908 @typing.overload
1189711909 def __init__(self) -> None: ...
@@ -12005,6 +12017,9 @@ class PODVector_real_std:
1200512017 def __cuda_array_interface__(self) -> dict: ...
1200612018
1200712019class PODVector_real_polymorphic:
12020+ """
12021+ A plain-old-data (POD) vector of 'real' elements with 'polymorphic' allocation.
12022+ """
1200812023 def __getitem__(self, arg0: typing.SupportsInt | typing.SupportsIndex) -> float: ...
1200912024 @typing.overload
1201012025 def __init__(self) -> None: ...
@@ -12118,6 +12133,9 @@ class PODVector_real_polymorphic:
1211812133 def __cuda_array_interface__(self) -> dict: ...
1211912134
1212012135class PODVector_int_pinned:
12136+ """
12137+ A plain-old-data (POD) vector of 'int' elements with 'pinned' allocation.
12138+ """
1212112139 def __getitem__(self, arg0: typing.SupportsInt | typing.SupportsIndex) -> int: ...
1212212140 @typing.overload
1212312141 def __init__(self) -> None: ...
@@ -12231,6 +12249,9 @@ class PODVector_int_pinned:
1223112249 def __cuda_array_interface__(self) -> dict: ...
1223212250
1223312251class PODVector_int_arena:
12252+ """
12253+ A plain-old-data (POD) vector of 'int' elements with 'arena' allocation.
12254+ """
1223412255 def __getitem__(self, arg0: typing.SupportsInt | typing.SupportsIndex) -> int: ...
1223512256 @typing.overload
1223612257 def __init__(self) -> None: ...
@@ -12344,6 +12365,9 @@ class PODVector_int_arena:
1234412365 def __cuda_array_interface__(self) -> dict: ...
1234512366
1234612367class PODVector_int_std:
12368+ """
12369+ A plain-old-data (POD) vector of 'int' elements with 'std' allocation.
12370+ """
1234712371 def __getitem__(self, arg0: typing.SupportsInt | typing.SupportsIndex) -> int: ...
1234812372 @typing.overload
1234912373 def __init__(self) -> None: ...
@@ -12457,6 +12481,9 @@ class PODVector_int_std:
1245712481 def __cuda_array_interface__(self) -> dict: ...
1245812482
1245912483class PODVector_int_polymorphic:
12484+ """
12485+ A plain-old-data (POD) vector of 'int' elements with 'polymorphic' allocation.
12486+ """
1246012487 def __getitem__(self, arg0: typing.SupportsInt | typing.SupportsIndex) -> int: ...
1246112488 @typing.overload
1246212489 def __init__(self) -> None: ...
@@ -12570,6 +12597,9 @@ class PODVector_int_polymorphic:
1257012597 def __cuda_array_interface__(self) -> dict: ...
1257112598
1257212599class PODVector_uint64_pinned:
12600+ """
12601+ A plain-old-data (POD) vector of 'uint64' elements with 'pinned' allocation.
12602+ """
1257312603 def __getitem__(self, arg0: typing.SupportsInt | typing.SupportsIndex) -> int: ...
1257412604 @typing.overload
1257512605 def __init__(self) -> None: ...
@@ -12683,6 +12713,9 @@ class PODVector_uint64_pinned:
1268312713 def __cuda_array_interface__(self) -> dict: ...
1268412714
1268512715class PODVector_uint64_arena:
12716+ """
12717+ A plain-old-data (POD) vector of 'uint64' elements with 'arena' allocation.
12718+ """
1268612719 def __getitem__(self, arg0: typing.SupportsInt | typing.SupportsIndex) -> int: ...
1268712720 @typing.overload
1268812721 def __init__(self) -> None: ...
@@ -12796,6 +12829,9 @@ class PODVector_uint64_arena:
1279612829 def __cuda_array_interface__(self) -> dict: ...
1279712830
1279812831class PODVector_uint64_std:
12832+ """
12833+ A plain-old-data (POD) vector of 'uint64' elements with 'std' allocation.
12834+ """
1279912835 def __getitem__(self, arg0: typing.SupportsInt | typing.SupportsIndex) -> int: ...
1280012836 @typing.overload
1280112837 def __init__(self) -> None: ...
@@ -12909,6 +12945,9 @@ class PODVector_uint64_std:
1290912945 def __cuda_array_interface__(self) -> dict: ...
1291012946
1291112947class PODVector_uint64_polymorphic:
12948+ """
12949+ A plain-old-data (POD) vector of 'uint64' elements with 'polymorphic' allocation.
12950+ """
1291212951 def __getitem__(self, arg0: typing.SupportsInt | typing.SupportsIndex) -> int: ...
1291312952 @typing.overload
1291412953 def __init__(self) -> None: ...
@@ -25488,3 +25527,6 @@ __author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grot
2548825527__license__: str = "BSD-3-Clause-LBNL"
2548925528__version__: str = "26.02"
2549025529IntVect = IntVect1D
25530+ PODVector_real_default = PODVector_real_std
25531+ PODVector_int_default = PODVector_int_std
25532+ PODVector_uint64_default = PODVector_uint64_std
0 commit comments