peirong26's picture
Upload 187 files
2571f24 verified
import torch
from .misc import (
_scaled_dot_product, _convert_to_tensor, _is_finite, _select_initial_step, _handle_unused_kwargs, _is_iterable,
_optimal_step_size, _compute_error_ratio
)
from .solvers import AdaptiveStepsizeODESolver, set_BC_2D, set_BC_3D, add_dBC_2D, add_dBC_3D
from .interp import _interp_fit, _interp_evaluate
from .rk_common import _RungeKuttaState, _ButcherTableau, _runge_kutta_step
_DORMAND_PRINCE_SHAMPINE_TABLEAU = _ButcherTableau(
alpha=[1 / 5, 3 / 10, 4 / 5, 8 / 9, 1., 1.],
beta=[
[1 / 5],
[3 / 40, 9 / 40],
[44 / 45, -56 / 15, 32 / 9],
[19372 / 6561, -25360 / 2187, 64448 / 6561, -212 / 729],
[9017 / 3168, -355 / 33, 46732 / 5247, 49 / 176, -5103 / 18656],
[35 / 384, 0, 500 / 1113, 125 / 192, -2187 / 6784, 11 / 84],
],
c_sol=[35 / 384, 0, 500 / 1113, 125 / 192, -2187 / 6784, 11 / 84, 0],
c_error=[
35 / 384 - 1951 / 21600,
0,
500 / 1113 - 22642 / 50085,
125 / 192 - 451 / 720,
-2187 / 6784 - -12231 / 42400,
11 / 84 - 649 / 6300,
-1. / 60.,
],
)
DPS_C_MID = [
6025192743 / 30085553152 / 2, 0, 51252292925 / 65400821598 / 2, -2691868925 / 45128329728 / 2,
187940372067 / 1594534317056 / 2, -1776094331 / 19743644256 / 2, 11237099 / 235043384 / 2
]
def _interp_fit_dopri5(y0, y1, k, dt, tableau=_DORMAND_PRINCE_SHAMPINE_TABLEAU):
"""Fit an interpolating polynomial to the results of a Runge-Kutta step."""
dt = dt.type_as(y0[0])
y_mid = tuple(y0_ + _scaled_dot_product(dt, DPS_C_MID, k_) for y0_, k_ in zip(y0, k))
f0 = tuple(k_[0] for k_ in k)
f1 = tuple(k_[-1] for k_ in k)
return _interp_fit(y0, y1, y_mid, f0, f1, dt)
def _abs_square(x):
return torch.mul(x, x)
def _ta_append(list_of_tensors, value):
"""Append a value to the end of a list of PyTorch tensors."""
list_of_tensors.append(value)
return list_of_tensors
class Dopri5Solver(AdaptiveStepsizeODESolver):
def __init__(
self, func, y0, rtol, atol, dt, first_step=None, safety=0.9, ifactor=10.0, dfactor=0.2, max_num_steps=2**31 - 1,
options = None
#**unused_kwargs
):
#_handle_unused_kwargs(self, unused_kwargs)
#del unused_kwargs
self.func = func
self.y0 = y0
self.dt = dt #options.dt
'''if 'dirichlet' in options.BC or 'cauchy' in options.BC and options.contours is not None:
self.contours = options.contours # (n_batch, nT, 4 / 6, BC_size, sub_spatial_shape)
self.BC_size = self.contours.size(3)
self.set_BC = set_BC_2D if self.contours.size(2) == 4 else set_BC_3D
else:
self.contours = None
if 'source' in options.BC and options.dcontours is not None:
self.dcontours = options.dcontours # (n_batch, nT, 4 / 6, BC_size, sub_spatial_shape)
self.BC_size = self.dcontours.size(3)
self.add_dBC = add_dBC_2D if self.dcontours.size(2) == 4 else add_dBC_3D
else:
self.dcontours = None'''
#self.adjoint = options.adjoint
self.rtol = rtol if _is_iterable(rtol) else [rtol] * len(y0)
self.atol = atol if _is_iterable(atol) else [atol] * len(y0)
self.first_step = first_step
self.safety = _convert_to_tensor(safety, dtype=torch.float64, device=y0[0].device)
self.ifactor = _convert_to_tensor(ifactor, dtype=torch.float64, device=y0[0].device)
self.dfactor = _convert_to_tensor(dfactor, dtype=torch.float64, device=y0[0].device)
self.max_num_steps = _convert_to_tensor(max_num_steps, dtype=torch.int32, device=y0[0].device)
#self.n_step_record=[]
def before_integrate(self, t):
f0 = self.func(t[0].type_as(self.y0[0]), self.y0)
#print("first_step is {}".format(self.first_step))
if self.first_step is None:
first_step = _select_initial_step(self.func, t[0], self.y0, 4, self.rtol[0], self.atol[0], f0=f0).to(t)
else:
first_step = _convert_to_tensor(0.01, dtype=t.dtype, device=t.device)
# if first_step>0.2:
# print("warning the first step of dopri5 {} is too big, set to 0.2".format(first_step))
# first_step = _convert_to_tensor(0.2, dtype=torch.float64, device=self.y0[0].device)
self.rk_state = _RungeKuttaState(self.y0, f0, t[0], t[0], first_step, interp_coeff=[self.y0] * 5)
def advance(self, next_t):
"""Interpolate through the next time point, integrating as necessary."""
n_steps = 0
while next_t > self.rk_state.t1:
assert n_steps < self.max_num_steps, 'max_num_steps exceeded ({}>={})'.format(n_steps, self.max_num_steps)
self.rk_state = self._adaptive_dopri5_step(self.rk_state)
n_steps += 1
# if len(self.n_step_record)==100:
# print("this dopri5 step info will print every 100 calls, the current average step is {}".format(sum(self.n_step_record)/100))
# self.n_step_record=[]
# else:
# self.n_step_record.append(n_steps)
return _interp_evaluate(self.rk_state.interp_coeff, self.rk_state.t0, self.rk_state.t1, next_t)
def _adaptive_dopri5_step(self, rk_state):
"""Take an adaptive Runge-Kutta step to integrate the DiffEqs."""
y0, f0, _, t0, dt, interp_coeff = rk_state
########################################################
# Assertions #
########################################################
assert t0 + dt > t0, 'underflow in dt {}'.format(dt.item())
# for y0_ in y0:
# #assert _is_finite(torch.abs(y0_)), 'non-finite values in state `y`: {}'.format(y0_)
# is_finite= _is_finite(torch.abs(y0_))
# if not is_finite:
# print(" non-finite elements exist, try to fix")
# y0_[y0_ != y0_] = 0.
# y0_[y0_ == float("Inf")] = 0.
y1, f1, y1_error, k = _runge_kutta_step(self.func, y0, f0, t0, dt, tableau=_DORMAND_PRINCE_SHAMPINE_TABLEAU)
########################################################
# Error Ratio #
########################################################
mean_sq_error_ratio = _compute_error_ratio(y1_error, atol=self.atol, rtol=self.rtol, y0=y0, y1=y1)
accept_step = (torch.tensor(mean_sq_error_ratio) <= 1).all()
########################################################
# Update RK State #
########################################################
dt_next = _optimal_step_size(
dt, mean_sq_error_ratio, safety=self.safety, ifactor=self.ifactor, dfactor=self.dfactor, order=5)
tol_min_dt = 0.2 * self.dt if 0.1 * self.dt >= 0.01 else 0.01
#print('tol min', tol_min_dt)
if not (dt_next< tol_min_dt or dt_next>0.1): #(dt_next<0.01 or dt_next>0.1): #(dt_next<0.02): #not (dt_next<0.02 or dt_next>0.1):
y_next = y1 if accept_step else y0
f_next = f1 if accept_step else f0
t_next = t0 + dt if accept_step else t0
interp_coeff = _interp_fit_dopri5(y0, y_next, k, dt) if accept_step else interp_coeff
else:
if dt_next< tol_min_dt: #dt_next<0.01: # 0.01
#print("Dopri5 step %.3f too small, set to %.3f" % (dt_next, 0.2 * self.dt))
dt_next = _convert_to_tensor(tol_min_dt, dtype=torch.float64, device=y0[0].device)
if dt_next>0.1:
#print("Dopri5 step %.8f is too big, set to 0.1" % (dt_next))
dt_next = _convert_to_tensor(0.1, dtype=torch.float64, device=y0[0].device)
y_next = y1
f_next = f1
t_next = t0 + dt
interp_coeff = _interp_fit_dopri5(y0, y1, k, dt)
rk_state = _RungeKuttaState(y_next, f_next, t0, t_next, dt_next, interp_coeff)
#print('dt_next', dt_next)
return rk_state