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.

Tensor_contiguous.cpp 1.5 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 Tensor_contiguous : 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. Tensor.contiguous op_0 1 1 input out %*=%*
  26. pnnx.Output output 1 0 out
  27. )PNNXIR";
  28. }
  29. const char* type_str() const
  30. {
  31. return "Noop";
  32. }
  33. const char* name_str() const
  34. {
  35. return "contiguous";
  36. }
  37. void write(Operator* /*op*/, const std::map<std::string, Parameter>& /*captured_params*/) const
  38. {
  39. }
  40. };
  41. REGISTER_GLOBAL_PNNX_NCNN_GRAPH_REWRITER_PASS(Tensor_contiguous, 20)
  42. } // namespace ncnn
  43. } // namespace pnnx