Skip to content

10. Base Classes for Operators

torchfsm.operator.LinearCoef ¤

Bases: ABC

Abstract class for linear coefficients.

Source code in torchfsm/operator/_base.py
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
class LinearCoef(ABC):
    r"""
    Abstract class for linear coefficients.
    """

    @abstractmethod
    def __call__(
        self, f_mesh: FourierMesh, n_channel: int
    ) -> FourierTensor["B C H ..."]:
        r"""
        Abstract method to be implemented by subclasses. It should define the linear coefficient tensor.

        Args:
            f_mesh (FourierMesh): Fourier mesh object.
            n_channel (int): Number of channels of the input tensor.

        Returns:
            FourierTensor: Linear coefficient tensor.
        """

        raise NotImplementedError

    def nonlinear_like(
        self,
        u_fft: FourierTensor["B C H ..."],
        f_mesh: FourierMesh,
        u: Optional[SpatialTensor["B C H ..."]] = None,
    ) -> FourierTensor["B C H ..."]:
        r"""
        Calculate the result out based on the linear coefficient. It is designed to have same pattern as the nonlinear function.

        Args:
            u_fft (FourierTensor): Fourier-transformed input tensor.
            f_mesh (FourierMesh): Fourier mesh object.
            u (Optional[SpatialTensor]): Corresponding tensor of u_fft in spatial domain. This option aims to avoid repeating the inverse FFT operation in operators.

        Returns:
            FourierTensor: Nonlinear-like tensor.
        """
        return self(f_mesh, u_fft.shape[1]) * u_fft
__call__ abstractmethod ¤
__call__(
    f_mesh: FourierMesh, n_channel: int
) -> FourierTensor["B C H ..."]

Abstract method to be implemented by subclasses. It should define the linear coefficient tensor.

Parameters:

Name Type Description Default
f_mesh FourierMesh

Fourier mesh object.

required
n_channel int

Number of channels of the input tensor.

required

Returns:

Name Type Description
FourierTensor FourierTensor['B C H ...']

Linear coefficient tensor.

Source code in torchfsm/operator/_base.py
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@abstractmethod
def __call__(
    self, f_mesh: FourierMesh, n_channel: int
) -> FourierTensor["B C H ..."]:
    r"""
    Abstract method to be implemented by subclasses. It should define the linear coefficient tensor.

    Args:
        f_mesh (FourierMesh): Fourier mesh object.
        n_channel (int): Number of channels of the input tensor.

    Returns:
        FourierTensor: Linear coefficient tensor.
    """

    raise NotImplementedError
nonlinear_like ¤
nonlinear_like(
    u_fft: FourierTensor["B C H ..."],
    f_mesh: FourierMesh,
    u: Optional[SpatialTensor["B C H ..."]] = None,
) -> FourierTensor["B C H ..."]

Calculate the result out based on the linear coefficient. It is designed to have same pattern as the nonlinear function.

Parameters:

Name Type Description Default
u_fft FourierTensor

Fourier-transformed input tensor.

required
f_mesh FourierMesh

Fourier mesh object.

required
u Optional[SpatialTensor]

Corresponding tensor of u_fft in spatial domain. This option aims to avoid repeating the inverse FFT operation in operators.

None

Returns:

Name Type Description
FourierTensor FourierTensor['B C H ...']

Nonlinear-like tensor.

Source code in torchfsm/operator/_base.py
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
def nonlinear_like(
    self,
    u_fft: FourierTensor["B C H ..."],
    f_mesh: FourierMesh,
    u: Optional[SpatialTensor["B C H ..."]] = None,
) -> FourierTensor["B C H ..."]:
    r"""
    Calculate the result out based on the linear coefficient. It is designed to have same pattern as the nonlinear function.

    Args:
        u_fft (FourierTensor): Fourier-transformed input tensor.
        f_mesh (FourierMesh): Fourier mesh object.
        u (Optional[SpatialTensor]): Corresponding tensor of u_fft in spatial domain. This option aims to avoid repeating the inverse FFT operation in operators.

    Returns:
        FourierTensor: Nonlinear-like tensor.
    """
    return self(f_mesh, u_fft.shape[1]) * u_fft

torchfsm.operator.NonlinearFunc ¤

Bases: ABC

Abstract class for nonlinear functions.

Parameters:

Name Type Description Default
dealiasing_swtich bool

Whether to apply dealiasing. Default is True. If True, the dealiased version of u_fft will be input to the function in operator. If False, the original u_fft will be used.

True
Source code in torchfsm/operator/_base.py
 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
class NonlinearFunc(ABC):
    r"""
    Abstract class for nonlinear functions.

    Args:
        dealiasing_swtich (bool): Whether to apply dealiasing. Default is True.
            If True, the dealiased version of u_fft will be input to the function in operator.
            If False, the original u_fft will be used.
    """

    def __init__(self, dealiasing_swtich: bool = True) -> None:
        self._dealiasing_swtich = dealiasing_swtich

    @abstractmethod
    def __call__(
        self,
        u_fft: FourierTensor["B C H ..."],
        f_mesh: FourierMesh,
        u: Optional[SpatialTensor["B C H ..."]] = None,
    ) -> FourierTensor["B C H ..."]:
        r"""
        Abstract method to be implemented by subclasses. It should define the nonlinear function.

        Args:
            u_fft (FourierTensor): Fourier-transformed input tensor.
            f_mesh (FourierMesh): Fourier mesh object.
            u (Optional[SpatialTensor]): Corresponding tensor of u_fft in spatial domain. This option aims to avoid repeating the inverse FFT operation in operators.

        Returns:
            FourierTensor: Result of the nonlinear function.
        """
        raise NotImplementedError

    def spatial_value(
        self,
        u_fft: FourierTensor["B C H ..."],
        f_mesh: FourierMesh,
        u: Optional[SpatialTensor["B C H ..."]] = None,
    ) -> SpatialTensor["B C H ..."]:
        r"""
        Return the result of the nonlinear function in spatial domain.

        Args:
            u_fft (FourierTensor): Fourier-transformed input tensor.
            f_mesh (FourierMesh): Fourier mesh object.
            u (Optional[SpatialTensor]): Corresponding tensor of u_fft in spatial domain. This option aims to avoid repeating the inverse FFT operation in operators.

        Returns:
            SpatialTensor: Result of the nonlinear function in spatial domain.
        """

        return f_mesh.ifft(self(u_fft, f_mesh, u)).real
__init__ ¤
__init__(dealiasing_swtich: bool = True) -> None
Source code in torchfsm/operator/_base.py
67
68
def __init__(self, dealiasing_swtich: bool = True) -> None:
    self._dealiasing_swtich = dealiasing_swtich
__call__ abstractmethod ¤
__call__(
    u_fft: FourierTensor["B C H ..."],
    f_mesh: FourierMesh,
    u: Optional[SpatialTensor["B C H ..."]] = None,
) -> FourierTensor["B C H ..."]

Abstract method to be implemented by subclasses. It should define the nonlinear function.

Parameters:

Name Type Description Default
u_fft FourierTensor

Fourier-transformed input tensor.

required
f_mesh FourierMesh

Fourier mesh object.

required
u Optional[SpatialTensor]

Corresponding tensor of u_fft in spatial domain. This option aims to avoid repeating the inverse FFT operation in operators.

None

Returns:

Name Type Description
FourierTensor FourierTensor['B C H ...']

Result of the nonlinear function.

Source code in torchfsm/operator/_base.py
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
@abstractmethod
def __call__(
    self,
    u_fft: FourierTensor["B C H ..."],
    f_mesh: FourierMesh,
    u: Optional[SpatialTensor["B C H ..."]] = None,
) -> FourierTensor["B C H ..."]:
    r"""
    Abstract method to be implemented by subclasses. It should define the nonlinear function.

    Args:
        u_fft (FourierTensor): Fourier-transformed input tensor.
        f_mesh (FourierMesh): Fourier mesh object.
        u (Optional[SpatialTensor]): Corresponding tensor of u_fft in spatial domain. This option aims to avoid repeating the inverse FFT operation in operators.

    Returns:
        FourierTensor: Result of the nonlinear function.
    """
    raise NotImplementedError
spatial_value ¤
spatial_value(
    u_fft: FourierTensor["B C H ..."],
    f_mesh: FourierMesh,
    u: Optional[SpatialTensor["B C H ..."]] = None,
) -> SpatialTensor["B C H ..."]

Return the result of the nonlinear function in spatial domain.

Parameters:

Name Type Description Default
u_fft FourierTensor

Fourier-transformed input tensor.

required
f_mesh FourierMesh

Fourier mesh object.

required
u Optional[SpatialTensor]

Corresponding tensor of u_fft in spatial domain. This option aims to avoid repeating the inverse FFT operation in operators.

None

Returns:

Name Type Description
SpatialTensor SpatialTensor['B C H ...']

Result of the nonlinear function in spatial domain.

Source code in torchfsm/operator/_base.py
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
def spatial_value(
    self,
    u_fft: FourierTensor["B C H ..."],
    f_mesh: FourierMesh,
    u: Optional[SpatialTensor["B C H ..."]] = None,
) -> SpatialTensor["B C H ..."]:
    r"""
    Return the result of the nonlinear function in spatial domain.

    Args:
        u_fft (FourierTensor): Fourier-transformed input tensor.
        f_mesh (FourierMesh): Fourier mesh object.
        u (Optional[SpatialTensor]): Corresponding tensor of u_fft in spatial domain. This option aims to avoid repeating the inverse FFT operation in operators.

    Returns:
        SpatialTensor: Result of the nonlinear function in spatial domain.
    """

    return f_mesh.ifft(self(u_fft, f_mesh, u)).real

torchfsm.operator.CoreGenerator ¤

Bases: ABC

Abstract class for core generator. A core generator is a callable that generates a linear coefficient or a nonlinear function based on the Fourier mesh and channels of the tensor.

Source code in torchfsm/operator/_base.py
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
class CoreGenerator(ABC):
    r"""
    Abstract class for core generator. A core generator is a callable that generates a linear coefficient or a nonlinear function based on the Fourier mesh and channels of the tensor.
    """

    @abstractmethod
    def __call__(
        self, f_mesh: FourierMesh, n_channel: int
    ) -> Union[LinearCoef, NonlinearFunc]:
        r"""
        Abstract method to be implemented by subclasses. It should define the core generator.

        Args:
            f_mesh (FourierMesh): Fourier mesh object.
            n_channel (int): Number of channels of the input tensor.

        Returns:
            Union[LinearCoef, NonlinearFunc]: Linear coefficient or nonlinear function.
        """
        raise NotImplementedError
__call__ abstractmethod ¤
__call__(
    f_mesh: FourierMesh, n_channel: int
) -> Union[LinearCoef, NonlinearFunc]

Abstract method to be implemented by subclasses. It should define the core generator.

Parameters:

Name Type Description Default
f_mesh FourierMesh

Fourier mesh object.

required
n_channel int

Number of channels of the input tensor.

required

Returns:

Type Description
Union[LinearCoef, NonlinearFunc]

Union[LinearCoef, NonlinearFunc]: Linear coefficient or nonlinear function.

Source code in torchfsm/operator/_base.py
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
@abstractmethod
def __call__(
    self, f_mesh: FourierMesh, n_channel: int
) -> Union[LinearCoef, NonlinearFunc]:
    r"""
    Abstract method to be implemented by subclasses. It should define the core generator.

    Args:
        f_mesh (FourierMesh): Fourier mesh object.
        n_channel (int): Number of channels of the input tensor.

    Returns:
        Union[LinearCoef, NonlinearFunc]: Linear coefficient or nonlinear function.
    """
    raise NotImplementedError

torchfsm.operator._base._MutableMixIn ¤

Mixin class for mutable operations. This class supports basic arithmetic operations for the operator.

Source code in torchfsm/operator/_base.py
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
class _MutableMixIn:
    r"""
    Mixin class for mutable operations. This class supports basic arithmetic operations for the operator.
    """

    def __radd__(self, other):
        return self + other

    def __iadd__(self, other):
        return self + other

    def __sub__(self, other):
        try:
            return self + (-1 * other)
        except Exception:
            return NotImplemented

    def __rsub__(self, other):
        try:
            return other + (-1 * self)
        except Exception:
            return NotImplemented

    def __isub__(self, other):
        return self - other

    def __rmul__(self, other):
        return self * other

    def __imul__(self, other):
        return self * other

    def __truediv__(self, other):
        try:
            return self * (1 / other)
        except:
            return NotImplemented
__radd__ ¤
__radd__(other)
Source code in torchfsm/operator/_base.py
174
175
def __radd__(self, other):
    return self + other
__iadd__ ¤
__iadd__(other)
Source code in torchfsm/operator/_base.py
177
178
def __iadd__(self, other):
    return self + other
__sub__ ¤
__sub__(other)
Source code in torchfsm/operator/_base.py
180
181
182
183
184
def __sub__(self, other):
    try:
        return self + (-1 * other)
    except Exception:
        return NotImplemented
__rsub__ ¤
__rsub__(other)
Source code in torchfsm/operator/_base.py
186
187
188
189
190
def __rsub__(self, other):
    try:
        return other + (-1 * self)
    except Exception:
        return NotImplemented
__isub__ ¤
__isub__(other)
Source code in torchfsm/operator/_base.py
192
193
def __isub__(self, other):
    return self - other
__rmul__ ¤
__rmul__(other)
Source code in torchfsm/operator/_base.py
195
196
def __rmul__(self, other):
    return self * other
__imul__ ¤
__imul__(other)
Source code in torchfsm/operator/_base.py
198
199
def __imul__(self, other):
    return self * other
__truediv__ ¤
__truediv__(other)
Source code in torchfsm/operator/_base.py
201
202
203
204
205
def __truediv__(self, other):
    try:
        return self * (1 / other)
    except:
        return NotImplemented

torchfsm.operator._base._InverseSolveMixin ¤

Source code in torchfsm/operator/_base.py
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
class _InverseSolveMixin:
    _state_dict: Optional[dict]
    register_mesh: Callable

    r"""
    Mixin class for inverse solving operations. This class supports solving the linear operator equation.
    """

    def solve(
        self,
        b: Optional[torch.Tensor] = None,
        b_fft: Optional[torch.Tensor] = None,
        mesh: Optional[
            Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]
        ] = None,
        n_channel: Optional[int] = None,
        return_in_fourier=False,
    ) -> Union[SpatialTensor["B C H ..."], SpatialTensor["B C H ..."]]:
        r"""
        Solve the linear operator equation $Ax = b$, where $A$ is the linear operator and $b$ is the right-hand side.

        Args:
            b (Optional[torch.Tensor]): Right-hand side tensor in spatial domain. If None, b_fft should be provided.
            b_fft (Optional[torch.Tensor]): Right-hand side tensor in Fourier domain. If None, b should be provided.
            mesh (Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]): Mesh information or mesh object. If None, the mesh registered in the operator will be used.
            n_channel (Optional[int]): Number of channels of $x$. If None, the number of channels registered in the operator will be used.
            return_in_fourier (bool): If True, return the result in Fourier domain. If False, return the result in spatial domain.

        Returns:
            Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]: Solution tensor in spatial or Fourier domain.
        """
        if not (mesh is not None and n_channel is not None):
            assert (
                self._state_dict["f_mesh"] is not None
            ), "Mesh and n_channel should be given when calling solve"
        if not (mesh is None and n_channel is None):
            mesh = self._state_dict["f_mesh"] if mesh is None else mesh
            n_channel = (
                self._state_dict["n_channel"] if n_channel is None else n_channel
            )
            self.register_mesh(mesh, n_channel)
        if self._state_dict["invert_linear_coef"] is None:
            self._state_dict["invert_linear_coef"] = torch.where(
                self._state_dict["linear_coef"] == 0,
                1.0,
                1 / self._state_dict["linear_coef"],
            )
        if b_fft is None:
            b_fft = self._state_dict["f_mesh"].fft(b)
        value_fft = b_fft * self._state_dict["invert_linear_coef"]
        if return_in_fourier:
            return value_fft
        else:
            return self._state_dict["f_mesh"].ifft(value_fft).real
register_mesh instance-attribute ¤
register_mesh: Callable

