| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | 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, x): |
| | x, indices = F.adaptive_max_pool3d(x, output_size=(7,6,5), return_indices=True) |
| | x = F.adaptive_max_pool3d(x, output_size=1) |
| | return x, indices |
| |
|
| | def test(): |
| | net = Model() |
| | net.eval() |
| |
|
| | torch.manual_seed(0) |
| | x = torch.rand(1, 12, 24, 33, 64) |
| |
|
| | a0, a1 = net(x) |
| |
|
| | |
| | mod = torch.jit.trace(net, x) |
| | mod.save("test_F_adaptive_max_pool3d.pt") |
| |
|
| | |
| | import os |
| | os.system("../src/pnnx test_F_adaptive_max_pool3d.pt inputshape=[1,12,24,33,64]") |
| |
|
| | |
| | import test_F_adaptive_max_pool3d_pnnx |
| | b0, b1 = test_F_adaptive_max_pool3d_pnnx.test_inference() |
| |
|
| | return torch.equal(a0, b0) and torch.equal(a1, b1) |
| |
|
| | if __name__ == "__main__": |
| | if test(): |
| | exit(0) |
| | else: |
| | exit(1) |
| |
|