deepin-ocr/3rdparty/ncnn/tools/pnnx/tests/test_torch_matmul.py

104 lines
3.5 KiB
Python
Raw Normal View History

# Tencent is pleased to support the open source community by making ncnn available.
#
# Copyright (C) 2022 THL A29 Limited, a Tencent company. All rights reserved.
#
# Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
# in compliance with the License. You may obtain a copy of the License at
#
# https://opensource.org/licenses/BSD-3-Clause
#
# 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 torch
import torch.nn as nn
import torch.nn.functional as F
class Model(nn.Module):
def __init__(self):
super(Model, self).__init__()
def forward(self, a0, a1, b0, b1, c0, c1, d0, d1, e0, e1, f0, f1, g0, g1, h0, h1, i0, i1, j0, j1, k0, k1, l0, l1, m0, m1, n0, n1, o0, o1, p0, p1):
a = torch.matmul(a0, a1)
b = torch.matmul(b0, b1)
c = torch.matmul(c0, c1)
d = torch.matmul(d0, d1)
e = torch.matmul(e0, e1)
f = torch.matmul(f0, f1)
g = torch.matmul(g0, g1)
h = torch.matmul(h0, h1)
i = torch.matmul(i0, i1)
j = torch.matmul(j0, j1)
k = torch.matmul(k0, k1)
l = torch.matmul(l0, l1)
m = torch.matmul(m0, m1)
n = torch.matmul(n0, n1)
o = torch.matmul(o0, o1)
p = torch.matmul(p0, p1)
return a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p
def test():
net = Model()
net.eval()
torch.manual_seed(0)
a0 = torch.rand(13)
a1 = torch.rand(13)
b0 = torch.rand(14)
b1 = torch.rand(14, 6)
c0 = torch.rand(13)
c1 = torch.rand(7, 13, 4)
d0 = torch.rand(15)
d1 = torch.rand(5, 7, 15, 9)
e0 = torch.rand(5, 12)
e1 = torch.rand(12)
f0 = torch.rand(10, 3, 4)
f1 = torch.rand(4)
g0 = torch.rand(6, 3, 7, 14)
g1 = torch.rand(14)
h0 = torch.rand(23, 14)
h1 = torch.rand(14, 25)
i0 = torch.rand(4, 5)
i1 = torch.rand(10, 5, 40)
j0 = torch.rand(14, 6)
j1 = torch.rand(2, 4, 6, 20)
k0 = torch.rand(10, 23, 14)
k1 = torch.rand(14, 5)
l0 = torch.rand(7, 8, 13, 14)
l1 = torch.rand(14, 35)
m0 = torch.rand(10, 23, 14)
m1 = torch.rand(10, 14, 5)
n0 = torch.rand(10, 13, 18)
n1 = torch.rand(3, 1, 18, 8)
o0 = torch.rand(1, 5, 23, 11)
o1 = torch.rand(8, 1, 11, 9)
p0 = torch.rand(6, 9, 13, 14)
p1 = torch.rand(6, 9, 14, 15)
a = net(a0, a1, b0, b1, c0, c1, d0, d1, e0, e1, f0, f1, g0, g1, h0, h1, i0, i1, j0, j1, k0, k1, l0, l1, m0, m1, n0, n1, o0, o1, p0, p1)
# export torchscript
mod = torch.jit.trace(net, (a0, a1, b0, b1, c0, c1, d0, d1, e0, e1, f0, f1, g0, g1, h0, h1, i0, i1, j0, j1, k0, k1, l0, l1, m0, m1, n0, n1, o0, o1, p0, p1))
mod.save("test_torch_matmul.pt")
# torchscript to pnnx
import os
os.system("../src/pnnx test_torch_matmul.pt inputshape=[13],[13],[14],[14,6],[13],[7,13,4],[15],[5,7,15,9],[5,12],[12],[10,3,4],[4],[6,3,7,14],[14],[23,14],[14,25],[4,5],[10,5,40],[14,6],[2,4,6,20],[10,23,14],[14,5],[7,8,13,14],[14,35],[10,23,14],[10,14,5],[10,13,18],[3,1,18,8],[1,5,23,11],[8,1,11,9],[6,9,13,14],[6,9,14,15]")
# pnnx inference
import test_torch_matmul_pnnx
b = test_torch_matmul_pnnx.test_inference()
for a0, b0 in zip(a, b):
if not torch.equal(a0, b0):
return False
return True
if __name__ == "__main__":
if test():
exit(0)
else:
exit(1)