Mixin class for inverse solving operations. This class supports solving the linear operator equation.

solve ¤
solve(
    b: Optional[Tensor] = None,
    b_fft: Optional[Tensor] = None,
    mesh: Optional[
        Union[
            Sequence[tuple[float, float, int]],
            MeshGrid,
            FourierMesh,
        ]
    ] = None,
    n_channel: Optional[int] = None,
    return_in_fourier=False,
) -> Union[
    SpatialTensor["B C H ..."], SpatialTensor["B C H ..."]
]

Solve the linear operator equation \(Ax = b\), where \(A\) is the linear operator and \(b\) is the right-hand side.

Parameters:

Name Type Description Default
b Optional[Tensor]

Right-hand side tensor in spatial domain. If None, b_fft should be provided.

None
b_fft Optional[Tensor]

Right-hand side tensor in Fourier domain. If None, b should be provided.

None
mesh Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]

Mesh information or mesh object. If None, the mesh registered in the operator will be used.

None
n_channel Optional[int]

Number of channels of \(x\). If None, the number of channels registered in the operator will be used.

None
return_in_fourier bool

If True, return the result in Fourier domain. If False, return the result in spatial domain.

False

Returns:

Type Description
Union[SpatialTensor['B C H ...'], SpatialTensor['B C H ...']]

Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]: Solution tensor in spatial or Fourier domain.

Source code in torchfsm/operator/_base.py
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
def solve(
    self,
    b: Optional[torch.Tensor] = None,
    b_fft: Optional[torch.Tensor] = None,
    mesh: Optional[
        Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]
    ] = None,
    n_channel: Optional[int] = None,
    return_in_fourier=False,
) -> Union[SpatialTensor["B C H ..."], SpatialTensor["B C H ..."]]:
    r"""
    Solve the linear operator equation $Ax = b$, where $A$ is the linear operator and $b$ is the right-hand side.

    Args:
        b (Optional[torch.Tensor]): Right-hand side tensor in spatial domain. If None, b_fft should be provided.
        b_fft (Optional[torch.Tensor]): Right-hand side tensor in Fourier domain. If None, b should be provided.
        mesh (Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]): Mesh information or mesh object. If None, the mesh registered in the operator will be used.
        n_channel (Optional[int]): Number of channels of $x$. If None, the number of channels registered in the operator will be used.
        return_in_fourier (bool): If True, return the result in Fourier domain. If False, return the result in spatial domain.

    Returns:
        Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]: Solution tensor in spatial or Fourier domain.
    """
    if not (mesh is not None and n_channel is not None):
        assert (
            self._state_dict["f_mesh"] is not None
        ), "Mesh and n_channel should be given when calling solve"
    if not (mesh is None and n_channel is None):
        mesh = self._state_dict["f_mesh"] if mesh is None else mesh
        n_channel = (
            self._state_dict["n_channel"] if n_channel is None else n_channel
        )
        self.register_mesh(mesh, n_channel)
    if self._state_dict["invert_linear_coef"] is None:
        self._state_dict["invert_linear_coef"] = torch.where(
            self._state_dict["linear_coef"] == 0,
            1.0,
            1 / self._state_dict["linear_coef"],
        )
    if b_fft is None:
        b_fft = self._state_dict["f_mesh"].fft(b)
    value_fft = b_fft * self._state_dict["invert_linear_coef"]
    if return_in_fourier:
        return value_fft
    else:
        return self._state_dict["f_mesh"].ifft(value_fft).real

torchfsm.operator._base._DeAliasMixin ¤

Source code in torchfsm/operator/_base.py
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
class _DeAliasMixin:
    _de_aliasing_rate: float
    _state_dict: Optional[dict]

    r"""
    Mixin class for de-aliasing operations. This class supports setting the de-aliasing rate for the nonlinear operator.
    """

    def set_de_aliasing_rate(self, de_aliasing_rate: float):
        r"""
        Set the de-aliasing rate for the nonlinear operator.
        Args:
            de_aliasing_rate (float): De-aliasing rate. Default is 2/3.
        """

        self._de_aliasing_rate = de_aliasing_rate
        self._state_dict = {key:None for key in self._state_dict.keys()}
set_de_aliasing_rate ¤
set_de_aliasing_rate(de_aliasing_rate: float)

Set the de-aliasing rate for the nonlinear operator. Args: de_aliasing_rate (float): De-aliasing rate. Default is ⅔.

Source code in torchfsm/operator/_base.py
272
273
274
275
276
277
278
279
280
def set_de_aliasing_rate(self, de_aliasing_rate: float):
    r"""
    Set the de-aliasing rate for the nonlinear operator.
    Args:
        de_aliasing_rate (float): De-aliasing rate. Default is 2/3.
    """

    self._de_aliasing_rate = de_aliasing_rate
    self._state_dict = {key:None for key in self._state_dict.keys()}

torchfsm.operator.OperatorLike ¤

Bases: _MutableMixIn

Base class for All Operators.

Parameters:

Name Type Description Default
operator_cores Optional[ValueList[Union[LinearCoef, NonlinearFunc, GeneratorLike]]]

List of operator generators/LinearCoef/NonLinearFunc. Default is None. that represent the real manipulations.

None
coefs Optional[List]

List of coefficients for each operator_core. Default is None. If None, all coefficients are set to 1. The length of the list should match the number of operator_core.

None
Source code in torchfsm/operator/_base.py
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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
class OperatorLike(_MutableMixIn):
    r"""
    Base class for All Operators.

    Args:
        operator_cores (Optional[ValueList[Union[LinearCoef, NonlinearFunc, GeneratorLike]]]): List of operator generators/LinearCoef/NonLinearFunc. Default is None.
            that represent the real manipulations.
        coefs (Optional[List]): List of coefficients for each operator_core. Default is None.
            If None, all coefficients are set to 1.
            The length of the list should match the number of operator_core.

    """

    def __init__(
        self,
        operator_cores: Optional[ValueList[Union[LinearCoef, NonlinearFunc, GeneratorLike]]] = None,
        coefs: Optional[List] = None,
    ) -> None:
        super().__init__()
        self.operator_cores = default(operator_cores, [])
        if not isinstance(self.operator_cores, list):
            self.operator_cores = [self.operator_cores]
        self.coefs = default(coefs, [1] * len(self.operator_cores))
        self._state_dict = {
            "f_mesh": None,
            "n_channel": None,
            "linear_coef": None,
            "nonlinear_func": None,
            "operator": None,
            "integrator": None,
            "invert_linear_coef": None,
        }
        self._de_aliasing_rate = 2 / 3
        self._value_mesh_check_func = lambda dim_value, dim_mesh: True
        self._integrator = "auto"
        self._integrator_config = {}
        self._is_etdrk_integrator = True

    @property
    def is_linear(self) -> bool:
        r"""
        Check if the operator is linear.

        Returns:
            bool: True if the operator is linear, False otherwise.
        """
        assert (
            self._state_dict["f_mesh"] is not None
        ), "Mesh should be registered before checking if the operator is linear"
        return (
            self._state_dict["nonlinear_func"] is None
            and self._state_dict["linear_coef"] is not None
        )

    def _build_linear_coefs(self, linear_coefs: Optional[Sequence[LinearCoef]]):
        r"""
        Build the linear coefficients.

        Args:
            linear_coefs (Optional[Sequence[LinearCoef]]): List of linear coefficients.

        """
        if len(linear_coefs) == 0:
            linear_coefs = None
        else:
            linear_coefs = sum(
                [
                    coef * op(self._state_dict["f_mesh"], self._state_dict["n_channel"])
                    for coef, op in linear_coefs
                ]
            )
        self._state_dict["linear_coef"] = linear_coefs
        clean_up_memory()

    def _build_nonlinear_funcs(
        self, nonlinear_funcs: Optional[Sequence[NonlinearFunc]]
    ):
        r"""
        Build the nonlinear functions.

        Args:
            nonlinear_funcs (Optional[Sequence[NonlinearFunc]]): List of nonlinear functions
        """
        if len(nonlinear_funcs) == 0:
            nonlinear_funcs_all = None
        else:
            self._state_dict["f_mesh"].set_default_rel_freq_threshold(
                self._de_aliasing_rate
            )

            def nonlinear_funcs_all(u_fft):
                result = 0.0
                dealiased_u_fft = None
                dealiased_u = None
                u = None
                for coef, fun in nonlinear_funcs:
                    if fun._dealiasing_swtich:
                        if dealiased_u_fft is None:
                            dealiased_u_fft = u_fft * self._state_dict[
                                "f_mesh"
                            ].low_pass_filter(self._de_aliasing_rate)
                            dealiased_u = (
                                self._state_dict["f_mesh"].ifft(dealiased_u_fft).real
                            )
                        result += coef * fun(
                            dealiased_u_fft,
                            self._state_dict["f_mesh"],
                            dealiased_u,
                        )
                    else:
                        if u is None:
                            u = self._state_dict["f_mesh"].ifft(u_fft).real
                        result += coef * fun(
                            u_fft,
                            self._state_dict["f_mesh"],
                            u,
                        )

                return result

        self._state_dict["nonlinear_func"] = nonlinear_funcs_all
        clean_up_memory()

    def _build_operator(self):
        r"""
        Build the operator based on the linear coefficient and nonlinear function.
        If both linear coefficient and nonlinear function are None, the operator is set to None.
        """
        if self._state_dict["nonlinear_func"] is None:

            def operator(u_fft):
                return self._state_dict["linear_coef"] * u_fft

        elif self._state_dict["linear_coef"] is None:

            def operator(u_fft):
                return self._state_dict["nonlinear_func"](u_fft)

        elif (
            self._state_dict["nonlinear_func"] is not None
            and self._state_dict["linear_coef"] is not None
        ):

            def operator(u_fft):
                return self._state_dict["linear_coef"] * u_fft + self._state_dict[
                    "nonlinear_func"
                ](u_fft)

        else:
            raise ValueError(
                "Both linear coefficient and nonlinear function are None. Cannot build operator."
            )

        self._state_dict["operator"] = operator
        clean_up_memory()

    def _build_integrator(
        self,
        dt: float,
    ):
        r"""
        Build the integrator based on the provided time step and integrator type.

        Args:
            dt (float): Time step for the integrator.
        """
        if self._integrator == "auto":
            if self.is_linear:
                solver = ETDRKIntegrator.ETDRK0
            else:
                solver = SETDRKIntegrator.SETDRK4
        else:
            solver = self._integrator
        self._is_etdrk_integrator = isinstance(solver, ETDRKIntegrator) or isinstance(
            solver, SETDRKIntegrator
        )
        try:
            if self._is_etdrk_integrator:
                if solver == ETDRKIntegrator.ETDRK0:
                    assert (
                        self.is_linear
                    ), "The ETDRK0 integrator only supports linear term"
                    self._state_dict["integrator"] = solver.value(
                        dt,
                        self._state_dict["linear_coef"],
                        **self._integrator_config,
                    )
                else:
                    if self._state_dict["linear_coef"] is None:
                        linear_coef = torch.tensor(
                            [0.0],
                            dtype=self._state_dict["f_mesh"].dtype,
                            device=self._state_dict["f_mesh"].device,
                        )
                    else:
                        linear_coef = self._state_dict["linear_coef"]
                    self._state_dict["integrator"] = solver.value(
                        dt,
                        linear_coef,
                        self._state_dict["nonlinear_func"],
                        **self._integrator_config,
                    )
                setattr(
                    self._state_dict["integrator"],
                    "forward",
                    lambda u_fft, dt: self._state_dict["integrator"].step(u_fft),
                )
            elif isinstance(solver, RKIntegrator):
                if self._state_dict["operator"] is None:
                    self._build_operator()
                self._state_dict["integrator"] = solver.value(**self._integrator_config)
                setattr(
                    self._state_dict["integrator"],
                    "forward",
                    lambda u_fft, dt: self._state_dict["integrator"].step(
                        self._state_dict["operator"], u_fft, dt
                    ),
                )
            else:
                raise ValueError(
                    "The integrator should be 'auto' or an instance of ETDRKIntegrator, SETDRKIntegrator or RKIntegrator"
                )
        except TorchOutOfMemoryError as e:
            error_msg = ["Cuda out of memory when building the integrator."]
            error_msg.append("Original error message: {}".format(str(e)))
            if isinstance(solver, SETDRKIntegrator):
                error_msg.append(
                    "Since you are using SETDRKIntegrator, there are some options to reduce the memory usage:"
                )
                error_msg.append(
                    "1. set the `cpu_cached` to True when call `Operator.set_integrator(). This will slow down the integrator building speed but not effect the integration speed. However, it will increase the CPU memory usage when building the solver."
                )
                error_msg.append(
                    "2. set the `n_integration_points` to a smaller number when call `Operator.set_integrator(). This will effect the stability of the integrator."
                )
                error_msg.append(
                    "3. Use other integrators, such as ETDRKIntegrator or RKIntegrator or low-order SETDRK. They are more memory efficient but may not be as accurate as SETDRKIntegrator."
                )
            else:
                error_msg.append("Please try to use a smaller mesh or a low-order integrator.")
            raise OutOfMemoryError(os.linesep.join(error_msg))
        clean_up_memory()

    def _pre_check(
        self,
        u: Optional[SpatialTensor["B C H ..."]] = None,
        u_fft: Optional[FourierTensor["B C H ..."]] = None,
        mesh: Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh] = None,
    ) -> Tuple[FourierMesh, int]:
        r"""
        Pre-check the input tensor and mesh. If the mesh is not registered, register it.

        Args:
            u (Optional[SpatialTensor]): Input tensor in spatial domain. Default is None.
            u_fft (Optional[FourierTensor]): Input tensor in Fourier domain. Default is None.
                At least one of u or u_fft should be provided.
            mesh (Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]): Mesh information or mesh object. Default is None.
                If None, the mesh registered in the operator will be used.

        Returns:
            Tuple[FourierMesh, int]: Tuple of Fourier mesh and number of channels.
        """

        if u_fft is None and u is None:
            raise ValueError("Either u or u_fft should be given")
        if u_fft is not None and u is not None:
            assert u.shape == u_fft.shape, "The shape of u and u_fft should be the same"
        assert mesh is not None, "Mesh should be given"
        value_device = u.device if u is not None else u_fft.device
        value_dtype = u.dtype if u is not None else u_fft.dtype
        if not isinstance(mesh, FourierMesh):
            if not isinstance(mesh, MeshGrid):
                mesh = FourierMesh(mesh, device=value_device, dtype=value_dtype)
            else:
                mesh = FourierMesh(mesh)
        n_channel = u.shape[1] if u is not None else u_fft.shape[1]
        value_shape = u.shape if u is not None else u_fft.shape
        assert (
            len(value_shape) == mesh.n_dim + 2
        ), f"the value shape {value_shape} is not compatible with mesh dim {mesh.n_dim}"
        for i in range(mesh.n_dim):
            assert (
                value_shape[i + 2] == mesh.mesh_info[i][2]
            ), f"Expect to have {mesh.mesh_info[i][2]} points in dim {i} but got {value_shape[i+2]}"
        assert (
            value_device == mesh.device
        ), "The device of mesh {} and the device of value {} are not the same".format(
            mesh.device, value_device
        )
        # assert value_dtype==mesh.dtype, "The dtype of mesh {} and the dtype of value {} are not the same".format(mesh.dtype,value_dtype)
        # value fft is a complex dtype
        assert self._value_mesh_check_func(
            len(value_shape) - 2, mesh.n_dim
        ), "Value and mesh do not match the requirement"
        return mesh, n_channel

    def register_mesh(
        self,
        mesh: Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh],
        n_channel: int,
        device=None,
        dtype=None,
    ):
        r"""
        Register the mesh and number of channels for the operator. Once a mesh is registered, mesh information is not required for integration and operator call.

        Args:
            mesh (Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]): Mesh information or mesh object.
            n_channel (int): Number of channels of the input tensor.
            device (Optional[torch.device]): Device to which the mesh should be moved. Default is None.
            dtype (Optional[torch.dtype]): Data type of the mesh. Default is None.
        """
        if isinstance(mesh, FourierMesh):
            f_mesh = mesh
            if device is not None or dtype is not None:
                f_mesh.to(device=device, dtype=dtype)
        else:
            f_mesh = FourierMesh(mesh, device=device, dtype=dtype)
        for key in self._state_dict:
            self._state_dict[key] = None
        self._state_dict.update(
            {
                "f_mesh": f_mesh,
                "n_channel": n_channel,
            }
        )
        linear_coefs = []
        nonlinear_funcs = []
        for coef, core in zip(self.coefs, self.operator_cores):
            op = (
                core(f_mesh, n_channel)
                if (
                    not isinstance(core, LinearCoef)
                    and not isinstance(core, NonlinearFunc)
                )
                else core
            )
            if isinstance(op, LinearCoef):
                linear_coefs.append((coef, op))
            elif isinstance(op, NonlinearFunc):
                nonlinear_funcs.append((coef, op))
            else:
                raise ValueError(f"Operator {op} is not supported")
        clean_up_memory()
        self._build_linear_coefs(linear_coefs)
        self._build_nonlinear_funcs(nonlinear_funcs)

    def register_additional_check(self, func: Callable[[int, int], bool]):
        r"""
        Register an additional check function for the value and mesh compatibility.

        Args:
            func (Callable[[int, int], bool]): Function that takes the dimension of the value and mesh as input and returns a boolean indicating whether they are compatible.
        """
        self._value_mesh_check_func = func

    def add_core(self,core:Union[LinearCoef,NonlinearFunc,GeneratorLike],coef=1):
        r"""
        Add a generator to the operator.

        Args:
            core (Union[LinearCoef,NonlinearFunc,GeneratorLike]): Core to be added. 
            coef (float): Coefficient for the generator. Default is 1.
        """
        self.operator_cores.append(core)
        self.coefs.append(coef)

    def set_integrator(
        self,
        integrator: Union[
            Literal["auto"], ETDRKIntegrator, SETDRKIntegrator, RKIntegrator
        ],
        **integrator_config,
    ):
        r"""
        Set the integrator for the operator. The integrator is used for time integration of the operator.

        Args:
            integrator (Union[Literal["auto"], ETDRKIntegrator, SETDRKIntegrator, RKIntegrator]): Integrator to be used. If "auto", the integrator will be chosen automatically based on the operator type.
                If "auto", the integrator will be set as ETDRKIntegrator.ETDRK0 for linear operators and ETDRKIntegrator.ETDRK2 for nonlinear operators.
            **integrator_config: Additional configuration for the integrator.
        """

        if isinstance(integrator, str):
            assert (
                integrator == "auto"
            ), "The integrator should be 'auto' or an instance of ETDRKIntegrator, SETDRKIntegrator or RKIntegrator"
        else:
            assert (
                isinstance(integrator, ETDRKIntegrator)
                or isinstance(integrator, SETDRKIntegrator)
                or isinstance(integrator, RKIntegrator)
            ), "The integrator should be 'auto' or an instance of ETDRKIntegrator, SETDRKIntegrator or RKIntegrator"
        self._integrator = integrator
        self._integrator_config = integrator_config
        self._state_dict["integrator"] = None

    def integrate(
        self,
        u_0: Optional[torch.Tensor] = None,
        u_0_fft: Optional[torch.Tensor] = None,
        dt: float = 1,
        step: int = 1,
        mesh: Optional[
            Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]
        ] = None,
        progressive: bool = False,
        trajectory_recorder: Optional[_TrajRecorder] = None,
        return_in_fourier: bool = False,
        nan_check: bool = False,
    ) -> Union[
        SpatialTensor["B C H ..."],
        SpatialTensor["B T C H ..."],
        FourierTensor["B C H ..."],
        FourierTensor["B T C H ..."],
    ]:
        r"""
        Integrate the operator using the provided initial condition and time step.

        Args:
            u_0 (Optional[torch.Tensor]): Initial condition in spatial domain. Default is None.
            u_0_fft (Optional[torch.Tensor]): Initial condition in Fourier domain. Default is None.
                At least one of u_0 or u_0_fft should be provided.
            dt (float): Time step for the integrator. Default is 1.
            step (int): Number of time steps to integrate. Default is 1.
            mesh (Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]): Mesh information or mesh object. Default is None.
                If None, the mesh registered in the operator will be used. You can use `register_mesh` to register a mesh before integration.
            progressive (bool): If True, show a progress bar during integration. Default is False.
            trajectory_recorder (Optional[_TrajRecorder]): Trajectory recorder for recording the trajectory during integration. Default is None.
                If None, no trajectory will be recorded. The function will only return the final frame.
            return_in_fourier (bool): If True, return the result in Fourier domain. If False, return the result in spatial domain. Default is False.
            Nan_check (bool): If True, check for NaN values in the result. If NaN values are found, raise a NanSimulationError. Default is False.

        Returns:
            Union[SpatialTensor["B C H ..."], SpatialTensor["B T C H ..."], FourierTensor["B C H ..."], FourierTensor["B T C H ..."]]: Integrated result in spatial or Fourier domain.
                If trajectory_recorder is provided, the result will be a trajectory tensor of shape (B, T, C, H, ...). Otherwise, the result will be a tensor of shape (B, C, H, ...).
                If return_in_fourier is True, the result will be in Fourier domain. Otherwise, it will be in spatial domain.

        """
        if self._state_dict["f_mesh"] is None or mesh is not None:
            mesh, n_channel = self._pre_check(u=u_0, u_fft=u_0_fft, mesh=mesh)
            self.register_mesh(mesh, n_channel)
        else:
            self._pre_check(u=u_0, u_fft=u_0_fft, mesh=self._state_dict["f_mesh"])
        if self._state_dict["integrator"] is None:
            self._build_integrator(dt)
        elif self._is_etdrk_integrator:
            if self._state_dict["integrator"].dt != dt:
                self._build_integrator(dt)
        f_mesh = self._state_dict["f_mesh"]
        if u_0_fft is None:
            u_0_fft = f_mesh.fft(u_0)
        p_bar = tqdm(range(step), desc="Integrating", disable=not progressive)
        clean_up_memory()
        try:
            for i in p_bar:
                if trajectory_recorder is not None:
                    trajectory_recorder.record(i, u_0_fft)
                    if trajectory_recorder._shutdown_flag:
                        break
                u_0_fft = self._state_dict["integrator"].forward(u_0_fft, dt)
                if nan_check:
                    if torch.isnan(u_0_fft).any():
                        raise NanSimulationError(
                            f"NaN values found in the result at step {i}. Please check the input and simulation parameters."
                        )
        except TorchOutOfMemoryError as e:
            error_msg = [
                "Cuda out of memory when integrating the operator.",
                "Original error message: {}".format(str(e)),
                "Please try to use a smaller mesh or a low-order integrator.",
            ]
            raise OutOfMemoryError(os.linesep.join(error_msg))
        if trajectory_recorder is not None:
            trajectory_recorder.record(i + 1, u_0_fft)
            trajectory_recorder.return_in_fourier = return_in_fourier
            return trajectory_recorder.trajectory
        else:
            if return_in_fourier:
                return u_0_fft
            else:
                return f_mesh.ifft(u_0_fft).real

    def __call__(
        self,
        u: Optional[SpatialTensor["B C H ..."]] = None,
        u_fft: Optional[FourierTensor["B C H ..."]] = None,
        mesh: Optional[
            Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]
        ] = None,
        return_in_fourier=False,
    ) -> Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]:
        r"""
        Call the operator with the provided input tensor. The operator will apply the linear coefficient and nonlinear function to the input tensor.

        Args:
            u (Optional[SpatialTensor]): Input tensor in spatial domain. Default is None.
            u_fft (Optional[FourierTensor]): Input tensor in Fourier domain. Default is None.
                At least one of u or u_fft should be provided.
            mesh (Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]): Mesh information or mesh object. Default is None.
                If None, the mesh registered in the operator will be used. You can use `register_mesh` to register a mesh before calling the operator.
            return_in_fourier (bool): If True, return the result in Fourier domain. If False, return the result in spatial domain. Default is False.

        Returns:
            Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]: Result of the operator in spatial or Fourier domain.
        """

        if self._state_dict["f_mesh"] is None or mesh is not None:
            mesh, n_channel = self._pre_check(u, u_fft, mesh)
            self.register_mesh(mesh, n_channel)
        else:
            self._pre_check(u=u, u_fft=u_fft, mesh=self._state_dict["f_mesh"])
        if self._state_dict["operator"] is None:
            self._build_operator()
        if u_fft is None:
            u_fft = self._state_dict["f_mesh"].fft(u)
        value_fft = self._state_dict["operator"](u_fft)
        if return_in_fourier:
            return value_fft
        else:
            return self._state_dict["f_mesh"].ifft(value_fft).real

    def to(self, device=None, dtype=None):
        r"""
        Move the operator to the specified device and change the data type.

        Args:
            device (Optional[torch.device]): Device to which the operator should be moved. Default is None.
            dtype (Optional[torch.dtype]): Data type of the operator. Default is None.
        """
        if self._state_dict is not None:
            self._state_dict["f_mesh"].to(device=device, dtype=dtype)
            self.register_mesh(
                self._state_dict["f_mesh"], self._state_dict["n_channel"]
            )
