Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for input_list (0.08 sec)

  1. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.cc

                      "_1 = ", "tensorflow::ops::Placeholder(scope.WithOpName(\"",
                      arg.name(), "\"), ", type, ");\n");
                  strings::StrAppend(
                      out, absl::Substitute("    InputList $0({$0_0, $0_1});\n",
                                            arg.name()));
                } else {
                  strings::StrAppend(
                      out, "    auto ", arg.name(), " = ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 16:26:51 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

      };
    
      if (!can_convert_to_fully_connected(op)) {
        return false;
      }
    
      Value input_lhs = get_real_input_value(op.getX());
      Value input_rhs = get_real_input_value(op.getY());
    
      Value legalized_lhs =
          op.getAdjX() ? create_z_x_transpose_op(input_lhs) : input_lhs;
    
      // The rhs need to be transposed if adj_y == false AND this matmul will be
      // legalized to tfl.fully_connected
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/cc_op_gen_util.cc

        const auto& api_def_arg = *FindInputArg(api_def.arg_order(i), api_def);
        arg_types.push_back(strings::StrCat(
            "::tensorflow::", ArgIsList(arg) ? "InputList" : "Input"));
        arg_names.push_back(AvoidCPPKeywords(api_def_arg.rename_to()));
    
        // TODO(keveman): Include input type information.
        StringPiece description = api_def_arg.description();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
Back to top