| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | 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.w1 = nn.Parameter(torch.rand(10, 128)) |
| |
|
| | def forward(self, x, w0, y): |
| | x = F.embedding(x, w0) |
| | y = F.embedding(y, self.w1) |
| | return x, y |
| |
|
| | def test(): |
| | net = Model() |
| | net.eval() |
| |
|
| | torch.manual_seed(0) |
| | x = torch.randint(10, (1, 13), dtype=torch.int) |
| | w0 = torch.rand(10, 128) |
| | y = torch.randint(10, (1, 11), dtype=torch.int) |
| |
|
| | a0, a1 = net(x, w0, y) |
| |
|
| | |
| | mod = torch.jit.trace(net, (x, w0, y)) |
| | mod.save("test_F_embedding.pt") |
| |
|
| | |
| | import os |
| | os.system("../src/pnnx test_F_embedding.pt inputshape=[1,13]i32,[10,128],[1,11]i32") |
| |
|
| | |
| | import test_F_embedding_pnnx |
| | b0, b1 = test_F_embedding_pnnx.test_inference() |
| |
|
| | return torch.equal(a0, b0) and torch.equal(a1, b1) |
| |
|
| | if __name__ == "__main__": |
| | if test(): |
| | exit(0) |
| | else: |
| | exit(1) |
| |
|