operator_cores instance-attribute ¤
operator_cores = default(operator_cores, [])
coefs instance-attribute ¤
coefs = default(coefs, [1] * len(operator_cores))
is_linear property ¤
is_linear: bool

Check if the operator is linear.

Returns:

Name Type Description
bool bool

True if the operator is linear, False otherwise.

__radd__ ¤
__radd__(other)
Source code in torchfsm/operator/_base.py
174
175
def __radd__(self, other):
    return self + other
__iadd__ ¤
__iadd__(other)
Source code in torchfsm/operator/_base.py
177
178
def __iadd__(self, other):
    return self + other
__sub__ ¤
__sub__(other)
Source code in torchfsm/operator/_base.py
180
181
182
183
184
def __sub__(self, other):
    try:
        return self + (-1 * other)
    except Exception:
        return NotImplemented
__rsub__ ¤
__rsub__(other)
Source code in torchfsm/operator/_base.py
186
187
188
189
190
def __rsub__(self, other):
    try:
        return other + (-1 * self)
    except Exception:
        return NotImplemented
__isub__ ¤
__isub__(other)
Source code in torchfsm/operator/_base.py
192
193
def __isub__(self, other):
    return self - other
__rmul__ ¤
__rmul__(other)
Source code in torchfsm/operator/_base.py
195
196
def __rmul__(self, other):
    return self * other
__imul__ ¤
__imul__(other)
Source code in torchfsm/operator/_base.py
198
199
def __imul__(self, other):
    return self * other
__truediv__ ¤
__truediv__(other)
Source code in torchfsm/operator/_base.py
201
202
203
204
205
def __truediv__(self, other):
    try:
        return self * (1 / other)
    except:
        return NotImplemented
__init__ ¤
__init__(
    operator_cores: Optional[
        ValueList[
            Union[LinearCoef, NonlinearFunc, GeneratorLike]
        ]
    ] = None,
    coefs: Optional[List] = None,
) -> None
Source code in torchfsm/operator/_base.py
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
def __init__(
    self,
    operator_cores: Optional[ValueList[Union[LinearCoef, NonlinearFunc, GeneratorLike]]] = None,
    coefs: Optional[List] = None,
) -> None:
    super().__init__()
    self.operator_cores = default(operator_cores, [])
    if not isinstance(self.operator_cores, list):
        self.operator_cores = [self.operator_cores]
    self.coefs = default(coefs, [1] * len(self.operator_cores))
    self._state_dict = {
        "f_mesh": None,
        "n_channel": None,
        "linear_coef": None,
        "nonlinear_func": None,
        "operator": None,
        "integrator": None,
        "invert_linear_coef": None,
    }
    self._de_aliasing_rate = 2 / 3
    self._value_mesh_check_func = lambda dim_value, dim_mesh: True
    self._integrator = "auto"
    self._integrator_config = {}
    self._is_etdrk_integrator = True
register_mesh ¤
register_mesh(
    mesh: Union[
        Sequence[tuple[float, float, int]],
        MeshGrid,
        FourierMesh,
    ],
    n_channel: int,
    device=None,
    dtype=None,
)

Register the mesh and number of channels for the operator. Once a mesh is registered, mesh information is not required for integration and operator call.

Parameters:

Name Type Description Default
mesh Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]

Mesh information or mesh object.

required
n_channel int

Number of channels of the input tensor.

required
device Optional[device]

Device to which the mesh should be moved. Default is None.

None
dtype Optional[dtype]

Data type of the mesh. Default is None.

None
Source code in torchfsm/operator/_base.py
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
def register_mesh(
    self,
    mesh: Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh],
    n_channel: int,
    device=None,
    dtype=None,
):
    r"""
    Register the mesh and number of channels for the operator. Once a mesh is registered, mesh information is not required for integration and operator call.

    Args:
        mesh (Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]): Mesh information or mesh object.
        n_channel (int): Number of channels of the input tensor.
        device (Optional[torch.device]): Device to which the mesh should be moved. Default is None.
        dtype (Optional[torch.dtype]): Data type of the mesh. Default is None.
    """
    if isinstance(mesh, FourierMesh):
        f_mesh = mesh
        if device is not None or dtype is not None:
            f_mesh.to(device=device, dtype=dtype)
    else:
        f_mesh = FourierMesh(mesh, device=device, dtype=dtype)
    for key in self._state_dict:
        self._state_dict[key] = None
    self._state_dict.update(
        {
            "f_mesh": f_mesh,
            "n_channel": n_channel,
        }
    )
    linear_coefs = []
    nonlinear_funcs = []
    for coef, core in zip(self.coefs, self.operator_cores):
        op = (
            core(f_mesh, n_channel)
            if (
                not isinstance(core, LinearCoef)
                and not isinstance(core, NonlinearFunc)
            )
            else core
        )
        if isinstance(op, LinearCoef):
            linear_coefs.append((coef, op))
        elif isinstance(op, NonlinearFunc):
            nonlinear_funcs.append((coef, op))
        else:
            raise ValueError(f"Operator {op} is not supported")
    clean_up_memory()
    self._build_linear_coefs(linear_coefs)
    self._build_nonlinear_funcs(nonlinear_funcs)
register_additional_check ¤
register_additional_check(func: Callable[[int, int], bool])

Register an additional check function for the value and mesh compatibility.

Parameters:

Name Type Description Default
func Callable[[int, int], bool]

Function that takes the dimension of the value and mesh as input and returns a boolean indicating whether they are compatible.

required
Source code in torchfsm/operator/_base.py
630
631
632
633
634
635
636
637
def register_additional_check(self, func: Callable[[int, int], bool]):
    r"""
    Register an additional check function for the value and mesh compatibility.

    Args:
        func (Callable[[int, int], bool]): Function that takes the dimension of the value and mesh as input and returns a boolean indicating whether they are compatible.
    """
    self._value_mesh_check_func = func
add_core ¤
add_core(
    core: Union[LinearCoef, NonlinearFunc, GeneratorLike],
    coef=1,
)

Add a generator to the operator.

Parameters:

Name Type Description Default
core Union[LinearCoef, NonlinearFunc, GeneratorLike]

Core to be added.

required
coef float

Coefficient for the generator. Default is 1.

1
Source code in torchfsm/operator/_base.py
639
640
641
642
643
644
645
646
647
648
def add_core(self,core:Union[LinearCoef,NonlinearFunc,GeneratorLike],coef=1):
    r"""
    Add a generator to the operator.

    Args:
        core (Union[LinearCoef,NonlinearFunc,GeneratorLike]): Core to be added. 
        coef (float): Coefficient for the generator. Default is 1.
    """
    self.operator_cores.append(core)
    self.coefs.append(coef)
set_integrator ¤
set_integrator(
    integrator: Union[
        Literal["auto"],
        ETDRKIntegrator,
        SETDRKIntegrator,
        RKIntegrator,
    ],
    **integrator_config
)

Set the integrator for the operator. The integrator is used for time integration of the operator.

Parameters:

Name Type Description Default
integrator Union[Literal['auto'], ETDRKIntegrator, SETDRKIntegrator, RKIntegrator]

