Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ParseOutputArrayInfo (0.28 sec)

  1. tensorflow/compiler/mlir/lite/python/graphdef_to_tfl_flatbuffer.cc

      TF_RETURN_IF_ERROR(ParseOutputArrayInfo(output_arrays, &specs.outputs));
    
      // Parse control output arrays.
      std::vector<std::string> control_output_arrays(
          model_flags.control_output_arrays().begin(),
          model_flags.control_output_arrays().end());
      TF_RETURN_IF_ERROR(
          ParseOutputArrayInfo(control_output_arrays, &specs.control_outputs));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.h

      bool export_original_tf_func_name = false;
    };
    
    // Parses the command line flag strings to the specification of nodes in
    // the Graph.
    Status ParseOutputArrayInfo(absl::string_view array_names,
                                std::vector<string>* outputs);
    
    Status ParseOutputArrayInfo(const std::vector<string>& output_names,
                                std::vector<string>* outputs);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:56:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_translate.cc

      std::vector<std::string> outputs;
      // Use output parser since we only have tensor names.
      if (!tensorflow::ParseOutputArrayInfo(input_arrays_flag, &inputs).ok()) {
        return emitError(loc, "parsing input array info failed ")
                   << input_arrays_flag,
               nullptr;
      }
      if (!tensorflow::ParseOutputArrayInfo(output_arrays_flag, &outputs).ok()) {
        return emitError(loc, "parsing output array info failed ")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top