You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

F_max_pool1d.cpp 2.1 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. // Tencent is pleased to support the open source community by making ncnn available.
  2. //
  3. // Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved.
  4. //
  5. // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
  6. // in compliance with the License. You may obtain a copy of the License at
  7. //
  8. // https://opensource.org/licenses/BSD-3-Clause
  9. //
  10. // Unless required by applicable law or agreed to in writing, software distributed
  11. // under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  12. // CONDITIONS OF ANY KIND, either express or implied. See the License for the
  13. // specific language governing permissions and limitations under the License.
  14. #include "pass_ncnn.h"
  15. namespace pnnx {
  16. namespace ncnn {
  17. class F_max_pool1d : public GraphRewriterPass
  18. {
  19. public:
  20. const char* match_pattern_graph() const
  21. {
  22. return R"PNNXIR(7767517
  23. 3 2
  24. pnnx.Input input 0 1 input
  25. F.max_pool1d op_0 1 1 input out kernel_size=%kernel_size stride=%stride dilation=(1) padding=%padding ceil_mode=%ceil_mode return_indices=False
  26. pnnx.Output output 1 0 out
  27. )PNNXIR";
  28. }
  29. const char* type_str() const
  30. {
  31. return "Pooling1D";
  32. }
  33. const char* name_str() const
  34. {
  35. return "maxpool1d";
  36. }
  37. void write(Operator* op, const std::map<std::string, Parameter>& captured_params) const
  38. {
  39. std::vector<int> stride;
  40. if (captured_params.at("stride").type == 0)
  41. {
  42. stride = captured_params.at("kernel_size").ai;
  43. }
  44. else
  45. {
  46. stride = captured_params.at("stride").ai;
  47. }
  48. op->params["0"] = 0;
  49. op->params["1"] = captured_params.at("kernel_size").ai[0];
  50. op->params["2"] = stride[0];
  51. op->params["3"] = captured_params.at("padding").ai[0];
  52. op->params["5"] = captured_params.at("ceil_mode").b ? 0 : 1;
  53. }
  54. };
  55. REGISTER_GLOBAL_PNNX_NCNN_GRAPH_REWRITER_PASS(F_max_pool1d, 20)
  56. } // namespace ncnn
  57. } // namespace pnnx