Integrator to be used. If "auto", the integrator will be chosen automatically based on the operator type. If "auto", the integrator will be set as ETDRKIntegrator.ETDRK0 for linear operators and ETDRKIntegrator.ETDRK2 for nonlinear operators.

required
**integrator_config

Additional configuration for the integrator.

{}
Source code in torchfsm/operator/_base.py
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
def set_integrator(
    self,
    integrator: Union[
        Literal["auto"], ETDRKIntegrator, SETDRKIntegrator, RKIntegrator
    ],
    **integrator_config,
):
    r"""
    Set the integrator for the operator. The integrator is used for time integration of the operator.

    Args:
        integrator (Union[Literal["auto"], ETDRKIntegrator, SETDRKIntegrator, RKIntegrator]): Integrator to be used. If "auto", the integrator will be chosen automatically based on the operator type.
            If "auto", the integrator will be set as ETDRKIntegrator.ETDRK0 for linear operators and ETDRKIntegrator.ETDRK2 for nonlinear operators.
        **integrator_config: Additional configuration for the integrator.
    """

    if isinstance(integrator, str):
        assert (
            integrator == "auto"
        ), "The integrator should be 'auto' or an instance of ETDRKIntegrator, SETDRKIntegrator or RKIntegrator"
    else:
        assert (
            isinstance(integrator, ETDRKIntegrator)
            or isinstance(integrator, SETDRKIntegrator)
            or isinstance(integrator, RKIntegrator)
        ), "The integrator should be 'auto' or an instance of ETDRKIntegrator, SETDRKIntegrator or RKIntegrator"
    self._integrator = integrator
    self._integrator_config = integrator_config
    self._state_dict["integrator"] = None
integrate ¤
integrate(
    u_0: Optional[Tensor] = None,
    u_0_fft: Optional[Tensor] = None,
    dt: float = 1,
    step: int = 1,
    mesh: Optional[
        Union[
            Sequence[tuple[float, float, int]],
            MeshGrid,
            FourierMesh,
        ]
    ] = None,
    progressive: bool = False,
    trajectory_recorder: Optional[_TrajRecorder] = None,
    return_in_fourier: bool = False,
    nan_check: bool = False,
) -> Union[
    SpatialTensor["B C H ..."],
    SpatialTensor["B T C H ..."],
    FourierTensor["B C H ..."],
    FourierTensor["B T C H ..."],
]

Integrate the operator using the provided initial condition and time step.

Parameters:

Name Type Description Default
u_0 Optional[Tensor]

Initial condition in spatial domain. Default is None.

None
u_0_fft Optional[Tensor]

Initial condition in Fourier domain. Default is None. At least one of u_0 or u_0_fft should be provided.

None
dt float

Time step for the integrator. Default is 1.

1
step int

Number of time steps to integrate. Default is 1.

1
mesh Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]

Mesh information or mesh object. Default is None. If None, the mesh registered in the operator will be used. You can use register_mesh to register a mesh before integration.

None
progressive bool

If True, show a progress bar during integration. Default is False.

False
trajectory_recorder Optional[_TrajRecorder]

Trajectory recorder for recording the trajectory during integration. Default is None. If None, no trajectory will be recorded. The function will only return the final frame.

None
return_in_fourier bool

If True, return the result in Fourier domain. If False, return the result in spatial domain. Default is False.

False
Nan_check bool

If True, check for NaN values in the result. If NaN values are found, raise a NanSimulationError. Default is False.

required

Returns:

Type Description
Union[SpatialTensor['B C H ...'], SpatialTensor['B T C H ...'], FourierTensor['B C H ...'], FourierTensor['B T C H ...']]

Union[SpatialTensor["B C H ..."], SpatialTensor["B T C H ..."], FourierTensor["B C H ..."], FourierTensor["B T C H ..."]]: Integrated result in spatial or Fourier domain. If trajectory_recorder is provided, the result will be a trajectory tensor of shape (B, T, C, H, ...). Otherwise, the result will be a tensor of shape (B, C, H, ...). If return_in_fourier is True, the result will be in Fourier domain. Otherwise, it will be in spatial domain.

Source code in torchfsm/operator/_base.py
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
def integrate(
    self,
    u_0: Optional[torch.Tensor] = None,
    u_0_fft: Optional[torch.Tensor] = None,
    dt: float = 1,
    step: int = 1,
    mesh: Optional[
        Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]
    ] = None,
    progressive: bool = False,
    trajectory_recorder: Optional[_TrajRecorder] = None,
    return_in_fourier: bool = False,
    nan_check: bool = False,
) -> Union[
    SpatialTensor["B C H ..."],
    SpatialTensor["B T C H ..."],
    FourierTensor["B C H ..."],
    FourierTensor["B T C H ..."],
]:
    r"""
    Integrate the operator using the provided initial condition and time step.

    Args:
        u_0 (Optional[torch.Tensor]): Initial condition in spatial domain. Default is None.
        u_0_fft (Optional[torch.Tensor]): Initial condition in Fourier domain. Default is None.
            At least one of u_0 or u_0_fft should be provided.
        dt (float): Time step for the integrator. Default is 1.
        step (int): Number of time steps to integrate. Default is 1.
        mesh (Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]): Mesh information or mesh object. Default is None.
            If None, the mesh registered in the operator will be used. You can use `register_mesh` to register a mesh before integration.
        progressive (bool): If True, show a progress bar during integration. Default is False.
        trajectory_recorder (Optional[_TrajRecorder]): Trajectory recorder for recording the trajectory during integration. Default is None.
            If None, no trajectory will be recorded. The function will only return the final frame.
        return_in_fourier (bool): If True, return the result in Fourier domain. If False, return the result in spatial domain. Default is False.
        Nan_check (bool): If True, check for NaN values in the result. If NaN values are found, raise a NanSimulationError. Default is False.

    Returns:
        Union[SpatialTensor["B C H ..."], SpatialTensor["B T C H ..."], FourierTensor["B C H ..."], FourierTensor["B T C H ..."]]: Integrated result in spatial or Fourier domain.
            If trajectory_recorder is provided, the result will be a trajectory tensor of shape (B, T, C, H, ...). Otherwise, the result will be a tensor of shape (B, C, H, ...).
            If return_in_fourier is True, the result will be in Fourier domain. Otherwise, it will be in spatial domain.

    """
    if self._state_dict["f_mesh"] is None or mesh is not None:
        mesh, n_channel = self._pre_check(u=u_0, u_fft=u_0_fft, mesh=mesh)
        self.register_mesh(mesh, n_channel)
    else:
        self._pre_check(u=u_0, u_fft=u_0_fft, mesh=self._state_dict["f_mesh"])
    if self._state_dict["integrator"] is None:
        self._build_integrator(dt)
    elif self._is_etdrk_integrator:
        if self._state_dict["integrator"].dt != dt:
            self._build_integrator(dt)
    f_mesh = self._state_dict["f_mesh"]
    if u_0_fft is None:
        u_0_fft = f_mesh.fft(u_0)
    p_bar = tqdm(range(step), desc="Integrating", disable=not progressive)
    clean_up_memory()
    try:
        for i in p_bar:
            if trajectory_recorder is not None:
                trajectory_recorder.record(i, u_0_fft)
                if trajectory_recorder._shutdown_flag:
                    break
            u_0_fft = self._state_dict["integrator"].forward(u_0_fft, dt)
            if nan_check:
                if torch.isnan(u_0_fft).any():
                    raise NanSimulationError(
                        f"NaN values found in the result at step {i}. Please check the input and simulation parameters."
                    )
    except TorchOutOfMemoryError as e:
        error_msg = [
            "Cuda out of memory when integrating the operator.",
            "Original error message: {}".format(str(e)),
            "Please try to use a smaller mesh or a low-order integrator.",
        ]
        raise OutOfMemoryError(os.linesep.join(error_msg))
    if trajectory_recorder is not None:
        trajectory_recorder.record(i + 1, u_0_fft)
        trajectory_recorder.return_in_fourier = return_in_fourier
        return trajectory_recorder.trajectory
    else:
        if return_in_fourier:
            return u_0_fft
        else:
            return f_mesh.ifft(u_0_fft).real
__call__ ¤
__call__(
    u: Optional[SpatialTensor["B C H ..."]] = None,
    u_fft: Optional[FourierTensor["B C H ..."]] = None,
    mesh: Optional[
        Union[
            Sequence[tuple[float, float, int]],
            MeshGrid,
            FourierMesh,
        ]
    ] = None,
    return_in_fourier=False,
) -> Union[
    SpatialTensor["B C H ..."], FourierTensor["B C H ..."]
]

Call the operator with the provided input tensor. The operator will apply the linear coefficient and nonlinear function to the input tensor.

Parameters:

Name Type Description Default
u Optional[SpatialTensor]

Input tensor in spatial domain. Default is None.

None
u_fft Optional[FourierTensor]

Input tensor in Fourier domain. Default is None. At least one of u or u_fft should be provided.

None
mesh Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]

Mesh information or mesh object. Default is None. If None, the mesh registered in the operator will be used. You can use register_mesh to register a mesh before calling the operator.

None
return_in_fourier bool

If True, return the result in Fourier domain. If False, return the result in spatial domain. Default is False.

False

Returns:

Type Description
Union[SpatialTensor['B C H ...'], FourierTensor['B C H ...']]

Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]: Result of the operator in spatial or Fourier domain.

Source code in torchfsm/operator/_base.py
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
def __call__(
    self,
    u: Optional[SpatialTensor["B C H ..."]] = None,
    u_fft: Optional[FourierTensor["B C H ..."]] = None,
    mesh: Optional[
        Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]
    ] = None,
    return_in_fourier=False,
) -> Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]:
    r"""
    Call the operator with the provided input tensor. The operator will apply the linear coefficient and nonlinear function to the input tensor.

    Args:
        u (Optional[SpatialTensor]): Input tensor in spatial domain. Default is None.
        u_fft (Optional[FourierTensor]): Input tensor in Fourier domain. Default is None.
            At least one of u or u_fft should be provided.
        mesh (Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]): Mesh information or mesh object. Default is None.
            If None, the mesh registered in the operator will be used. You can use `register_mesh` to register a mesh before calling the operator.
        return_in_fourier (bool): If True, return the result in Fourier domain. If False, return the result in spatial domain. Default is False.

    Returns:
        Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]: Result of the operator in spatial or Fourier domain.
    """

    if self._state_dict["f_mesh"] is None or mesh is not None:
        mesh, n_channel = self._pre_check(u, u_fft, mesh)
        self.register_mesh(mesh, n_channel)
    else:
        self._pre_check(u=u, u_fft=u_fft, mesh=self._state_dict["f_mesh"])
    if self._state_dict["operator"] is None:
        self._build_operator()
    if u_fft is None:
        u_fft = self._state_dict["f_mesh"].fft(u)
    value_fft = self._state_dict["operator"](u_fft)
    if return_in_fourier:
        return value_fft
    else:
        return self._state_dict["f_mesh"].ifft(value_fft).real
to ¤
to(device=None, dtype=None)

Move the operator to the specified device and change the data type.

Parameters:

Name Type Description Default
device Optional[device]

Device to which the operator should be moved. Default is None.

None
dtype Optional[dtype]

Data type of the operator. Default is None.

None
Source code in torchfsm/operator/_base.py
805
806
807
808
809
810
811
812
813
814
815
816
817
def to(self, device=None, dtype=None):
    r"""
    Move the operator to the specified device and change the data type.

    Args:
        device (Optional[torch.device]): Device to which the operator should be moved. Default is None.
        dtype (Optional[torch.dtype]): Data type of the operator. Default is None.
    """
    if self._state_dict is not None:
        self._state_dict["f_mesh"].to(device=device, dtype=dtype)
        self.register_mesh(
            self._state_dict["f_mesh"], self._state_dict["n_channel"]
        )

torchfsm.operator.Operator ¤

Bases: OperatorLike, _DeAliasMixin

Operator class for linear and nonlinear operations.

Parameters:

Name Type Description Default
operator_cores Optional[ValueList[Union[LinearCoef, NonlinearFunc, GeneratorLike]]]

List of operator generators/LinearCoef/NonLinearFunc. Default is None. that represent the real manipulations.

None
coefs Optional[List]

List of coefficients for each operator_core. Default is None. If None, all coefficients are set to 1. The length of the list should match the number of operator_core.

None
Source code in torchfsm/operator/_base.py
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
class Operator(OperatorLike, _DeAliasMixin):
    r"""
    Operator class for linear and nonlinear operations.

    Args:
        operator_cores (Optional[ValueList[Union[LinearCoef, NonlinearFunc, GeneratorLike]]]): List of operator generators/LinearCoef/NonLinearFunc. Default is None.
            that represent the real manipulations.
        coefs (Optional[List]): List of coefficients for each operator_core. Default is None.
            If None, all coefficients are set to 1.
            The length of the list should match the number of operator_core.

    """

    def __init__(
        self,
        operator_cores: Optional[ValueList[Union[LinearCoef, NonlinearFunc, GeneratorLike]]] = None,
        coefs: Optional[List] = None,
    ) -> None:
        super().__init__(operator_cores, coefs)

    def __add__(self, other):
        if isinstance(other, OperatorLike):
            return Operator(
                self.operator_cores + other.operator_cores,
                self.coefs + other.coefs,
            )
        elif isinstance(other, Tensor):
            return Operator(
                self.operator_cores
                + [lambda f_mesh, n_channel: _ExplicitSourceCore(other)],
                self.coefs + [1],
            )
        else:
            return NotImplemented

    def __mul__(self, other):
        if isinstance(other, OperatorLike):
            return NotImplemented
        else:
            return Operator(
                self.operator_cores, [coef * other for coef in self.coefs]
            )

    def __neg__(self):
        return Operator(self.operator_cores, [-1 * coef for coef in self.coefs])
operator_cores instance-attribute ¤
operator_cores = default(operator_cores, [])
coefs instance-attribute ¤
coefs = default(coefs, [1] * len(operator_cores))
is_linear property ¤
is_linear: bool

Check if the operator is linear.

Returns:

Name Type Description
bool bool

True if the operator is linear, False otherwise.

set_de_aliasing_rate ¤
set_de_aliasing_rate(de_aliasing_rate: float)

Set the de-aliasing rate for the nonlinear operator. Args: de_aliasing_rate (float): De-aliasing rate. Default is ⅔.

Source code in torchfsm/operator/_base.py
272
273
274
275
276
277
278
279
280
def set_de_aliasing_rate(self, de_aliasing_rate: float):
    r"""
    Set the de-aliasing rate for the nonlinear operator.
    Args:
        de_aliasing_rate (float): De-aliasing rate. Default is 2/3.
    """

    self._de_aliasing_rate = de_aliasing_rate
    self._state_dict = {key:None for key in self._state_dict.keys()}
__radd__ ¤
__radd__(other)
Source code in torchfsm/operator/_base.py
174
175
def __radd__(self, other):
    return self + other
__iadd__ ¤
__iadd__(other)
Source code in torchfsm/operator/_base.py
177
178
def __iadd__(self, other):
    return self + other
__sub__ ¤
__sub__(other)
Source code in torchfsm/operator/_base.py
180
181
182
183
184
def __sub__(self, other):
    try:
        return self + (-1 * other)
    except Exception:
        return NotImplemented
__rsub__ ¤
__rsub__(other)
Source code in torchfsm/operator/_base.py
186
187
188
189
190
def __rsub__(self, other):
    try:
        return other + (-1 * self)
    except Exception:
        return NotImplemented
__isub__ ¤
__isub__(other)
Source code in torchfsm/operator/_base.py
192
193
def __isub__(self, other):
    return self - other
__rmul__ ¤
__rmul__(other)
Source code in torchfsm/operator/_base.py
195
196
def __rmul__(self, other):
    return self * other
__imul__ ¤
__imul__(other)
Source code in torchfsm/operator/_base.py
198
199
def __imul__(self, other):
    return self * other
__truediv__ ¤
__truediv__(other)
Source code in torchfsm/operator/_base.py
201
202
203
204
205
def __truediv__(self, other):
    try:
        return self * (1 / other)
    except:
        return NotImplemented
register_mesh ¤
register_mesh(
    mesh: Union[
        Sequence[tuple[float, float, int]],
        MeshGrid,
        FourierMesh,
    ],
    n_channel: int,
    device=None,
    dtype=None,
)

