Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for debugInfo (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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. src/cmd/cgo/internal/testplugin/testdata/checkdwarf/main.go

    // license that can be found in the LICENSE file.
    
    // Usage:
    //
    //  checkdwarf <exe> <suffix>
    //
    // Opens <exe>, which must be an executable or a library and checks that
    // there is an entry in .debug_info whose name ends in <suffix>
    
    package main
    
    import (
    	"debug/dwarf"
    	"debug/elf"
    	"debug/macho"
    	"debug/pe"
    	"fmt"
    	"os"
    	"strings"
    )
    
    func usage() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/debug/dwarf/open.go

    		pubnames:    pubnames,
    		ranges:      ranges,
    		str:         str,
    		abbrevCache: make(map[uint64]abbrevTable),
    		typeCache:   make(map[Offset]Type),
    		typeSigs:    make(map[uint64]*typeUnit),
    	}
    
    	// Sniff .debug_info to figure out byte order.
    	// 32-bit DWARF: 4 byte length, 2 byte version.
    	// 64-bit DWARf: 4 bytes of 0xff, 8 byte length, 2 byte version.
    	if len(d.info) < 6 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util_test.cc

                               use_output_shapes, /*args=*/{},
                               /*control_rets=*/{}, DEVICE_TPU,
                               FunctionLibraryDefinition(OpRegistry::Global()),
                               /*debug_info=*/{},
                               /*custom_legalization_passes=*/{});
    }
    
    TEST(CompileMlirUtil, UsesCorrectOriginalShapeWithoutOutputShapes) {
      TF_ASSERT_OK_AND_ASSIGN(auto graph, BuildOpGraphWithOutputShapes());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 19:54:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. src/cmd/link/internal/dwtest/dwtest.go

    // license that can be found in the LICENSE file.
    
    package dwtest
    
    import (
    	"debug/dwarf"
    	"errors"
    	"fmt"
    	"os"
    )
    
    // Helper type for supporting queries on DIEs within a DWARF
    // .debug_info section. Invoke the populate() method below passing in
    // a dwarf.Reader, which will read in all DIEs and keep track of
    // parent/child relationships. Queries can then be made to ask for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 15:22:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top