Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions physicsnemo/experimental/models/geotransolver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,22 @@
torch.Size([2, 1000, 3])
"""

from .context_projector import ContextProjector, GlobalContextBuilder
from .gale import GALE, GALE_block
from .context_projector import (
ContextProjector,
GlobalContextBuilder,
StructuredContextProjector,
)
from .gale import GALE, GALE_block, GALEStructuredMesh2D, GALEStructuredMesh3D
from .geotransolver import GeoTransolver, GeoTransolverMetaData

__all__ = [
"GeoTransolver",
"GeoTransolverMetaData",
"GALE",
"GALE_block",
"GALEStructuredMesh2D",
"GALEStructuredMesh3D",
"ContextProjector",
"GlobalContextBuilder",
"StructuredContextProjector",
]
Loading
Loading