|
- # 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.pad_0 = nn.ConstantPad2d(2, 0.1)
- self.pad_1 = nn.ConstantPad2d(padding=(3,4,5,6), value=-2)
- self.pad_2 = nn.ConstantPad2d(padding=(1,0,2,0), value=0)
-
- def forward(self, x):
- x = self.pad_0(x)
- x = self.pad_1(x)
- x = self.pad_2(x)
- return x
-
- def test():
- net = Model()
- net.eval()
-
- torch.manual_seed(0)
- x = torch.rand(1, 12, 13, 13)
-
- a = net(x)
-
- # export torchscript
- mod = torch.jit.trace(net, x)
- mod.save("test_nn_ConstantPad2d.pt")
-
- # torchscript to pnnx
- import os
- os.system("../src/pnnx test_nn_ConstantPad2d.pt inputshape=[1,12,13,13]")
-
- # pnnx inference
- import test_nn_ConstantPad2d_pnnx
- b = test_nn_ConstantPad2d_pnnx.test_inference()
-
- return torch.equal(a, b)
-
- if __name__ == "__main__":
- if test():
- exit(0)
- else:
- exit(1)
|