Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetConstructorDecl (0.19 sec)

  1. tensorflow/cc/framework/cc_op_gen.cc

      }
      strings::StrAppend(&class_decl, "  ",
                         GetConstructorDecl(op_info, "", /* include_attr */ false),
                         ";\n");
      if (op_info.has_optional_attrs) {
        strings::StrAppend(&class_decl, "  ",
                           GetConstructorDecl(op_info, "", /* include_attr */ true),
                           ";\n");
      }
      if (op_info.output_types.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 17:22:47 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/cc_op_gen_util.h

      OpInfo(const OpDef& graph_op_def, const ApiDef& api_def,
             const std::vector<string>& aliases);
      OpInfo(const OpDef& graph_op_def, const ApiDef& api_def);
      string GetOpAttrStruct() const;
      string GetConstructorDecl(StringPiece op_name_prefix,
                                bool include_attr) const;
    
      string op_name;
      std::vector<string> arg_types;
      std::vector<string> arg_names;
      std::vector<string> output_types;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top