Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 83 for debug_info (0.26 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/dump_graph.cc

        // specifiable.
        GraphDebugInfo debug_info;
        switch (config.dialect) {
          case MlirDumpConfig::Dialect::kTFG: {
            TF_ASSIGN_OR_RETURN(module,
                                mlir::tfg::ImportGraphAndFunctionsToMlir(
                                    &context, debug_info, graph,
                                    flib_def ? *flib_def : graph.flib_def()));
            break;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/flags.cc

           "Input GraphDef file.  If the file ends in '.pbtxt' it is expected to "
           "be in the human-readable proto text format, otherwise it is expected "
           "to be in the proto binary format."},
          {"debug_info", &flags->debug_info,
           "Graph debug info file.  If the file ends in '.pbtxt' it is expected to "
           "be in the human-readable proto text format, otherwise it is expected "
           "to be in the proto binary format."},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 05 16:55:24 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/flags.h

    #include "tensorflow/core/util/command_line_flags.h"
    
    namespace tensorflow {
    namespace tfcompile {
    
    // Flags for the tfcompile binary.  See *.cc file for descriptions.
    
    struct MainFlags {
      string graph;
      string debug_info;
      string debug_info_path_begin_marker;
      string config;
      bool dump_fetch_nodes = false;
      string target_triple;
      string target_cpu;
      string target_features;
      string entry_point;
      string cpp_class;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 05 16:55:24 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/tests/test_error_message.lit.pbtxt

    # RUN: not tfcompile --graph=%s --config=%s.config.pbtxt --mlir_components=Bridge --debug_info=%s.debug.pbtxt 2>&1 | FileCheck %s
    # RUN: not tfcompile --graph=%s --config=%s.config.pbtxt --mlir_components=None 2>&1 | FileCheck -check-prefix=OLD %s
    
    # Checks the error message produced by tfcompile with mlir_component
    # Checks that source debug information is used in the output error message and
    # the node x_y_sum = Add
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:32:15 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/python/graphdef_to_tfl_flatbuffer.h

    // it fails to convert the input.
    absl::Status ConvertGraphDefToTFLiteFlatBuffer(
        const toco::ModelFlags& model_flags, toco::TocoFlags& toco_flags,
        const GraphDebugInfo& debug_info, const GraphDef& input,
        std::string* result);
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/bundle_v2.h

      }
    
      /// BundleReader for accessing the variables bundle.
      BundleReader* variable_reader() { return variable_reader_.get(); }
    
      /// The GraphDebugInfo (or nullptr if none).
      GraphDebugInfo* debug_info() { return debug_info_.get(); }
    
      /// Restores objects, invoking the callback with the node id in the
      /// saved_object_graph() and the corresponding TrackableObject from the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 20 03:32:59 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

        return nullptr;
      }
    
      tensorflow::GraphDebugInfo debug_info;
      if (debug_info_txt_raw && debug_info_txt_raw != Py_None) {
        std::string debug_info_txt = ConvertArg(debug_info_txt_raw, &error);
        if (error) {
          PyErr_SetString(PyExc_ValueError, "Input DebugInfo is invalid.");
          return nullptr;
        }
        if (!debug_info.ParseFromString(debug_info_txt)) {
          PyErr_SetString(PyExc_ValueError,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        // debug_info might not be loaded with loader_lite.
        GraphDebugInfo debug_info;
        if (bundle.debug_info != nullptr) debug_info = *bundle.debug_info;
    
        TF_ASSIGN_OR_RETURN(auto input,
                            SimpleSavedModelMLIRImportInput::Create(
                                options, &bundle.meta_graph_def, debug_info));
    
        TF_ASSIGN_OR_RETURN(auto module,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

                             << ", FallbackEnabled: " << num_passes_fallback_enabled
                             << ", Total: " << registry_->passes().size();
      }
    
      GraphDebugInfo debug_info;
      mlir::DialectRegistry registry;
      RegisterDialects(registry);
      mlir::MLIRContext context(registry);
      GraphImportConfig import_config;
      import_config.graph_as_function = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

              << pass->name() << ": " << status.message();
          return signalPassFailure();
        }
      }
    
      // Convert Graph to MLIR
      GraphDebugInfo debug_info;
      GraphImportConfig specs;
      auto module_or_status =
          ConvertGraphToMlir(**options.graph, debug_info, flib_def, specs, &ctx);
      if (!module_or_status.ok()) {
        mlir::emitError(mlir::UnknownLoc::get(&ctx))
            << module_or_status.status().message();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top