mindflow.cell.neural_operators.fno1d 源代码

# Copyright 2022 Huawei Technologies Co., Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ============================================================================

import numpy as np

import mindspore.common.dtype as mstype
from mindspore import ops, nn, Tensor, Parameter
from mindspore.ops import operations as P

from .dft import dft1, idft1
from ...common.math import get_grid_1d
from ...utils.check_func import check_param_type


class SpectralConv1dDft(nn.Cell):
    def __init__(self, in_channels, out_channels, modes1, resolution, compute_dtype=mstype.float32):
        super().__init__()
        self.in_channels = in_channels
        self.out_channels = out_channels
        self.modes1 = modes1
        self.resolution = resolution
        self.compute_dtype = compute_dtype

        self.scale = (1. / (in_channels * out_channels))
        w_re = Tensor(self.scale * np.random.rand(in_channels, out_channels, self.modes1), dtype=mstype.float32)
        w_im = Tensor(self.scale * np.random.rand(in_channels, out_channels, self.modes1), dtype=mstype.float32)
        self.w_re = Parameter(w_re, requires_grad=True)
        self.w_im = Parameter(w_im, requires_grad=True)
        self.dft1_cell = dft1(shape=(self.resolution,),
                              modes=modes1, compute_dtype=compute_dtype)
        self.idft1_cell = idft1(shape=(self.resolution,),
                                modes=modes1, compute_dtype=compute_dtype)

    @staticmethod
    def mul1d(inputs, weights):
        weights = weights.expand_dims(0)
        inputs = inputs.expand_dims(2)
        out = inputs * weights
        return out.sum(1)

    def construct(self, x: Tensor):
        x_re = x
        x_im = ops.zeros_like(x_re)
        x_ft_re, x_ft_im = self.dft1_cell((x_re, x_im))

        w_re = P.Cast()(self.w_re, self.compute_dtype)
        w_im = P.Cast()(self.w_im, self.compute_dtype)
        out_ft_re = \
            self.mul1d(x_ft_re[:, :, :self.modes1], w_re) \
            - self.mul1d(x_ft_im[:, :, :self.modes1], w_im)
        out_ft_im = \
            self.mul1d(x_ft_re[:, :, :self.modes1], w_re) \
            + self.mul1d(x_ft_im[:, :, :self.modes1], w_im)

        x, _ = self.idft1_cell((out_ft_re, out_ft_im))
        return x


class FNOBlock(nn.Cell):
    def __init__(self, in_channels, out_channels, modes1, resolution=1024, gelu=True, compute_dtype=mstype.float32):
        super().__init__()
        self.conv = SpectralConv1dDft(in_channels, out_channels, modes1, resolution, compute_dtype=compute_dtype)
        self.w = nn.Conv1d(in_channels, out_channels, 1).to_float(compute_dtype)

        if gelu:
            self.act = ops.GeLU()
        else:
            self.act = ops.Identity()

    def construct(self, x):
        return self.act(self.conv(x) + self.w(x)) + x


[文档]class FNO1D(nn.Cell): r""" The 1-dimensional Fourier Neural Operator (FNO1D) contains a lifting layer, multiple Fourier layers and a decoder layer. The details can be found in `Fourier neural operator for parametric partial differential equations <https://arxiv.org/pdf/2010.08895.pdf>`_. Args: in_channels (int): The number of channels in the input space. out_channels (int): The number of channels in the output space. resolution (int): The spatial resolution of the input. modes (int): The number of low-frequency components to keep. channels (int): The number of channels after dimension lifting of the input. Default: 20. depths (int): The number of FNO layers. Default: 4. mlp_ratio (int): The number of channels lifting ratio of the decoder layer. Default: 4. compute_dtype (dtype.Number): The computation type of dense. Default mstype.float16. Should be mstype.float32 or mstype.float16. mstype.float32 is recommended for the GPU backend, mstype.float16 is recommended for the Ascend backend. Inputs: - **x** (Tensor) - Tensor of shape :math:`(batch\_size, resolution, input\_dims)`. Outputs: Tensor, the output of this FNO network. - **output** (Tensor) -Tensor of shape :math:`(batch\_size, resolution, output\_dims)`. Raises: TypeError: If `in_channels` is not an int. TypeError: If `out_channels` is not an int. TypeError: If `resolution` is not an int. TypeError: If `modes` is not an int. ValueError: If `modes` is less than 1. Supported Platforms: ``Ascend`` ``GPU`` Examples: >>> import numpy as np >>> from mindspore.common.initializer import initializer, Normal >>> from mindflow.cell.neural_operators import FNO1D >>> B, W, C = 32,1024,1 >>> input_ = initializer(Normal(), [B, W, C]) >>> net = FNO1D(in_channels=1, out_channels=1, resolution=64, modes=12) >>> output = net(input_) >>> print(output.shape) (32, 1024, 1) """ def __init__(self, in_channels, out_channels, resolution, modes, channels=20, depths=4, mlp_ratio=4, compute_dtype=mstype.float32): super().__init__() check_param_type(in_channels, "in_channels", data_type=int, exclude_type=bool) check_param_type(out_channels, "out_channels", data_type=int, exclude_type=bool) check_param_type(resolution, "resolution", data_type=int, exclude_type=bool) check_param_type(modes, "modes", data_type=int, exclude_type=bool) if modes < 1: raise ValueError( "modes must at least 1, but got mode: {}".format(modes)) self.modes1 = modes self.channels = channels self.fc_channel = mlp_ratio * channels self.fc0 = nn.Dense( in_channels + 1, self.channels).to_float(compute_dtype) self.layers = depths self.fno_seq = nn.SequentialCell() for _ in range(self.layers - 1): self.fno_seq.append(FNOBlock(self.channels, self.channels, modes1=self.modes1, resolution=resolution, compute_dtype=compute_dtype)) self.fno_seq.append( FNOBlock(self.channels, self.channels, self.modes1, gelu=False, compute_dtype=compute_dtype)) self.fc1 = nn.Dense( self.channels, self.fc_channel).to_float(compute_dtype) self.fc2 = nn.Dense( self.fc_channel, out_channels).to_float(compute_dtype) self.grid = Tensor(get_grid_1d(resolution), dtype=mstype.float32) self.concat = ops.Concat(axis=-1) self.act = ops.GeLU() def construct(self, x: Tensor): batch_size = x.shape[0] grid = self.grid.repeat(batch_size, axis=0) x = self.concat((x, grid)) x = self.fc0(x) x = x.transpose((0, 2, 1)) x = self.fno_seq(x) x = x.transpose((0, 2, 1)) x = self.fc1(x) x = self.act(x) x = self.fc2(x) return x