|
- # 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.act_0 = nn.RReLU()
- self.act_1 = nn.RReLU(lower=0.1, upper=0.42)
-
- def forward(self, x, y, z, w):
- x = x * 2 - 1
- y = y * 2 - 1
- z = z * 2 - 1
- w = w * 2 - 1
- x = self.act_0(x)
- y = self.act_0(y)
- z = self.act_1(z)
- w = self.act_1(w)
- return x, y, z, w
-
- def test():
- net = Model()
- net.eval()
-
- torch.manual_seed(0)
- x = torch.rand(1, 12)
- y = torch.rand(1, 12, 64)
- z = torch.rand(1, 12, 24, 64)
- w = torch.rand(1, 12, 24, 32, 64)
-
- a = net(x, y, z, w)
-
- # export torchscript
- mod = torch.jit.trace(net, (x, y, z, w))
- mod.save("test_nn_RReLU.pt")
-
- # torchscript to pnnx
- import os
- os.system("../src/pnnx test_nn_RReLU.pt inputshape=[1,12],[1,12,64],[1,12,24,64],[1,12,24,32,64]")
-
- # pnnx inference
- import test_nn_RReLU_pnnx
- b = test_nn_RReLU_pnnx.test_inference()
-
- for a0, b0 in zip(a, b):
- if not torch.allclose(a0, b0, 1e-4, 1e-4):
- return False
- return True
-
- if __name__ == "__main__":
- if test():
- exit(0)
- else:
- exit(1)
|