|
- # Copyright 2021 Tencent
- # SPDX-License-Identifier: BSD-3-Clause
-
- import torch
- import torch.nn as nn
- import torch.nn.functional as F
-
-
- class Model(nn.Module):
- def __init__(self):
- super(Model, self).__init__()
-
- self.glu0 = nn.GLU(dim=0)
- self.glu1 = nn.GLU(dim=1)
- self.glu2 = nn.GLU(dim=2)
-
- def forward(self, x, y, z):
- x0 = self.glu0(x)
-
- y0 = self.glu0(y)
- y1 = self.glu1(y)
-
- z0 = self.glu0(z)
- z1 = self.glu1(z)
- z2 = self.glu2(z)
- return x0, y0, y1, z0, z1, z2
-
-
- def test():
- net = Model()
- net.eval()
-
- torch.manual_seed(0)
- x = torch.rand(18)
- y = torch.rand(12, 16)
- z = torch.rand(24, 28, 34)
-
- x0, y0, y1, z0, z1, z2 = net(x, y, z)
-
- # export torchscript
- mod = torch.jit.trace(net, (x, y, z))
- mod.save("test_nn_GLU.pt")
-
- # torchscript to pnnx
- import os
-
- os.system("../src/pnnx test_nn_GLU.pt inputshape=[18],[12,16],[24,28,34]")
-
- # pnnx inference
- import test_nn_GLU_pnnx
-
- x0p, y0p, y1p, z0p, z1p, z2p = test_nn_GLU_pnnx.test_inference()
-
- return (
- torch.equal(x0, x0p)
- and torch.equal(y0, y0p)
- and torch.equal(y1, y1p)
- and torch.equal(z0, z0p)
- and torch.equal(z1, z1p)
- and torch.equal(z2, z2p)
- )
-
-
- if __name__ == "__main__":
- if test():
- exit(0)
- else:
- exit(1)
|