File size: 15,421 Bytes
f4a39ee | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 | # Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Shared utilities and classes for metrics and related modules."""
from __future__ import annotations
import dataclasses
from types import MappingProxyType
from typing import Callable, Optional, Sequence
from dinosaur import coordinate_systems
from dinosaur import horizontal_interpolation
from dinosaur import pytree_utils
from dinosaur import spherical_harmonic
from dinosaur import typing
import gin
import jax
import jax.extend as jex
from jax.interpreters import ad
from jax.interpreters import batching
from jax.interpreters import mlir
import jax.numpy as jnp
import numpy as np
tree_map = jax.tree_util.tree_map
tree_leaves = jax.tree_util.tree_leaves
Pytree = typing.Pytree
TrajectoryRepresentations = typing.TrajectoryRepresentations
# Number of state variables in the model. t/z/u/v/specific_humidity.
N_VARS = 5
# Axis names.
TIME = 'time'
LEVEL = 'level'
LONGITUDINAL_WAVENUMBER = 'longitudinal_wavenumber'
TOTAL_WAVENUMBER = 'total_wavenumber'
LONGITUDINAL = 'longitudinal'
LATITUDINAL = 'latitudinal'
# SPATIAL_AXES is negatively indexed because it is used in a place where there
# are variable number of leading axis.
SPATIAL_AXES = (-2, -1)
TIME_AXIS = 0
LEVEL_AXIS = 1
ALL_AXES = (TIME_AXIS, LEVEL_AXIS) + SPATIAL_AXES
MODAL_AXIS_INDICES = MappingProxyType({
TIME: TIME_AXIS,
LEVEL: LEVEL_AXIS,
LONGITUDINAL_WAVENUMBER: 2,
TOTAL_WAVENUMBER: 3,
})
NODAL_AXIS_INDICES = MappingProxyType({
TIME: TIME_AXIS,
LEVEL: LEVEL_AXIS,
LONGITUDINAL: 2,
LATITUDINAL: 3,
})
class ShapeError(Exception):
"""Raised when an unexpected shape is encountered."""
@dataclasses.dataclass
class TrajectorySpec:
"""Specification of a saved model trajectory."""
trajectory_length: int # i.e., max "outer steps"
max_trajectory_length: int # Maximum length for any stage of an Experiment.
steps_per_save: int # Number of (1 hr) inner steps between each outer step.
coords: coordinate_systems.CoordinateSystem # i.e., model coords
data_coords: coordinate_systems.CoordinateSystem # i.e., data coords
def __post_init__(self):
if self.trajectory_length > self.max_trajectory_length:
raise ValueError(
f'{self.trajectory_length=} > {self.max_trajectory_length=}.'
)
@dataclasses.dataclass
class TrajectoryShape:
"""Specifies shape of trajectory after LinearTransforms are applied."""
n_times: int
n_levels: int
n_longitudinal_wavenumbers: int
n_total_wavenumbers: int
n_longitude_nodes: int
n_latitude_nodes: int
def assert_compliant(self, trajectory: typing.Pytree, is_nodal: bool) -> None:
"""Asserts `trajectory` is compliant with this `TrajectoryShape`.
Args:
trajectory: A trajectory, after LinearTransforms have been applied.
is_nodal: Whether the trajectory is presumed nodal (vs. modal).
Raises:
ShapeError: If the shape is not compliant.
"""
if is_nodal:
expected_shape = (
self.n_times,
self.n_levels,
self.n_longitude_nodes,
self.n_latitude_nodes,
)
else:
expected_shape = (
self.n_times,
self.n_levels,
self.n_longitudinal_wavenumbers,
self.n_total_wavenumbers,
)
is_compliant = tree_map(lambda x: np.shape(x) == expected_shape, trajectory)
if not all(tree_leaves(is_compliant)):
shapes = tree_map(np.shape, trajectory)
raise ShapeError(
f'Some `trajectory` shapes were non-compliant ({is_nodal=}). '
f'{expected_shape=}. Found {shapes=}. '
f'This TrajectoryShape is {self}.'
)
def nodal_surface_mean(
x: typing.Array, coords: coordinate_systems.CoordinateSystem
) -> typing.Array:
"""Integrates x over the surface of a sphere, normalized by surface area."""
if x.shape[-2:] != coords.horizontal.nodal_shape[-2:]:
raise ValueError(f'Input to nodal_surface_mean: {x.shape=}, while expected '
f'spatial shape is {coords.horizontal.nodal_shape=}.')
surface_area = 4 * jnp.pi * coords.horizontal.radius**2
# Changes shape (n_t, n_z, n_lon, n_lat) --> (n_t, n_z)
return coords.horizontal.integrate(x) / surface_area
def modal_surface_mean(
x: typing.Array, coords: coordinate_systems.CoordinateSystem
) -> typing.Array:
"""Integrates Σxₖφₖ² over a sphere, normalized by surface area."""
if x.shape[-2:] != coords.horizontal.modal_shape[-2:]:
raise ValueError(f'Input to modal_surface_mean: {x.shape=}, while expected '
f'modal shape is {coords.horizontal.modal_shape=}.')
# This is equivalent to computing ||f||² / SurfaceArea, where
# f = Σₖsqrt(x)ₖφₖ
surface_area = 4 * jnp.pi * coords.horizontal.radius**2
# Changes shape (n_t, n_z, m, l) --> (n_t, n_z)
return jnp.sum(x, axis=SPATIAL_AXES) / surface_area
def extract_time_slice(trajectory: Pytree, time_slice: slice) -> Pytree:
return pytree_utils.slice_along_axis(trajectory, TIME_AXIS, time_slice)
def extract_time_step(trajectory: Pytree, time_step: int) -> Pytree:
return extract_time_slice(trajectory, slice(time_step, time_step + 1))
def extract_vertical_slice(
trajectory: Pytree,
coords: coordinate_systems.CoordinateSystem,
level: int,
) -> Pytree:
i = coords.vertical.centers.tolist().index(level)
index = slice(i, i + 1)
trajectory = pytree_utils.slice_along_axis(trajectory, LEVEL_AXIS, index)
return trajectory
def filter_sim_time(trajectory: Pytree) -> Pytree:
if isinstance(trajectory, dict):
trajectory = dict(trajectory)
trajectory.pop('sim_time', None)
return trajectory
def filter_sim_time_and_diagnostics(trajectory: Pytree) -> Pytree:
if isinstance(trajectory, dict):
trajectory = dict(trajectory)
trajectory.pop('sim_time', None)
trajectory.pop('diagnostics', None)
return trajectory
def extract_variable(
trajectory: TrajectoryRepresentations,
trajectory_spec: TrajectorySpec,
time_step: int | slice | None = None,
level: int | None = None,
getter: Callable[[Pytree], Pytree] = filter_sim_time,
is_nodal: bool = True,
is_encoded: bool = False,
) -> Pytree:
"""Extract a variable from a trajectory."""
if is_encoded:
coords = trajectory_spec.coords
else:
coords = trajectory_spec.data_coords
trajectory = trajectory.get_representation(
is_nodal=is_nodal, is_encoded=is_encoded
)
trajectory = getter(trajectory)
if time_step is not None:
if isinstance(time_step, slice):
trajectory = extract_time_slice(trajectory, time_step)
else:
trajectory = extract_time_step(trajectory, time_step)
if level is not None:
trajectory = extract_vertical_slice(trajectory, coords, level)
return trajectory
def replace_with_linear_trucation(
trajectory_spec: TrajectorySpec,
) -> TrajectorySpec:
"""Replaces TrajectorySpec with a TL* version of it."""
grid = trajectory_spec.data_coords.horizontal
max_wavenumber = grid.longitude_wavenumbers - 1
assert max_wavenumber + 2 == grid.total_wavenumbers
gaussian_nodes = grid.longitude_nodes // 4
assert gaussian_nodes == grid.latitude_nodes // 2
# pytype: disable=attribute-error
new_horizontal = spherical_harmonic.Grid.construct(
max_wavenumber=2 * gaussian_nodes - 1, # Larger in TL version
gaussian_nodes=gaussian_nodes, # Same in T and TL versions
latitude_spacing=grid.latitude_spacing,
radius=grid.radius,
)
# pytype: enable=attribute-error
return dataclasses.replace(
trajectory_spec,
data_coords=dataclasses.replace(
trajectory_spec.data_coords,
horizontal=new_horizontal,
),
)
def trajectory_4d_shape(
trajectory_spec: TrajectorySpec,
keep_levels: Optional[Sequence[float]] = None,
) -> TrajectoryShape:
"""Returns the shape of the trajectory leaf values in data representation."""
if keep_levels is None:
n_levels = trajectory_spec.data_coords.vertical.layers
else:
n_levels = sum(bool(i) for i in keep_levels)
if n_levels > trajectory_spec.data_coords.vertical.layers:
raise ValueError(
f'{n_levels=} implied by `keep_levels` was greater than '
f'{trajectory_spec.data_coords.vertical.layers=}'
)
grid = trajectory_spec.data_coords.horizontal
n_m, n_l = grid.modal_shape
return TrajectoryShape(
n_times=trajectory_spec.trajectory_length,
n_levels=n_levels,
n_longitudinal_wavenumbers=n_m,
n_total_wavenumbers=n_l,
n_longitude_nodes=grid.longitude_nodes,
n_latitude_nodes=grid.latitude_nodes,
)
def pmean_all_axes(x: jax.Array) -> jax.Array:
"""Average over all vmapped axes."""
return _pmean_all_axes_p.bind(x)
def _pmean_all_axes_impl(x):
return x
def _pmean_all_axes_batch(args, batch_axes):
(x,) = args
(batch_axis,) = batch_axes
y = jnp.broadcast_to(x.mean(axis=batch_axes, keepdims=True), x.shape)
return _pmean_all_axes_p.bind(y), batch_axis
_pmean_all_axes_p = jex.core.Primitive('pmean_all_axes')
_pmean_all_axes_p.def_impl(_pmean_all_axes_impl)
_pmean_all_axes_p.def_abstract_eval(_pmean_all_axes_impl)
batching.primitive_batchers[_pmean_all_axes_p] = _pmean_all_axes_batch
ad.deflinear(_pmean_all_axes_p, lambda cotangent: [pmean_all_axes(cotangent)])
mlir.register_lowering(
_pmean_all_axes_p,
mlir.lower_fun(_pmean_all_axes_impl, multiple_results=False),
)
@dataclasses.dataclass
class AggregationTransform:
"""A transformation that aggregates spatial or temporal groups in inputs.
These transformations are useful for (1) coarsening of error observations and
(2) aggregation of error norms to compute L2^2 distance between two vectors.
The former case does not strictly impose any restrictions on the coarsening
transformation, although in most cases we would expect it to be a form of a
linear, non-invertible transformation. The latter requires that the result of
aggregation of non-negative values is non-negative.
"""
trajectory_spec: TrajectorySpec
out_trajectory_spec: TrajectorySpec
is_nodal: bool
is_encoded: bool
def __call__(self, inputs: Pytree) -> Pytree:
raise NotImplementedError
AggregationTransformConstructor = Callable[..., AggregationTransform]
@gin.register
class AggregateIdentity(AggregationTransform):
def __init__(
self,
trajectory_spec: TrajectorySpec,
is_nodal: bool,
is_encoded: bool,
):
super().__init__(trajectory_spec, trajectory_spec, is_nodal, is_encoded)
def __call__(self, inputs: Pytree) -> Pytree:
return inputs
@gin.register
class SumVariables(AggregationTransform):
"""Transform that adds sums all variables aka pytree leaves of inputs."""
def __init__(
self,
trajectory_spec: TrajectorySpec,
is_nodal: bool,
is_encoded: bool,
):
super().__init__(trajectory_spec, trajectory_spec, is_nodal, is_encoded)
def __call__(self, inputs: Pytree) -> Pytree:
return sum(jax.tree_util.tree_leaves(inputs))
@gin.register
class RegriddingAggregation(AggregationTransform):
"""Transform that aggregates horizontal cells via regridding.
To perform aggregation over a few nearby lon/lat cells this transform performs
regridding to a coarser `target_grid`. By default, the aggregated value
contains a regridded (i.e. mean) value of the inputs. Setting `scale_by_area`
to `True` multiplies outputs by an area which is close to area-weighted
aggregation.
"""
def __init__(
self,
trajectory_spec: TrajectorySpec,
is_nodal: bool,
is_encoded: bool,
target_grid: coordinate_systems.CoordinateSystem,
scale_by_area: bool = False,
):
if not is_nodal:
raise ValueError('AggregateHorizontal is only supported on nodal data')
if is_encoded:
source_coords = trajectory_spec.coords
coords = dataclasses.replace(source_coords, horizontal=target_grid) # pytype: disable=wrong-arg-types # dataclasses-replace-types
out_trajectory_spec = dataclasses.replace(trajectory_spec, coords=coords)
else:
source_coords = trajectory_spec.data_coords
coords = dataclasses.replace(source_coords, horizontal=target_grid) # pytype: disable=wrong-arg-types # dataclasses-replace-types
out_trajectory_spec = dataclasses.replace(
trajectory_spec, data_coords=coords)
super().__init__(trajectory_spec, out_trajectory_spec, is_nodal, is_encoded)
self.regrid_fn = horizontal_interpolation.ConservativeRegridder(
source_coords.horizontal, coords.horizontal)
# conservative regridding computes weighted averages rather than aggregation
# so we reweight the results by area.
lower_lon_boundaries = horizontal_interpolation._periodic_lower_bounds(
coords.horizontal.longitudes, 2 * np.pi)
upper_lon_boundaries = horizontal_interpolation._periodic_upper_bounds(
coords.horizontal.longitudes, 2 * np.pi)
lat_boundaries = horizontal_interpolation._latitude_cell_bounds(
coords.horizontal.latitudes)
lon_weights = upper_lon_boundaries - lower_lon_boundaries
lat_weights = jnp.sin(lat_boundaries[1:]) - jnp.sin(lat_boundaries[:-1])
self.weights = lat_weights[np.newaxis, :] * lon_weights[:, np.newaxis]
self.scale_by_area = scale_by_area
def __call__(self, inputs: Pytree) -> Pytree:
if self.scale_by_area:
return tree_map(lambda x: self.regrid_fn(x) * self.weights, inputs)
else:
return tree_map(self.regrid_fn, inputs)
@gin.register
class TimeWindowSum(AggregationTransform):
"""Transform that sums temporal blocks of `time_window_size`."""
def __init__(
self,
trajectory_spec: TrajectorySpec,
is_nodal: bool,
is_encoded: bool,
time_window_size: int,
):
trajectory_length = trajectory_spec.trajectory_length
if trajectory_length % time_window_size != 0:
raise ValueError(f'Cannot aggregate {trajectory_length=} '
f'into {time_window_size=} sections.')
new_length = trajectory_spec.trajectory_length // time_window_size
out_trajectory_spec = dataclasses.replace(
trajectory_spec,
trajectory_length=new_length,
steps_per_save=trajectory_spec.steps_per_save * time_window_size)
super().__init__(trajectory_spec, out_trajectory_spec, is_nodal, is_encoded)
eye = np.eye(trajectory_length)
# columns of the weight matrix have 1s in rows that are in the same window.
# see http://screen/8CaZoBVNPtjpwNu for a hint.
self.time_axis_weights = sum(
[np.roll(eye, i, 0) for i in range(time_window_size)]
)[:, ::time_window_size]
def __call__(self, inputs: Pytree) -> Pytree:
def _aggregate_time(x: jax.Array):
return jnp.einsum(
'tk,...thml->...khml', self.time_axis_weights, x, precision='float32')
return tree_map(_aggregate_time, inputs)
|