-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
210 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// 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. | ||
|
||
#include "pass_level1.h" | ||
|
||
#include "../utils.h" | ||
|
||
namespace pnnx { | ||
|
||
class Softmax2d : public FuseModulePass | ||
{ | ||
public: | ||
const char* match_type_str() const | ||
{ | ||
return "__torch__.torch.nn.modules.activation.Softmax2d"; | ||
} | ||
|
||
const char* type_str() const | ||
{ | ||
return "nn.Softmax2d"; | ||
} | ||
}; | ||
|
||
REGISTER_GLOBAL_PNNX_FUSE_MODULE_PASS(Softmax2d) | ||
|
||
} // namespace pnnx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
// 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. | ||
|
||
#include "pass_ncnn.h" | ||
|
||
namespace pnnx { | ||
|
||
namespace ncnn { | ||
|
||
class nn_Softmax2d : public GraphRewriterPass | ||
{ | ||
public: | ||
const char* match_pattern_graph() const | ||
{ | ||
return R"PNNXIR(7767517 | ||
3 2 | ||
pnnx.Input input 0 1 input | ||
nn.Softmax2d op_0 1 1 input out | ||
pnnx.Output output 1 0 out | ||
)PNNXIR"; | ||
} | ||
|
||
const char* type_str() const | ||
{ | ||
return "Softmax"; | ||
} | ||
|
||
const char* name_str() const | ||
{ | ||
return "softmax2d"; | ||
} | ||
|
||
void write(Operator* op, const std::map<std::string, Parameter>& /*captured_params*/) const | ||
{ | ||
op->params["0"] = 0; | ||
op->params["1"] = 1; | ||
} | ||
}; | ||
|
||
REGISTER_GLOBAL_PNNX_NCNN_GRAPH_REWRITER_PASS(nn_Softmax2d, 20) | ||
|
||
} // namespace ncnn | ||
|
||
} // namespace pnnx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# 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__() | ||
|
||
self.act_0 = nn.Softmax2d() | ||
|
||
def forward(self, x): | ||
x = self.act_0(x) | ||
return x | ||
|
||
def test(): | ||
net = Model() | ||
net.eval() | ||
|
||
torch.manual_seed(0) | ||
x = torch.rand(1, 12, 24, 64) | ||
|
||
a = net(x) | ||
|
||
# export torchscript | ||
mod = torch.jit.trace(net, x) | ||
mod.save("test_nn_Softmax2d.pt") | ||
|
||
# torchscript to pnnx | ||
import os | ||
os.system("../../src/pnnx test_nn_Softmax2d.pt inputshape=[1,12,24,64]") | ||
|
||
# ncnn inference | ||
import test_nn_Softmax2d_ncnn | ||
b = test_nn_Softmax2d_ncnn.test_inference() | ||
|
||
return torch.allclose(a, b, 1e-4, 1e-4) | ||
|
||
if __name__ == "__main__": | ||
if test(): | ||
exit(0) | ||
else: | ||
exit(1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# 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__() | ||
|
||
self.act_0 = nn.Softmax2d() | ||
|
||
def forward(self, x): | ||
x = self.act_0(x) | ||
return x | ||
|
||
def test(): | ||
net = Model() | ||
net.eval() | ||
|
||
torch.manual_seed(0) | ||
x = torch.rand(1, 12, 24, 64) | ||
|
||
a = net(x) | ||
|
||
# export torchscript | ||
mod = torch.jit.trace(net, x) | ||
mod.save("test_nn_Softmax2d.pt") | ||
|
||
# torchscript to pnnx | ||
import os | ||
os.system("../src/pnnx test_nn_Softmax2d.pt inputshape=[1,12,24,64]") | ||
|
||
# pnnx inference | ||
import test_nn_Softmax2d_pnnx | ||
b = test_nn_Softmax2d_pnnx.test_inference() | ||
|
||
return torch.equal(a, b) | ||
|
||
if __name__ == "__main__": | ||
if test(): | ||
exit(0) | ||
else: | ||
exit(1) |