Skip to content

Commit 5d1c35b

Browse files
Update Stub Files
1 parent 8b3495c commit 5d1c35b

File tree

6 files changed

+7764
-3
lines changed

6 files changed

+7764
-3
lines changed

src/amrex/space1d/__init__.pyi

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ from __future__ import annotations
3636

3737
import os as os
3838

39+
from amrex.Array4 import register_Array4_extension
40+
from amrex.ArrayOfStructs import register_AoS_extension
41+
from amrex.PODVector import register_PODVector_extension
42+
from amrex.StructOfArrays import register_SoA_extension
3943
from amrex.space1d.amrex_1d_pybind import (
4044
AlmostEqual,
4145
AMReX,
@@ -455,6 +459,10 @@ __all__ = [
455459
"min",
456460
"os",
457461
"refine",
462+
"register_AoS_extension",
463+
"register_Array4_extension",
464+
"register_PODVector_extension",
465+
"register_SoA_extension",
458466
"size",
459467
"ubound",
460468
"unpack_cpus",
@@ -467,7 +475,10 @@ def Print(*args, **kwargs):
467475
Wrap amrex::Print() - only the IO processor writes
468476
"""
469477

470-
def d_decl(x, y, z): ...
478+
def d_decl(x, y, z):
479+
"""
480+
Return a tuple of the first passed element
481+
"""
471482

472483
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
473484
__license__: str = "BSD-3-Clause-LBNL"

0 commit comments

Comments
 (0)