Register the mesh and number of channels for the operator. Once a mesh is registered, mesh information is not required for integration and operator call.

Parameters:

Name Type Description Default
mesh Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]

Mesh information or mesh object.

required
n_channel int

Number of channels of the input tensor.

required
device Optional[device]

Device to which the mesh should be moved. Default is None.

None
dtype Optional[dtype]

Data type of the mesh. Default is None.

None
Source code in torchfsm/operator/_base.py
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
def register_mesh(
    self,
    mesh: Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh],
    n_channel: int,
    device=None,
    dtype=None,
):
    r"""
    Register the mesh and number of channels for the operator. Once a mesh is registered, mesh information is not required for integration and operator call.

    Args:
        mesh (Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]): Mesh information or mesh object.
        n_channel (int): Number of channels of the input tensor.
        device (Optional[torch.device]): Device to which the mesh should be moved. Default is None.
        dtype (Optional[torch.dtype]): Data type of the mesh. Default is None.
    """
    if isinstance(mesh, FourierMesh):
        f_mesh = mesh
        if device is not None or dtype is not None:
            f_mesh.to(device=device, dtype=dtype)
    else:
        f_mesh = FourierMesh(mesh, device=device, dtype=dtype)
    for key in self._state_dict:
        self._state_dict[key] = None
    self._state_dict.update(
        {
            "f_mesh": f_mesh,
            "n_channel": n_channel,
        }
    )
    linear_coefs = []
    nonlinear_funcs = []
    for coef, core in zip(self.coefs, self.operator_cores):
        op = (
            core(f_mesh, n_channel)
            if (
                not isinstance(core, LinearCoef)
                and not isinstance(core, NonlinearFunc)
            )
            else core
        )
        if isinstance(op, LinearCoef):
            linear_coefs.append((coef, op))
        elif isinstance(op, NonlinearFunc):
            nonlinear_funcs.append((coef, op))
        else:
            raise ValueError(f"Operator {op} is not supported")
    clean_up_memory()
    self._build_linear_coefs(linear_coefs)
    self._build_nonlinear_funcs(nonlinear_funcs)
register_additional_check ¤
register_additional_check(func: Callable[[int, int], bool])

Register an additional check function for the value and mesh compatibility.

Parameters:

Name Type Description Default
func Callable[[int, int], bool]

Function that takes the dimension of the value and mesh as input and returns a boolean indicating whether they are compatible.

required
Source code in torchfsm/operator/_base.py
630
631
632
633
634
635
636
637
def register_additional_check(self, func: Callable[[int, int], bool]):
    r"""
    Register an additional check function for the value and mesh compatibility.

    Args:
        func (Callable[[int, int], bool]): Function that takes the dimension of the value and mesh as input and returns a boolean indicating whether they are compatible.
    """
    self._value_mesh_check_func = func
add_core ¤
add_core(
    core: Union[LinearCoef, NonlinearFunc, GeneratorLike],
    coef=1,
)

Add a generator to the operator.

Parameters:

Name Type Description Default
core Union[LinearCoef, NonlinearFunc, GeneratorLike]

Core to be added.

required
coef float

Coefficient for the generator. Default is 1.

1
Source code in torchfsm/operator/_base.py
639
640
641
642
643
644
645
646
647
648
def add_core(self,core:Union[LinearCoef,NonlinearFunc,GeneratorLike],coef=1):
    r"""
    Add a generator to the operator.

    Args:
        core (Union[LinearCoef,NonlinearFunc,GeneratorLike]): Core to be added. 
        coef (float): Coefficient for the generator. Default is 1.
    """
    self.operator_cores.append(core)
    self.coefs.append(coef)
set_integrator ¤
set_integrator(
    integrator: Union[
        Literal["auto"],
        ETDRKIntegrator,
        SETDRKIntegrator,
        RKIntegrator,
    ],
    **integrator_config
)

Set the integrator for the operator. The integrator is used for time integration of the operator.

Parameters:

Name Type Description Default
integrator Union[Literal['auto'], ETDRKIntegrator, SETDRKIntegrator, RKIntegrator]

Integrator to be used. If "auto", the integrator will be chosen automatically based on the operator type. If "auto", the integrator will be set as ETDRKIntegrator.ETDRK0 for linear operators and ETDRKIntegrator.ETDRK2 for nonlinear operators.

required
**integrator_config

Additional configuration for the integrator.

{}
Source code in torchfsm/operator/_base.py
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
def set_integrator(
    self,
    integrator: Union[
        Literal["auto"], ETDRKIntegrator, SETDRKIntegrator, RKIntegrator
    ],
    **integrator_config,
):
    r"""
    Set the integrator for the operator. The integrator is used for time integration of the operator.

    Args:
        integrator (Union[Literal["auto"], ETDRKIntegrator, SETDRKIntegrator, RKIntegrator]): Integrator to be used. If "auto", the integrator will be chosen automatically based on the operator type.
            If "auto", the integrator will be set as ETDRKIntegrator.ETDRK0 for linear operators and ETDRKIntegrator.ETDRK2 for nonlinear operators.
        **integrator_config: Additional configuration for the integrator.
    """

    if isinstance(integrator, str):
        assert (
            integrator == "auto"
        ), "The integrator should be 'auto' or an instance of ETDRKIntegrator, SETDRKIntegrator or RKIntegrator"
    else:
        assert (
            isinstance(integrator, ETDRKIntegrator)
            or isinstance(integrator, SETDRKIntegrator)
            or isinstance(integrator, RKIntegrator)
        ), "The integrator should be 'auto' or an instance of ETDRKIntegrator, SETDRKIntegrator or RKIntegrator"
    self._integrator = integrator
    self._integrator_config = integrator_config
    self._state_dict["integrator"] = None
integrate ¤
integrate(
    u_0: Optional[Tensor] = None,
    u_0_fft: Optional[Tensor] = None,
    dt: float = 1,
    step: int = 1,
    mesh: Optional[
        Union[
            Sequence[tuple[float, float, int]],
            MeshGrid,
            FourierMesh,
        ]
    ] = None,
    progressive: bool = False,
    trajectory_recorder: Optional[_TrajRecorder] = None,
    return_in_fourier: bool = False,
    nan_check: bool = False,
) -> Union[
    SpatialTensor["B C H ..."],
    SpatialTensor["B T C H ..."],
    FourierTensor["B C H ..."],
    FourierTensor["B T C H ..."],
]

Integrate the operator using the provided initial condition and time step.

Parameters:

Name Type Description Default
u_0 Optional[Tensor]

Initial condition in spatial domain. Default is None.

None
u_0_fft Optional[Tensor]

Initial condition in Fourier domain. Default is None. At least one of u_0 or u_0_fft should be provided.

None
dt float

Time step for the integrator. Default is 1.

1
step int

Number of time steps to integrate. Default is 1.

1
mesh Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]

Mesh information or mesh object. Default is None. If None, the mesh registered in the operator will be used. You can use register_mesh to register a mesh before integration.

None
progressive bool

If True, show a progress bar during integration. Default is False.

False
trajectory_recorder Optional[_TrajRecorder]

Trajectory recorder for recording the trajectory during integration. Default is None. If None, no trajectory will be recorded. The function will only return the final frame.

None
return_in_fourier bool

If True, return the result in Fourier domain. If False, return the result in spatial domain. Default is False.

False
Nan_check bool

If True, check for NaN values in the result. If NaN values are found, raise a NanSimulationError. Default is False.

required

Returns:

Type Description
Union[SpatialTensor['B C H ...'], SpatialTensor['B T C H ...'], FourierTensor['B C H ...'], FourierTensor['B T C H ...']]

Union[SpatialTensor["B C H ..."], SpatialTensor["B T C H ..."], FourierTensor["B C H ..."], FourierTensor["B T C H ..."]]: Integrated result in spatial or Fourier domain. If trajectory_recorder is provided, the result will be a trajectory tensor of shape (B, T, C, H, ...). Otherwise, the result will be a tensor of shape (B, C, H, ...). If return_in_fourier is True, the result will be in Fourier domain. Otherwise, it will be in spatial domain.

Source code in torchfsm/operator/_base.py
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
def integrate(
    self,
    u_0: Optional[torch.Tensor] = None,
    u_0_fft: Optional[torch.Tensor] = None,
    dt: float = 1,
    step: int = 1,
    mesh: Optional[
        Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]
    ] = None,
    progressive: bool = False,
    trajectory_recorder: Optional[_TrajRecorder] = None,
    return_in_fourier: bool = False,
    nan_check: bool = False,
) -> Union[
    SpatialTensor["B C H ..."],
    SpatialTensor["B T C H ..."],
    FourierTensor["B C H ..."],
    FourierTensor["B T C H ..."],
]:
    r"""
    Integrate the operator using the provided initial condition and time step.

    Args:
        u_0 (Optional[torch.Tensor]): Initial condition in spatial domain. Default is None.
        u_0_fft (Optional[torch.Tensor]): Initial condition in Fourier domain. Default is None.
            At least one of u_0 or u_0_fft should be provided.
        dt (float): Time step for the integrator. Default is 1.
        step (int): Number of time steps to integrate. Default is 1.
        mesh (Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]): Mesh information or mesh object. Default is None.
            If None, the mesh registered in the operator will be used. You can use `register_mesh` to register a mesh before integration.
        progressive (bool): If True, show a progress bar during integration. Default is False.
        trajectory_recorder (Optional[_TrajRecorder]): Trajectory recorder for recording the trajectory during integration. Default is None.
            If None, no trajectory will be recorded. The function will only return the final frame.
        return_in_fourier (bool): If True, return the result in Fourier domain. If False, return the result in spatial domain. Default is False.
        Nan_check (bool): If True, check for NaN values in the result. If NaN values are found, raise a NanSimulationError. Default is False.

    Returns:
        Union[SpatialTensor["B C H ..."], SpatialTensor["B T C H ..."], FourierTensor["B C H ..."], FourierTensor["B T C H ..."]]: Integrated result in spatial or Fourier domain.
            If trajectory_recorder is provided, the result will be a trajectory tensor of shape (B, T, C, H, ...). Otherwise, the result will be a tensor of shape (B, C, H, ...).
            If return_in_fourier is True, the result will be in Fourier domain. Otherwise, it will be in spatial domain.

    """
    if self._state_dict["f_mesh"] is None or mesh is not None:
        mesh, n_channel = self._pre_check(u=u_0, u_fft=u_0_fft, mesh=mesh)
        self.register_mesh(mesh, n_channel)
    else:
        self._pre_check(u=u_0, u_fft=u_0_fft, mesh=self._state_dict["f_mesh"])
    if self._state_dict["integrator"] is None:
        self._build_integrator(dt)
    elif self._is_etdrk_integrator:
        if self._state_dict["integrator"].dt != dt:
            self._build_integrator(dt)
    f_mesh = self._state_dict["f_mesh"]
    if u_0_fft is None:
        u_0_fft = f_mesh.fft(u_0)
    p_bar = tqdm(range(step), desc="Integrating", disable=not progressive)
    clean_up_memory()
    try:
        for i in p_bar:
            if trajectory_recorder is not None:
                trajectory_recorder.record(i, u_0_fft)
                if trajectory_recorder._shutdown_flag:
                    break
            u_0_fft = self._state_dict["integrator"].forward(u_0_fft, dt)
            if nan_check:
                if torch.isnan(u_0_fft).any():
                    raise NanSimulationError(
                        f"NaN values found in the result at step {i}. Please check the input and simulation parameters."
                    )
    except TorchOutOfMemoryError as e:
        error_msg = [
            "Cuda out of memory when integrating the operator.",
            "Original error message: {}".format(str(e)),
            "Please try to use a smaller mesh or a low-order integrator.",
        ]
        raise OutOfMemoryError(os.linesep.join(error_msg))
    if trajectory_recorder is not None:
        trajectory_recorder.record(i + 1, u_0_fft)
        trajectory_recorder.return_in_fourier = return_in_fourier
        return trajectory_recorder.trajectory
    else:
        if return_in_fourier:
            return u_0_fft
        else:
            return f_mesh.ifft(u_0_fft).real
__call__ ¤
__call__(
    u: Optional[SpatialTensor["B C H ..."]] = None,
    u_fft: Optional[FourierTensor["B C H ..."]] = None,
    mesh: Optional[
        Union[
            Sequence[tuple[float, float, int]],
            MeshGrid,
            FourierMesh,
        ]
    ] = None,
    return_in_fourier=False,
) -> Union[
    SpatialTensor["B C H ..."], FourierTensor["B C H ..."]
]

Call the operator with the provided input tensor. The operator will apply the linear coefficient and nonlinear function to the input tensor.

Parameters:

Name Type Description Default
u Optional[SpatialTensor]

Input tensor in spatial domain. Default is None.

None
u_fft Optional[FourierTensor]

Input tensor in Fourier domain. Default is None. At least one of u or u_fft should be provided.

None
mesh Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]

Mesh information or mesh object. Default is None. If None, the mesh registered in the operator will be used. You can use register_mesh to register a mesh before calling the operator.

None
return_in_fourier bool

If True, return the result in Fourier domain. If False, return the result in spatial domain. Default is False.

False

Returns:

Type Description
Union[SpatialTensor['B C H ...'], FourierTensor['B C H ...']]

Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]: Result of the operator in spatial or Fourier domain.

Source code in torchfsm/operator/_base.py
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
def __call__(
    self,
    u: Optional[SpatialTensor["B C H ..."]] = None,
    u_fft: Optional[FourierTensor["B C H ..."]] = None,
    mesh: Optional[
        Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]
    ] = None,
    return_in_fourier=False,
) -> Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]:
    r"""
    Call the operator with the provided input tensor. The operator will apply the linear coefficient and nonlinear function to the input tensor.

    Args:
        u (Optional[SpatialTensor]): Input tensor in spatial domain. Default is None.
        u_fft (Optional[FourierTensor]): Input tensor in Fourier domain. Default is None.
            At least one of u or u_fft should be provided.
        mesh (Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]): Mesh information or mesh object. Default is None.
            If None, the mesh registered in the operator will be used. You can use `register_mesh` to register a mesh before calling the operator.
        return_in_fourier (bool): If True, return the result in Fourier domain. If False, return the result in spatial domain. Default is False.

    Returns:
        Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]: Result of the operator in spatial or Fourier domain.
    """

    if self._state_dict["f_mesh"] is None or mesh is not None:
        mesh, n_channel = self._pre_check(u, u_fft, mesh)
        self.register_mesh(mesh, n_channel)
    else:
        self._pre_check(u=u, u_fft=u_fft, mesh=self._state_dict["f_mesh"])
    if self._state_dict["operator"] is None:
        self._build_operator()
    if u_fft is None:
        u_fft = self._state_dict["f_mesh"].fft(u)
    value_fft = self._state_dict["operator"](u_fft)
    if return_in_fourier:
        return value_fft
    else:
        return self._state_dict["f_mesh"].ifft(value_fft).real
to ¤
to(device=None, dtype=None)

Move the operator to the specified device and change the data type.

Parameters:

Name Type Description Default
device Optional[device]

Device to which the operator should be moved. Default is None.

None
dtype Optional[dtype]

Data type of the operator. Default is None.

None
Source code in torchfsm/operator/_base.py
805
806
807
808
809
810
811
812
813
814
815
816
817
def to(self, device=None, dtype=None):
    r"""
    Move the operator to the specified device and change the data type.

    Args:
        device (Optional[torch.device]): Device to which the operator should be moved. Default is None.
        dtype (Optional[torch.dtype]): Data type of the operator. Default is None.
    """
    if self._state_dict is not None:
        self._state_dict["f_mesh"].to(device=device, dtype=dtype)
        self.register_mesh(
            self._state_dict["f_mesh"], self._state_dict["n_channel"]
        )
__init__ ¤
__init__(
    operator_cores: Optional[
        ValueList[
            Union[LinearCoef, NonlinearFunc, GeneratorLike]
        ]
    ] = None,
    coefs: Optional[List] = None,
) -> None
Source code in torchfsm/operator/_base.py
833
834
835
836
837
838
def __init__(
    self,
    operator_cores: Optional[ValueList[Union[LinearCoef, NonlinearFunc, GeneratorLike]]] = None,
    coefs: Optional[List] = None,
) -> None:
    super().__init__(operator_cores, coefs)
