|
- # 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.shuffle_0 = nn.ChannelShuffle(2)
- self.shuffle_1 = nn.ChannelShuffle(16)
-
- def forward(self, x, y):
- x = self.shuffle_0(x)
- x = self.shuffle_1(x)
-
- y = self.shuffle_0(y)
- y = self.shuffle_1(y)
- return x, y
-
- def test():
- net = Model()
- net.eval()
-
- torch.manual_seed(0)
- x = torch.rand(1, 64, 6, 8)
- y = torch.rand(1, 96, 7, 9)
-
- a0, a1 = net(x, y)
-
- # export torchscript
- mod = torch.jit.trace(net, (x, y))
- mod.save("test_nn_ChannelShuffle.pt")
-
- # torchscript to pnnx
- import os
- os.system("../src/pnnx test_nn_ChannelShuffle.pt inputshape=[1,64,6,8],[1,96,7,9]")
-
- # pnnx inference
- import test_nn_ChannelShuffle_pnnx
- b0, b1 = test_nn_ChannelShuffle_pnnx.test_inference()
-
- return torch.equal(a0, b0) and torch.equal(a1, b1)
-
- if __name__ == "__main__":
- if test():
- exit(0)
- else:
- exit(1)
|