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.

nn_Embedding.cpp 2.0 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 nn_Embedding : 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. nn.Embedding op_0 1 1 input out embedding_dim=%embedding_dim num_embeddings=%num_embeddings sparse=False @weight
  26. pnnx.Output output 1 0 out
  27. )PNNXIR";
  28. }
  29. const char* type_str() const
  30. {
  31. return "Embed";
  32. }
  33. const char* name_str() const
  34. {
  35. return "embed";
  36. }
  37. void write(Operator* op, const std::map<std::string, Parameter>& captured_params, const std::map<std::string, Attribute>& captured_attrs) const
  38. {
  39. op->params["0"] = captured_params.at("embedding_dim");
  40. op->params["1"] = captured_params.at("num_embeddings");
  41. op->params["2"] = 0;
  42. op->params["3"] = (int)(captured_attrs.at("op_0.weight").data.size() / sizeof(float));
  43. op->attrs["0"] = Attribute();
  44. op->attrs["0"].data = {0, 0, 0, 0};
  45. op->attrs["1"] = captured_attrs.at("op_0.weight");
  46. }
  47. };
  48. REGISTER_GLOBAL_PNNX_NCNN_GRAPH_REWRITER_PASS(nn_Embedding, 20)
  49. } // namespace ncnn
  50. } // namespace pnnx