__add__ ¤
__add__(other)
Source code in torchfsm/operator/_base.py
840
841
842
843
844
845
846
847
848
849
850
851
852
853
def __add__(self, other):
    if isinstance(other, OperatorLike):
        return Operator(
            self.operator_cores + other.operator_cores,
            self.coefs + other.coefs,
        )
    elif isinstance(other, Tensor):
        return Operator(
            self.operator_cores
            + [lambda f_mesh, n_channel: _ExplicitSourceCore(other)],
            self.coefs + [1],
        )
    else:
        return NotImplemented
__mul__ ¤
__mul__(other)
Source code in torchfsm/operator/_base.py
855
856
857
858
859
860
861
def __mul__(self, other):
    if isinstance(other, OperatorLike):
        return NotImplemented
    else:
        return Operator(
            self.operator_cores, [coef * other for coef in self.coefs]
        )
__neg__ ¤
__neg__()
Source code in torchfsm/operator/_base.py
863
864
def __neg__(self):
    return Operator(self.operator_cores, [-1 * coef for coef in self.coefs])

torchfsm.operator.LinearOperator ¤

Bases: OperatorLike, _InverseSolveMixin

Operators that contain only linear operations.

Parameters:

Name Type Description Default
linear_coef ValueList[Union[LinearCoef, GeneratorLike]]

List of LinearCoef or linear coefficient generators. Default is None.

None
coefs Optional[List]

List of coefficients for each linear_coef. Default is None. If None, all coefficients are set to 1. The length of the list should match the number of linear_coef.

None
Source code in torchfsm/operator/_base.py
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
class LinearOperator(OperatorLike, _InverseSolveMixin):
    r"""
    Operators that contain only linear operations.

    Args:
        linear_coef (ValueList[Union[LinearCoef, GeneratorLike]]): List of LinearCoef or linear coefficient generators. Default is None.
        coefs (Optional[List]): List of coefficients for each linear_coef. Default is None.
            If None, all coefficients are set to 1.
            The length of the list should match the number of linear_coef.
    """

    def __init__(
        self,
        linear_coef: ValueList[Union[LinearCoef, GeneratorLike]] = None,
        coefs: Optional[List] = None,
    ) -> None:
        if not isinstance(linear_coef, list):
            linear_coef = [linear_coef]
        super().__init__(
            linear_coef,
            coefs=coefs,
        )

    @property
    def is_linear(self):
        return True

    def __add__(self, other):
        if isinstance(other, LinearOperator):
            return LinearOperator(
                self.operator_cores + other.operator_cores,
                self.coefs + other.coefs,
            )
        elif isinstance(other, OperatorLike):
            return Operator(
                self.operator_cores + other.operator_cores,
                self.coefs + other.coefs,
            )
        elif isinstance(other, Tensor):
            return Operator(
                self.operator_cores
                + [lambda f_mesh, n_channel: _ExplicitSourceCore(other)],
                self.coefs + [1],
            )
        else:
            return NotImplemented

    def __mul__(self, other):
        if isinstance(other, OperatorLike):
            return NotImplemented
        else:
            return LinearOperator(
                self.operator_cores, [coef * other for coef in self.coefs]
            )

    def __neg__(self):
        return LinearOperator(
            self.operator_cores, [-1 * coef for coef in self.coefs]
        )
operator_cores instance-attribute ¤
operator_cores = default(operator_cores, [])
coefs instance-attribute ¤
coefs = default(coefs, [1] * len(operator_cores))
is_linear property ¤
is_linear
register_mesh ¤
register_mesh(
    mesh: Union[
        Sequence[tuple[float, float, int]],
        MeshGrid,
        FourierMesh,
    ],
    n_channel: int,
    device=None,
    dtype=None,
)

Register the mesh and number of channels for the operator. Once a mesh is registered, mesh information is not required for integration and operator call.

Parameters:

Name Type Description Default
mesh Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]

Mesh information or mesh object.

required
n_channel int

Number of channels of the input tensor.

required
device Optional[device]

Device to which the mesh should be moved. Default is None.

None
dtype Optional[dtype]

Data type of the mesh. Default is None.

None
Source code in torchfsm/operator/_base.py
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
def register_mesh(
    self,
    mesh: Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh],
    n_channel: int,
    device=None,
    dtype=None,
):
    r"""
    Register the mesh and number of channels for the operator. Once a mesh is registered, mesh information is not required for integration and operator call.

    Args:
        mesh (Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]): Mesh information or mesh object.
        n_channel (int): Number of channels of the input tensor.
        device (Optional[torch.device]): Device to which the mesh should be moved. Default is None.
        dtype (Optional[torch.dtype]): Data type of the mesh. Default is None.
    """
    if isinstance(mesh, FourierMesh):
        f_mesh = mesh
        if device is not None or dtype is not None:
            f_mesh.to(device=device, dtype=dtype)
    else:
        f_mesh = FourierMesh(mesh, device=device, dtype=dtype)
    for key in self._state_dict:
        self._state_dict[key] = None
    self._state_dict.update(
        {
            "f_mesh": f_mesh,
            "n_channel": n_channel,
        }
    )
    linear_coefs = []
    nonlinear_funcs = []
    for coef, core in zip(self.coefs, self.operator_cores):
        op = (
            core(f_mesh, n_channel)
            if (
                not isinstance(core, LinearCoef)
                and not isinstance(core, NonlinearFunc)
            )
            else core
        )
        if isinstance(op, LinearCoef):
            linear_coefs.append((coef, op))
        elif isinstance(op, NonlinearFunc):
            nonlinear_funcs.append((coef, op))
        else:
            raise ValueError(f"Operator {op} is not supported")
    clean_up_memory()
    self._build_linear_coefs(linear_coefs)
    self._build_nonlinear_funcs(nonlinear_funcs)
solve ¤
solve(
    b: Optional[Tensor] = None,
    b_fft: Optional[Tensor] = None,
    mesh: Optional[
        Union[
            Sequence[tuple[float, float, int]],
            MeshGrid,
            FourierMesh,
        ]
    ] = None,
    n_channel: Optional[int] = None,
    return_in_fourier=False,
) -> Union[
    SpatialTensor["B C H ..."], SpatialTensor["B C H ..."]
]

Solve the linear operator equation \(Ax = b\), where \(A\) is the linear operator and \(b\) is the right-hand side.

Parameters:

Name Type Description Default
b Optional[Tensor]

Right-hand side tensor in spatial domain. If None, b_fft should be provided.

None
b_fft Optional[Tensor]

Right-hand side tensor in Fourier domain. If None, b should be provided.

None
mesh Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]

Mesh information or mesh object. If None, the mesh registered in the operator will be used.

None
n_channel Optional[int]

Number of channels of \(x\). If None, the number of channels registered in the operator will be used.

None
return_in_fourier bool

If True, return the result in Fourier domain. If False, return the result in spatial domain.

False

Returns:

Type Description
Union[SpatialTensor['B C H ...'], SpatialTensor['B C H ...']]

Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]: Solution tensor in spatial or Fourier domain.

Source code in torchfsm/operator/_base.py
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
def solve(
    self,
    b: Optional[torch.Tensor] = None,
    b_fft: Optional[torch.Tensor] = None,
    mesh: Optional[
        Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]
    ] = None,
    n_channel: Optional[int] = None,
    return_in_fourier=False,
) -> Union[SpatialTensor["B C H ..."], SpatialTensor["B C H ..."]]:
    r"""
    Solve the linear operator equation $Ax = b$, where $A$ is the linear operator and $b$ is the right-hand side.

    Args:
        b (Optional[torch.Tensor]): Right-hand side tensor in spatial domain. If None, b_fft should be provided.
        b_fft (Optional[torch.Tensor]): Right-hand side tensor in Fourier domain. If None, b should be provided.
        mesh (Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]): Mesh information or mesh object. If None, the mesh registered in the operator will be used.
        n_channel (Optional[int]): Number of channels of $x$. If None, the number of channels registered in the operator will be used.
        return_in_fourier (bool): If True, return the result in Fourier domain. If False, return the result in spatial domain.

    Returns:
        Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]: Solution tensor in spatial or Fourier domain.
    """
    if not (mesh is not None and n_channel is not None):
        assert (
            self._state_dict["f_mesh"] is not None
        ), "Mesh and n_channel should be given when calling solve"
    if not (mesh is None and n_channel is None):
        mesh = self._state_dict["f_mesh"] if mesh is None else mesh
        n_channel = (
            self._state_dict["n_channel"] if n_channel is None else n_channel
        )
        self.register_mesh(mesh, n_channel)
    if self._state_dict["invert_linear_coef"] is None:
        self._state_dict["invert_linear_coef"] = torch.where(
            self._state_dict["linear_coef"] == 0,
            1.0,
            1 / self._state_dict["linear_coef"],
        )
    if b_fft is None:
        b_fft = self._state_dict["f_mesh"].fft(b)
    value_fft = b_fft * self._state_dict["invert_linear_coef"]
    if return_in_fourier:
        return value_fft
    else:
        return self._state_dict["f_mesh"].ifft(value_fft).real
__radd__ ¤
__radd__(other)
Source code in torchfsm/operator/_base.py
174
175
def __radd__(self, other):
    return self + other
__iadd__ ¤
__iadd__(other)
Source code in torchfsm/operator/_base.py
177
178
def __iadd__(self, other):
    return self + other
__sub__ ¤
__sub__(other)
Source code in torchfsm/operator/_base.py
180
181
182
183
184
def __sub__(self, other):
    try:
        return self + (-1 * other)
    except Exception:
        return NotImplemented
__rsub__ ¤
__rsub__(other)
Source code in torchfsm/operator/_base.py
186
187
188
189
190
def __rsub__(self, other):
    try:
        return other + (-1 * self)
    except Exception:
        return NotImplemented
__isub__ ¤
__isub__(other)
Source code in torchfsm/operator/_base.py
192
193
def __isub__(self, other):
    return self - other
__rmul__ ¤
__rmul__(other)
Source code in torchfsm/operator/_base.py
195
196
def __rmul__(self, other):
    return self * other
__imul__ ¤
__imul__(other)
Source code in torchfsm/operator/_base.py
198
199
def __imul__(self, other):
    return self * other
__truediv__ ¤
__truediv__(other)
Source code in torchfsm/operator/_base.py
201
202
203
204
205
def __truediv__(self, other):
    try:
        return self * (1 / other)
    except:
        return NotImplemented
register_additional_check ¤
register_additional_check(func: Callable[[int, int], bool])

Register an additional check function for the value and mesh compatibility.

Parameters:

Name Type Description Default
func Callable[[int, int], bool]

Function that takes the dimension of the value and mesh as input and returns a boolean indicating whether they are compatible.

required
Source code in torchfsm/operator/_base.py
630
631
632
633
634
635
636
637
def register_additional_check(self, func: Callable[[int, int], bool]):
    r"""
    Register an additional check function for the value and mesh compatibility.

    Args:
        func (Callable[[int, int], bool]): Function that takes the dimension of the value and mesh as input and returns a boolean indicating whether they are compatible.
    """
    self._value_mesh_check_func = func
add_core ¤
add_core(
    core: Union[LinearCoef, NonlinearFunc, GeneratorLike],
    coef=1,
)

Add a generator to the operator.

Parameters:

Name Type Description Default
core Union[LinearCoef, NonlinearFunc, GeneratorLike]

Core to be added.

required
coef float

Coefficient for the generator. Default is 1.

1
Source code in torchfsm/operator/_base.py
639
640
641
642
643
644
645
646
647
648
def add_core(self,core:Union[LinearCoef,NonlinearFunc,GeneratorLike],coef=1):
    r"""
    Add a generator to the operator.

    Args:
        core (Union[LinearCoef,NonlinearFunc,GeneratorLike]): Core to be added. 
        coef (float): Coefficient for the generator. Default is 1.
    """
    self.operator_cores.append(core)
    self.coefs.append(coef)
set_integrator ¤
set_integrator(
    integrator: Union[
        Literal["auto"],
        ETDRKIntegrator,
        SETDRKIntegrator,
        RKIntegrator,
    ],
    **integrator_config
)

Set the integrator for the operator. The integrator is used for time integration of the operator.

Parameters:

Name Type Description Default
integrator Union[Literal['auto'], ETDRKIntegrator, SETDRKIntegrator, RKIntegrator]

Integrator to be used. If "auto", the integrator will be chosen automatically based on the operator type. If "auto", the integrator will be set as ETDRKIntegrator.ETDRK0 for linear operators and ETDRKIntegrator.ETDRK2 for nonlinear operators.

required
**integrator_config

Additional configuration for the integrator.

{}
Source code in torchfsm/operator/_base.py
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
def set_integrator(
    self,
    integrator: Union[
        Literal["auto"], ETDRKIntegrator, SETDRKIntegrator, RKIntegrator
    ],
    **integrator_config,
):
    r"""
    Set the integrator for the operator. The integrator is used for time integration of the operator.

    Args:
        integrator (Union[Literal["auto"], ETDRKIntegrator, SETDRKIntegrator, RKIntegrator]): Integrator to be used. If "auto", the integrator will be chosen automatically based on the operator type.
            If "auto", the integrator will be set as ETDRKIntegrator.ETDRK0 for linear operators and ETDRKIntegrator.ETDRK2 for nonlinear operators.
        **integrator_config: Additional configuration for the integrator.
    """

    if isinstance(integrator, str):
        assert (
            integrator == "auto"
        ), "The integrator should be 'auto' or an instance of ETDRKIntegrator, SETDRKIntegrator or RKIntegrator"
    else:
        assert (
            isinstance(integrator, ETDRKIntegrator)
            or isinstance(integrator, SETDRKIntegrator)
            or isinstance(integrator, RKIntegrator)
        ), "The integrator should be 'auto' or an instance of ETDRKIntegrator, SETDRKIntegrator or RKIntegrator"
    self._integrator = integrator
    self._integrator_config = integrator_config
    self._state_dict["integrator"] = None
integrate ¤
integrate(
    u_0: Optional[Tensor] = None,
    u_0_fft: Optional[Tensor] = None,
    dt: float = 1,
    step: int = 1,
    mesh: Optional[
        Union[
            Sequence[tuple[float, float, int]],
            MeshGrid,
            FourierMesh,
        ]
    ] = None,
    progressive: bool = False,
    trajectory_recorder: Optional[_TrajRecorder] = None,
    return_in_fourier: bool = False,
    nan_check: bool = False,
) -> Union[
    SpatialTensor["B C H ..."],
    SpatialTensor["B T C H ..."],
    FourierTensor["B C H ..."],
    FourierTensor["B T C H ..."],
]

Integrate the operator using the provided initial condition and time step.

Parameters:

Name Type Description Default
u_0 Optional[Tensor]

Initial condition in spatial domain. Default is None.

None
u_0_fft Optional[Tensor]

Initial condition in Fourier domain. Default is None. At least one of u_0 or u_0_fft should be provided.

None
dt float

Time step for the integrator. Default is 1.

1
step int

Number of time steps to integrate. Default is 1.

1
mesh Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]

Mesh information or mesh object. Default is None. If None, the mesh registered in the operator will be used. You can use register_mesh to register a mesh before integration.

None
progressive bool

If True, show a progress bar during integration. Default is False.

False
trajectory_recorder Optional[_TrajRecorder]

Trajectory recorder for recording the trajectory during integration. Default is None. If None, no trajectory will be recorded. The function will only return the final frame.

None
return_in_fourier bool

If True, return the result in Fourier domain. If False, return the result in spatial domain. Default is False.

False
Nan_check bool

If True, check for NaN values in the result. If NaN values are found, raise a NanSimulationError. Default is False.

required

Returns:

Type Description
Union[SpatialTensor['B C H ...'], SpatialTensor['B T C H ...'], FourierTensor['B C H ...'], FourierTensor['B T C H ...']]

