Skip to content
Merged
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
4 changes: 2 additions & 2 deletions pyFV3/wrappers/geos_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
from ndsl.comm.comm_abc import Comm
from ndsl.dsl.dace.build import set_distributed_caches
from ndsl.dsl.gt4py_utils import is_gpu_backend
from ndsl.dsl.typing import floating_point_precision
from ndsl.dsl.typing import get_precision
from ndsl.grid import DampingCoefficients, GridData, MetricTerms
from ndsl.logging import ndsl_log
from ndsl.optional_imports import cupy as cp
Expand Down Expand Up @@ -217,7 +217,7 @@ def __init__(
f" dt : {self.dycore_state.bdt}\n"
f" bridge : {self._fortran_mem_space} > {self._pace_mem_space}\n"
f" backend : {backend}\n"
f" float : {floating_point_precision()}bit"
f" float : {get_precision()}bit"
f" orchestration : {self._is_orchestrated}\n"
f" sizer : {sizer.nx}x{sizer.ny}x{sizer.nz}"
f"(halo: {sizer.n_halo})\n"
Expand Down