Union[SpatialTensor["B C H ..."], SpatialTensor["B T C H ..."], FourierTensor["B C H ..."], FourierTensor["B T C H ..."]]: Integrated result in spatial or Fourier domain. If trajectory_recorder is provided, the result will be a trajectory tensor of shape (B, T, C, H, ...). Otherwise, the result will be a tensor of shape (B, C, H, ...). If return_in_fourier is True, the result will be in Fourier domain. Otherwise, it will be in spatial domain.

Source code in torchfsm/operator/_base.py
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
def integrate(
    self,
    u_0: Optional[torch.Tensor] = None,
    u_0_fft: Optional[torch.Tensor] = None,
    dt: float = 1,
    step: int = 1,
    mesh: Optional[
        Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]
    ] = None,
    progressive: bool = False,
    trajectory_recorder: Optional[_TrajRecorder] = None,
    return_in_fourier: bool = False,
    nan_check: bool = False,
) -> Union[
    SpatialTensor["B C H ..."],
    SpatialTensor["B T C H ..."],
    FourierTensor["B C H ..."],
    FourierTensor["B T C H ..."],
]:
    r"""
    Integrate the operator using the provided initial condition and time step.

    Args:
        u_0 (Optional[torch.Tensor]): Initial condition in spatial domain. Default is None.
        u_0_fft (Optional[torch.Tensor]): Initial condition in Fourier domain. Default is None.
            At least one of u_0 or u_0_fft should be provided.
        dt (float): Time step for the integrator. Default is 1.
        step (int): Number of time steps to integrate. Default is 1.
        mesh (Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]): Mesh information or mesh object. Default is None.
            If None, the mesh registered in the operator will be used. You can use `register_mesh` to register a mesh before integration.
        progressive (bool): If True, show a progress bar during integration. Default is False.
        trajectory_recorder (Optional[_TrajRecorder]): Trajectory recorder for recording the trajectory during integration. Default is None.
            If None, no trajectory will be recorded. The function will only return the final frame.
        return_in_fourier (bool): If True, return the result in Fourier domain. If False, return the result in spatial domain. Default is False.
        Nan_check (bool): If True, check for NaN values in the result. If NaN values are found, raise a NanSimulationError. Default is False.

    Returns:
        Union[SpatialTensor["B C H ..."], SpatialTensor["B T C H ..."], FourierTensor["B C H ..."], FourierTensor["B T C H ..."]]: Integrated result in spatial or Fourier domain.
            If trajectory_recorder is provided, the result will be a trajectory tensor of shape (B, T, C, H, ...). Otherwise, the result will be a tensor of shape (B, C, H, ...).
            If return_in_fourier is True, the result will be in Fourier domain. Otherwise, it will be in spatial domain.

    """
    if self._state_dict["f_mesh"] is None or mesh is not None:
        mesh, n_channel = self._pre_check(u=u_0, u_fft=u_0_fft, mesh=mesh)
        self.register_mesh(mesh, n_channel)
    else:
        self._pre_check(u=u_0, u_fft=u_0_fft, mesh=self._state_dict["f_mesh"])
    if self._state_dict["integrator"] is None:
        self._build_integrator(dt)
    elif self._is_etdrk_integrator:
        if self._state_dict["integrator"].dt != dt:
            self._build_integrator(dt)
    f_mesh = self._state_dict["f_mesh"]
    if u_0_fft is None:
        u_0_fft = f_mesh.fft(u_0)
    p_bar = tqdm(range(step), desc="Integrating", disable=not progressive)
    clean_up_memory()
    try:
        for i in p_bar:
            if trajectory_recorder is not None:
                trajectory_recorder.record(i, u_0_fft)
                if trajectory_recorder._shutdown_flag:
                    break
            u_0_fft = self._state_dict["integrator"].forward(u_0_fft, dt)
            if nan_check:
                if torch.isnan(u_0_fft).any():
                    raise NanSimulationError(
                        f"NaN values found in the result at step {i}. Please check the input and simulation parameters."
                    )
    except TorchOutOfMemoryError as e:
        error_msg = [
            "Cuda out of memory when integrating the operator.",
            "Original error message: {}".format(str(e)),
            "Please try to use a smaller mesh or a low-order integrator.",
        ]
        raise OutOfMemoryError(os.linesep.join(error_msg))
    if trajectory_recorder is not None:
        trajectory_recorder.record(i + 1, u_0_fft)
        trajectory_recorder.return_in_fourier = return_in_fourier
        return trajectory_recorder.trajectory
    else:
        if return_in_fourier:
            return u_0_fft
        else:
            return f_mesh.ifft(u_0_fft).real
__call__ ¤
__call__(
    u: Optional[SpatialTensor["B C H ..."]] = None,
    u_fft: Optional[FourierTensor["B C H ..."]] = None,
    mesh: Optional[
        Union[
            Sequence[tuple[float, float, int]],
            MeshGrid,
            FourierMesh,
        ]
    ] = None,
    return_in_fourier=False,
) -> Union[
    SpatialTensor["B C H ..."], FourierTensor["B C H ..."]
]

Call the operator with the provided input tensor. The operator will apply the linear coefficient and nonlinear function to the input tensor.

Parameters:

Name Type Description Default
u Optional[SpatialTensor]

Input tensor in spatial domain. Default is None.

None
u_fft Optional[FourierTensor]

Input tensor in Fourier domain. Default is None. At least one of u or u_fft should be provided.

None
mesh Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]

Mesh information or mesh object. Default is None. If None, the mesh registered in the operator will be used. You can use register_mesh to register a mesh before calling the operator.

None
return_in_fourier bool

If True, return the result in Fourier domain. If False, return the result in spatial domain. Default is False.

False

Returns:

Type Description
Union[SpatialTensor['B C H ...'], FourierTensor['B C H ...']]

Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]: Result of the operator in spatial or Fourier domain.

Source code in torchfsm/operator/_base.py
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
def __call__(
    self,
    u: Optional[SpatialTensor["B C H ..."]] = None,
    u_fft: Optional[FourierTensor["B C H ..."]] = None,
    mesh: Optional[
        Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]
    ] = None,
    return_in_fourier=False,
) -> Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]:
    r"""
    Call the operator with the provided input tensor. The operator will apply the linear coefficient and nonlinear function to the input tensor.

    Args:
        u (Optional[SpatialTensor]): Input tensor in spatial domain. Default is None.
        u_fft (Optional[FourierTensor]): Input tensor in Fourier domain. Default is None.
            At least one of u or u_fft should be provided.
        mesh (Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]): Mesh information or mesh object. Default is None.
            If None, the mesh registered in the operator will be used. You can use `register_mesh` to register a mesh before calling the operator.
        return_in_fourier (bool): If True, return the result in Fourier domain. If False, return the result in spatial domain. Default is False.

    Returns:
        Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]: Result of the operator in spatial or Fourier domain.
    """

    if self._state_dict["f_mesh"] is None or mesh is not None:
        mesh, n_channel = self._pre_check(u, u_fft, mesh)
        self.register_mesh(mesh, n_channel)
    else:
        self._pre_check(u=u, u_fft=u_fft, mesh=self._state_dict["f_mesh"])
    if self._state_dict["operator"] is None:
        self._build_operator()
    if u_fft is None:
        u_fft = self._state_dict["f_mesh"].fft(u)
    value_fft = self._state_dict["operator"](u_fft)
    if return_in_fourier:
        return value_fft
    else:
        return self._state_dict["f_mesh"].ifft(value_fft).real
to ¤
to(device=None, dtype=None)

Move the operator to the specified device and change the data type.

Parameters:

Name Type Description Default
device Optional[device]

Device to which the operator should be moved. Default is None.

None
dtype Optional[dtype]

Data type of the operator. Default is None.

None
Source code in torchfsm/operator/_base.py
805
806
807
808
809
810
811
812
813
814
815
816
817
def to(self, device=None, dtype=None):
    r"""
    Move the operator to the specified device and change the data type.

    Args:
        device (Optional[torch.device]): Device to which the operator should be moved. Default is None.
        dtype (Optional[torch.dtype]): Data type of the operator. Default is None.
    """
    if self._state_dict is not None:
        self._state_dict["f_mesh"].to(device=device, dtype=dtype)
        self.register_mesh(
            self._state_dict["f_mesh"], self._state_dict["n_channel"]
        )
__init__ ¤
__init__(
    linear_coef: ValueList[
        Union[LinearCoef, GeneratorLike]
    ] = None,
    coefs: Optional[List] = None,
) -> None
Source code in torchfsm/operator/_base.py
878
879
880
881
882
883
884
885
886
887
888
def __init__(
    self,
    linear_coef: ValueList[Union[LinearCoef, GeneratorLike]] = None,
    coefs: Optional[List] = None,
) -> None:
    if not isinstance(linear_coef, list):
        linear_coef = [linear_coef]
    super().__init__(
        linear_coef,
        coefs=coefs,
    )
__add__ ¤
__add__(other)
Source code in torchfsm/operator/_base.py
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
def __add__(self, other):
    if isinstance(other, LinearOperator):
        return LinearOperator(
            self.operator_cores + other.operator_cores,
            self.coefs + other.coefs,
        )
    elif isinstance(other, OperatorLike):
        return Operator(
            self.operator_cores + other.operator_cores,
            self.coefs + other.coefs,
        )
    elif isinstance(other, Tensor):
        return Operator(
            self.operator_cores
            + [lambda f_mesh, n_channel: _ExplicitSourceCore(other)],
            self.coefs + [1],
        )
    else:
        return NotImplemented
__mul__ ¤
__mul__(other)
Source code in torchfsm/operator/_base.py
914
915
916
917
918
919
920
def __mul__(self, other):
    if isinstance(other, OperatorLike):
        return NotImplemented
    else:
        return LinearOperator(
            self.operator_cores, [coef * other for coef in self.coefs]
        )
__neg__ ¤
__neg__()
Source code in torchfsm/operator/_base.py
922
923
924
925
def __neg__(self):
    return LinearOperator(
        self.operator_cores, [-1 * coef for coef in self.coefs]
    )

torchfsm.operator.NonlinearOperator ¤

Bases: OperatorLike, _DeAliasMixin

Operators that contain only nonlinear operations.

Parameters:

Name Type Description Default
nonlinear_func ValueList[Union[NonlinearFunc, GeneratorLike]]

List of NonlinearFunc or nonlinear function generators. Default is None.

None
coefs Optional[List]

List of coefficients for each nonlinear nonlinear_func. Default is None. If None, all coefficients are set to 1. The length of the list should match the number of nonlinear nonlinear_func.

None
Source code in torchfsm/operator/_base.py
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
class NonlinearOperator(OperatorLike, _DeAliasMixin):
    r"""
    Operators that contain only nonlinear operations.

    Args:
        nonlinear_func (ValueList[Union[NonlinearFunc, GeneratorLike]]): List of NonlinearFunc or nonlinear function generators. Default is None.
        coefs (Optional[List]): List of coefficients for each nonlinear nonlinear_func. Default is None.
            If None, all coefficients are set to 1.
            The length of the list should match the number of nonlinear nonlinear_func.
    """

    def __init__(
        self,
        nonlinear_func: ValueList[Union[NonlinearFunc, GeneratorLike]] = None,
        coefs: Optional[List] = None,
    ) -> None:
        if not isinstance(nonlinear_func, list):
            nonlinear_func = [nonlinear_func]
        super().__init__(
            nonlinear_func,
            coefs=coefs,
        )

    @property
    def is_linear(self):
        return False

    def __add__(self, other):
        if isinstance(other, NonlinearOperator):
            return NonlinearOperator(
                self.operator_cores + other.operator_cores,
                self.coefs + other.coefs,
            )
        elif isinstance(other, OperatorLike):
            return Operator(
                self.operator_cores + other.operator_cores,
                self.coefs + other.coefs,
            )
        elif isinstance(other, Tensor):
            return Operator(
                self.operator_cores
                + [lambda f_mesh, n_channel: _ExplicitSourceCore(other)],
                self.coefs + [1],
            )
        else:
            return NotImplemented

    def __mul__(self, other):
        if isinstance(other, OperatorLike):
            return NotImplemented
        else:
            return NonlinearOperator(
                self.operator_cores, [coef * other for coef in self.coefs]
            )

    def __neg__(self):
        return NonlinearOperator(
            self.operator_cores, [-1 * coef for coef in self.coefs]
        )
operator_cores instance-attribute ¤
operator_cores = default(operator_cores, [])
coefs instance-attribute ¤
coefs = default(coefs, [1] * len(operator_cores))
is_linear property ¤
is_linear
set_de_aliasing_rate ¤
set_de_aliasing_rate(de_aliasing_rate: float)

Set the de-aliasing rate for the nonlinear operator. Args: de_aliasing_rate (float): De-aliasing rate. Default is ⅔.

Source code in torchfsm/operator/_base.py
272
273
274
275
276
277
278
279
280
def set_de_aliasing_rate(self, de_aliasing_rate: float):
    r"""
    Set the de-aliasing rate for the nonlinear operator.
    Args:
        de_aliasing_rate (float): De-aliasing rate. Default is 2/3.
    """

    self._de_aliasing_rate = de_aliasing_rate
    self._state_dict = {key:None for key in self._state_dict.keys()}
__radd__ ¤
__radd__(other)
Source code in torchfsm/operator/_base.py
174
175
def __radd__(self, other):
    return self + other
__iadd__ ¤
__iadd__(other)
Source code in torchfsm/operator/_base.py
177
178
def __iadd__(self, other):
    return self + other
__sub__ ¤
__sub__(other)
Source code in torchfsm/operator/_base.py
180
181
182
183
184
def __sub__(self, other):
    try:
        return self + (-1 * other)
    except Exception:
        return NotImplemented
__rsub__ ¤
__rsub__(other)
Source code in torchfsm/operator/_base.py
186
187
188
189
190
def __rsub__(self, other):
    try:
        return other + (-1 * self)
    except Exception:
        return NotImplemented
__isub__ ¤
__isub__(other)
Source code in torchfsm/operator/_base.py
192
193
def __isub__(self, other):
    return self - other
__rmul__ ¤
__rmul__(other)
Source code in torchfsm/operator/_base.py
195
196
def __rmul__(self, other):
    return self * other
__imul__ ¤
__imul__(other)
Source code in torchfsm/operator/_base.py
198
199
def __imul__(self, other):
    return self * other
__truediv__ ¤
__truediv__(other)
Source code in torchfsm/operator/_base.py
201
202
203
204
205
def __truediv__(self, other):
    try:
        return self * (1 / other)
    except:
        return NotImplemented
register_mesh ¤
register_mesh(
    mesh: Union[
        Sequence[tuple[float, float, int]],
        MeshGrid,
        FourierMesh,
    ],
    n_channel: int,
    device=None,
    dtype=None,
)

Register the mesh and number of channels for the operator. Once a mesh is registered, mesh information is not required for integration and operator call.

Parameters:

Name Type Description Default
mesh Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]

Mesh information or mesh object.

required
n_channel int

Number of channels of the input tensor.

required
device Optional[device]

Device to which the mesh should be moved. Default is None.

None
dtype Optional[dtype]

Data type of the mesh. Default is None.

None
Source code in torchfsm/operator/_base.py
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
def register_mesh(
    self,
    mesh: Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh],
    n_channel: int,
    device=None,
    dtype=None,
):
    r"""
    Register the mesh and number of channels for the operator. Once a mesh is registered, mesh information is not required for integration and operator call.

    Args:
        mesh (Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]): Mesh information or mesh object.
        n_channel (int): Number of channels of the input tensor.
        device (Optional[torch.device]): Device to which the mesh should be moved. Default is None.
        dtype (Optional[torch.dtype]): Data type of the mesh. Default is None.
    """
    if isinstance(mesh, FourierMesh):
        f_mesh = mesh
        if device is not None or dtype is not None:
            f_mesh.to(device=device, dtype=dtype)
    else:
        f_mesh = FourierMesh(mesh, device=device, dtype=dtype)
    for key in self._state_dict:
        self._state_dict[key] = None
    self._state_dict.update(
        {
            "f_mesh": f_mesh,
            "n_channel": n_channel,
        }
    )
    linear_coefs = []
    nonlinear_funcs = []
    for coef, core in zip(self.coefs, self.operator_cores):
        op = (
            core(f_mesh, n_channel)
            if (
                not isinstance(core, LinearCoef)
                and not isinstance(core, NonlinearFunc)
            )
            else core
        )
        if isinstance(op, LinearCoef):
            linear_coefs.append((coef, op))
        elif isinstance(op, NonlinearFunc):
            nonlinear_funcs.append((coef, op))
        else:
            raise ValueError(f"Operator {op} is not supported")
    clean_up_memory()
    self._build_linear_coefs(linear_coefs)
    self._build_nonlinear_funcs(nonlinear_funcs)
register_additional_check ¤
register_additional_check(func: Callable[[int, int], bool])

Register an additional check function for the value and mesh compatibility.

Parameters:

Name Type Description Default
func Callable[[int, int], bool]

Function that takes the dimension of the value and mesh as input and returns a boolean indicating whether they are compatible.

required
Source code in torchfsm/operator/_base.py
630
631
632
633
634
635
636
637
def register_additional_check(self, func: Callable[[int, int], bool]):
    r"""
    Register an additional check function for the value and mesh compatibility.

    Args:
        func (Callable[[int, int], bool]): Function that takes the dimension of the value and mesh as input and returns a boolean indicating whether they are compatible.
    """
    self._value_mesh_check_func = func
add_core ¤
add_core(
    core: Union[LinearCoef, NonlinearFunc, GeneratorLike],
    coef=1,
)

Add a generator to the operator.

Parameters:

Name Type Description Default
core Union[LinearCoef, NonlinearFunc, GeneratorLike]

Core to be added.

required
coef float

Coefficient for the generator. Default is 1.

1
Source code in torchfsm/operator/_base.py
639
640
641
642
643
644
645
646
647
648
def add_core(self,core:Union[LinearCoef,NonlinearFunc,GeneratorLike],coef=1):
    r"""
    Add a generator to the operator.

    Args:
        core (Union[LinearCoef,NonlinearFunc,GeneratorLike]): Core to be added. 
        coef (float): Coefficient for the generator. Default is 1.
    """
    self.operator_cores.append(core)
    self.coefs.append(coef)
set_integrator ¤
set_integrator(
    integrator: Union[
        Literal["auto"],
        ETDRKIntegrator,
        SETDRKIntegrator,
        RKIntegrator,
    ],
    **integrator_config
)

Set the integrator for the operator. The integrator is used for time integration of the operator.

Parameters:

Name Type Description Default
integrator Union[Literal['auto'], ETDRKIntegrator, SETDRKIntegrator, RKIntegrator]

Integrator to be used. If "auto", the integrator will be chosen automatically based on the operator type. If "auto", the integrator will be set as ETDRKIntegrator.ETDRK0 for linear operators and ETDRKIntegrator.ETDRK2 for nonlinear operators.

required
**integrator_config

Additional configuration for the integrator.

{}
Source code in torchfsm/operator/_base.py
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
def set_integrator(
    self,
    integrator: Union[
        Literal["auto"], ETDRKIntegrator, SETDRKIntegrator, RKIntegrator
    ],
    **integrator_config,
):
    r"""
    Set the integrator for the operator. The integrator is used for time integration of the operator.

    Args:
        integrator (Union[Literal["auto"], ETDRKIntegrator, SETDRKIntegrator, RKIntegrator]): Integrator to be used. If "auto", the integrator will be chosen automatically based on the operator type.
            If "auto", the integrator will be set as ETDRKIntegrator.ETDRK0 for linear operators and ETDRKIntegrator.ETDRK2 for nonlinear operators.
        **integrator_config: Additional configuration for the integrator.
    """

    if isinstance(integrator, str):
        assert (
            integrator == "auto"
        ), "The integrator should be 'auto' or an instance of ETDRKIntegrator, SETDRKIntegrator or RKIntegrator"
    else:
        assert (
            isinstance(integrator, ETDRKIntegrator)
            or isinstance(integrator, SETDRKIntegrator)
            or isinstance(integrator, RKIntegrator)
        ), "The integrator should be 'auto' or an instance of ETDRKIntegrator, SETDRKIntegrator or RKIntegrator"
    self._integrator = integrator
    self._integrator_config = integrator_config
    self._state_dict["integrator"] = None
integrate ¤
integrate(
    u_0: Optional[Tensor] = None,
    u_0_fft: Optional[Tensor] = None,
    dt: float = 1,
    step: int = 1,
    mesh: Optional[
        Union[
            Sequence[tuple[float, float, int]],
            MeshGrid,
            FourierMesh,
        ]
    ] = None,
    progressive: bool = False,
    trajectory_recorder: Optional[_TrajRecorder] = None,
    return_in_fourier: bool = False,
    nan_check: bool = False,
) -> Union[
    SpatialTensor["B C H ..."],
    SpatialTensor["B T C H ..."],
    FourierTensor["B C H ..."],
    FourierTensor["B T C H ..."],
]

Integrate the operator using the provided initial condition and time step.

Parameters:

Name Type Description Default
u_0 Optional[Tensor]

Initial condition in spatial domain. Default is None.

None
u_0_fft Optional[Tensor]

Initial condition in Fourier domain. Default is None. At least one of u_0 or u_0_fft should be provided.

None
dt float

Time step for the integrator. Default is 1.

1
step int

Number of time steps to integrate. Default is 1.

1
mesh Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]

Mesh information or mesh object. Default is None. If None, the mesh registered in the operator will be used. You can use register_mesh to register a mesh before integration.

None
progressive bool

If True, show a progress bar during integration. Default is False.

False
trajectory_recorder Optional[_TrajRecorder]

Trajectory recorder for recording the trajectory during integration. Default is None. If None, no trajectory will be recorded. The function will only return the final frame.

None
return_in_fourier bool

If True, return the result in Fourier domain. If False, return the result in spatial domain. Default is False.

False
Nan_check bool

If True, check for NaN values in the result. If NaN values are found, raise a NanSimulationError. Default is False.

required

Returns:

Type Description
Union[SpatialTensor['B C H ...'], SpatialTensor['B T C H ...'], FourierTensor['B C H ...'], FourierTensor['B T C H ...']]

Union[SpatialTensor["B C H ..."], SpatialTensor["B T C H ..."], FourierTensor["B C H ..."], FourierTensor["B T C H ..."]]: Integrated result in spatial or Fourier domain. If trajectory_recorder is provided, the result will be a trajectory tensor of shape (B, T, C, H, ...). Otherwise, the result will be a tensor of shape (B, C, H, ...). If return_in_fourier is True, the result will be in Fourier domain. Otherwise, it will be in spatial domain.

Source code in torchfsm/operator/_base.py
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
def integrate(
    self,
    u_0: Optional[torch.Tensor] = None,
    u_0_fft: Optional[torch.Tensor] = None,
    dt: float = 1,
    step: int = 1,
    mesh: Optional[
        Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]
    ] = None,
    progressive: bool = False,
    trajectory_recorder: Optional[_TrajRecorder] = None,
    return_in_fourier: bool = False,
    nan_check: bool = False,
) -> Union[
    SpatialTensor["B C H ..."],
    SpatialTensor["B T C H ..."],
    FourierTensor["B C H ..."],
    FourierTensor["B T C H ..."],
]:
    r"""
    Integrate the operator using the provided initial condition and time step.

    Args:
        u_0 (Optional[torch.Tensor]): Initial condition in spatial domain. Default is None.
        u_0_fft (Optional[torch.Tensor]): Initial condition in Fourier domain. Default is None.
            At least one of u_0 or u_0_fft should be provided.
        dt (float): Time step for the integrator. Default is 1.
        step (int): Number of time steps to integrate. Default is 1.
        mesh (Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]): Mesh information or mesh object. Default is None.
            If None, the mesh registered in the operator will be used. You can use `register_mesh` to register a mesh before integration.
        progressive (bool): If True, show a progress bar during integration. Default is False.
        trajectory_recorder (Optional[_TrajRecorder]): Trajectory recorder for recording the trajectory during integration. Default is None.
            If None, no trajectory will be recorded. The function will only return the final frame.
        return_in_fourier (bool): If True, return the result in Fourier domain. If False, return the result in spatial domain. Default is False.
        Nan_check (bool): If True, check for NaN values in the result. If NaN values are found, raise a NanSimulationError. Default is False.

    Returns:
        Union[SpatialTensor["B C H ..."], SpatialTensor["B T C H ..."], FourierTensor["B C H ..."], FourierTensor["B T C H ..."]]: Integrated result in spatial or Fourier domain.
            If trajectory_recorder is provided, the result will be a trajectory tensor of shape (B, T, C, H, ...). Otherwise, the result will be a tensor of shape (B, C, H, ...).
            If return_in_fourier is True, the result will be in Fourier domain. Otherwise, it will be in spatial domain.

    """
    if self._state_dict["f_mesh"] is None or mesh is not None:
        mesh, n_channel = self._pre_check(u=u_0, u_fft=u_0_fft, mesh=mesh)
        self.register_mesh(mesh, n_channel)
    else:
        self._pre_check(u=u_0, u_fft=u_0_fft, mesh=self._state_dict["f_mesh"])
    if self._state_dict["integrator"] is None:
        self._build_integrator(dt)
    elif self._is_etdrk_integrator:
        if self._state_dict["integrator"].dt != dt:
            self._build_integrator(dt)
    f_mesh = self._state_dict["f_mesh"]
    if u_0_fft is None:
        u_0_fft = f_mesh.fft(u_0)
    p_bar = tqdm(range(step), desc="Integrating", disable=not progressive)
    clean_up_memory()
    try:
        for i in p_bar:
            if trajectory_recorder is not None:
                trajectory_recorder.record(i, u_0_fft)
                if trajectory_recorder._shutdown_flag:
                    break
            u_0_fft = self._state_dict["integrator"].forward(u_0_fft, dt)
            if nan_check:
                if torch.isnan(u_0_fft).any():
                    raise NanSimulationError(
                        f"NaN values found in the result at step {i}. Please check the input and simulation parameters."
                    )
    except TorchOutOfMemoryError as e:
        error_msg = [
            "Cuda out of memory when integrating the operator.",
            "Original error message: {}".format(str(e)),
            "Please try to use a smaller mesh or a low-order integrator.",
        ]
        raise OutOfMemoryError(os.linesep.join(error_msg))
    if trajectory_recorder is not None:
        trajectory_recorder.record(i + 1, u_0_fft)
        trajectory_recorder.return_in_fourier = return_in_fourier
        return trajectory_recorder.trajectory
    else:
        if return_in_fourier:
            return u_0_fft
        else:
            return f_mesh.ifft(u_0_fft).real
__call__ ¤
__call__(
    u: Optional[SpatialTensor["B C H ..."]] = None,
    u_fft: Optional[FourierTensor["B C H ..."]] = None,
    mesh: Optional[
        Union[
            Sequence[tuple[float, float, int]],
            MeshGrid,
            FourierMesh,
        ]
    ] = None,
    return_in_fourier=False,
) -> Union[
    SpatialTensor["B C H ..."], FourierTensor["B C H ..."]
]

Call the operator with the provided input tensor. The operator will apply the linear coefficient and nonlinear function to the input tensor.

Parameters:

Name Type Description Default
u Optional[SpatialTensor]

Input tensor in spatial domain. Default is None.

None
u_fft Optional[FourierTensor]

Input tensor in Fourier domain. Default is None. At least one of u or u_fft should be provided.

None
mesh Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]

Mesh information or mesh object. Default is None. If None, the mesh registered in the operator will be used. You can use register_mesh to register a mesh before calling the operator.

None
return_in_fourier bool

If True, return the result in Fourier domain. If False, return the result in spatial domain. Default is False.

False

Returns:

Type Description
Union[SpatialTensor['B C H ...'], FourierTensor['B C H ...']]

Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]: Result of the operator in spatial or Fourier domain.

Source code in torchfsm/operator/_base.py
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
def __call__(
    self,
    u: Optional[SpatialTensor["B C H ..."]] = None,
    u_fft: Optional[FourierTensor["B C H ..."]] = None,
    mesh: Optional[
        Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]
    ] = None,
    return_in_fourier=False,
) -> Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]:
    r"""
    Call the operator with the provided input tensor. The operator will apply the linear coefficient and nonlinear function to the input tensor.

    Args:
        u (Optional[SpatialTensor]): Input tensor in spatial domain. Default is None.
        u_fft (Optional[FourierTensor]): Input tensor in Fourier domain. Default is None.
            At least one of u or u_fft should be provided.
        mesh (Optional[Union[Sequence[tuple[float, float, int]], MeshGrid, FourierMesh]]): Mesh information or mesh object. Default is None.
            If None, the mesh registered in the operator will be used. You can use `register_mesh` to register a mesh before calling the operator.
        return_in_fourier (bool): If True, return the result in Fourier domain. If False, return the result in spatial domain. Default is False.

    Returns:
        Union[SpatialTensor["B C H ..."], FourierTensor["B C H ..."]]: Result of the operator in spatial or Fourier domain.
    """

    if self._state_dict["f_mesh"] is None or mesh is not None:
        mesh, n_channel = self._pre_check(u, u_fft, mesh)
        self.register_mesh(mesh, n_channel)
    else:
        self._pre_check(u=u, u_fft=u_fft, mesh=self._state_dict["f_mesh"])
    if self._state_dict["operator"] is None:
        self._build_operator()
    if u_fft is None:
        u_fft = self._state_dict["f_mesh"].fft(u)
    value_fft = self._state_dict["operator"](u_fft)
    if return_in_fourier:
        return value_fft
    else:
        return self._state_dict["f_mesh"].ifft(value_fft).real
to ¤
to(device=None, dtype=None)

Move the operator to the specified device and change the data type.

Parameters:

Name Type Description Default
device Optional[device]

Device to which the operator should be moved. Default is None.

None
dtype Optional[dtype]

Data type of the operator. Default is None.

None
Source code in torchfsm/operator/_base.py
805
806
807
808
809
810
811
812
813
814
815
816
817
def to(self, device=None, dtype=None):
    r"""
    Move the operator to the specified device and change the data type.

    Args:
        device (Optional[torch.device]): Device to which the operator should be moved. Default is None.
        dtype (Optional[torch.dtype]): Data type of the operator. Default is None.
    """
    if self._state_dict is not None:
        self._state_dict["f_mesh"].to(device=device, dtype=dtype)
        self.register_mesh(
            self._state_dict["f_mesh"], self._state_dict["n_channel"]
        )
__init__ ¤
__init__(
    nonlinear_func: ValueList[
        Union[NonlinearFunc, GeneratorLike]
    ] = None,
    coefs: Optional[List] = None,
) -> None
Source code in torchfsm/operator/_base.py
939
940
941
942
943
944
945
946
947
948
949
def __init__(
    self,
    nonlinear_func: ValueList[Union[NonlinearFunc, GeneratorLike]] = None,
    coefs: Optional[List] = None,
) -> None:
    if not isinstance(nonlinear_func, list):
        nonlinear_func = [nonlinear_func]
    super().__init__(
        nonlinear_func,
        coefs=coefs,
    )
__add__ ¤
__add__(other)
Source code in torchfsm/operator/_base.py
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
def __add__(self, other):
    if isinstance(other, NonlinearOperator):
        return NonlinearOperator(
            self.operator_cores + other.operator_cores,
            self.coefs + other.coefs,
        )
    elif isinstance(other, OperatorLike):
        return Operator(
            self.operator_cores + other.operator_cores,
            self.coefs + other.coefs,
        )
    elif isinstance(other, Tensor):
        return Operator(
            self.operator_cores
            + [lambda f_mesh, n_channel: _ExplicitSourceCore(other)],
            self.coefs + [1],
        )
    else:
        return NotImplemented
__mul__ ¤
__mul__(other)
Source code in torchfsm/operator/_base.py
975
976
977
978
979
980
981
def __mul__(self, other):
    if isinstance(other, OperatorLike):
        return NotImplemented
    else:
        return NonlinearOperator(
            self.operator_cores, [coef * other for coef in self.coefs]
        )
__neg__ ¤
__neg__()
Source code in torchfsm/operator/_base.py
983
984
985
986
def __neg__(self):
    return NonlinearOperator(
        self.operator_cores, [-1 * coef for coef in self.coefs]
    )