Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 363 for debugLink (0.16 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.h

    #include "tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.pb.h"
    
    namespace tensorflow {
    namespace quantization {
    
    // Names of the TensorFlow Quantization steps. These names are used primarily
    // for debugging.
    inline constexpr absl::string_view kTfQuantPtqPreCalibrationStepName =
        "tf_quant_ptq_pre_calibration";
    inline constexpr absl::string_view kTfQuantPtqPostCalibrationStepName =
        "tf_quant_ptq_post_calibration";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 15:31:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/weight_only_ptq.h

    // `TF::XlaCallModuleOp`s. They are quantized using the weight constants, not
    // relying on calibration.
    class WeightOnlyPtqComponent : public Component {
     public:
      // Used for debugging purposes.
      static constexpr absl::string_view kName = "quant_ptq_weight_only";
    
      explicit WeightOnlyPtqComponent(absl::Nonnull<MLIRContext*> ctx);
    
      absl::StatusOr<ModuleOp> Run(
          ModuleOp module_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 12:18:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. pilot/pkg/xds/debug.go

    		return false
    	})
    	writeJSON(w, configs, req)
    }
    
    // SidecarScope debugging
    func (s *DiscoveryServer) sidecarz(w http.ResponseWriter, req *http.Request) {
    	proxyID, con := s.getDebugConnection(req)
    	if con == nil {
    		s.errorHandler(w, proxyID, con)
    		return
    	}
    	writeJSON(w, con.proxy.SidecarScope, req)
    }
    
    // Resource debugging.
    func (s *DiscoveryServer) resourcez(w http.ResponseWriter, req *http.Request) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  4. src/runtime/traceback_system_test.go

    	child7() // appears in stack trace
    	child7bad()
    }
    
    //go:noinline
    func child7bad() {
    }
    
    //go:noinline
    func child7() {
    	// Write runtime.Caller's view of the stack to stderr, for debugging.
    	var pcs [16]uintptr
    	n := runtime.Callers(1, pcs[:])
    	fmt.Fprintf(os.Stderr, "Callers: %#x\n", pcs[:n])
    	io.WriteString(os.Stderr, formatStack(pcs[:n]))
    
    	// Cause the crash report to be written to stdout.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. pkg/istio-agent/plugins.go

    	var tlsOpts *citadel.TLSOptions
    	var err error
    	// Special case: if Istiod runs on a secure network, on the default port, don't use TLS
    	// TODO: may add extra cases or explicit settings - but this is a rare use cases, mostly debugging
    	if strings.HasSuffix(opts.CAEndpoint, ":15010") {
    		log.Warn("Debug mode or IP-secure network")
    	} else {
    		tlsOpts = &citadel.TLSOptions{}
    		tlsOpts.RootCert, err = a.FindRootCAForCA()
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 03:32:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. pilot/pkg/grpc/tls.go

    			return &certificate, nil
    		},
    		RootCAs:    rootCert,
    		MinVersion: tls.VersionTLS12,
    	}
    
    	if host, _, err := net.SplitHostPort(opts.ServerAddress); err == nil {
    		config.ServerName = host
    	}
    	// For debugging on localhost (with port forward)
    	if strings.Contains(config.ServerName, "localhost") {
    		config.ServerName = "istiod.istio-system.svc"
    	}
    	if opts.SAN != "" {
    		config.ServerName = opts.SAN
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/cluster_tf.h

    //   was called with fallback to the non-MLIR Bridge. This is just for logging
    //   purposes and doesn't affect logic. module_name - What the input module name
    //   is for debugging help.
    //
    // Output: Modifies the input module in place with clustered operations.
    //   status - Whether the transformation to cluster the input MLIR module was
    //   successful.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 23:11:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/cfg/cfg.go

    func (b *Block) Return() (ret *ast.ReturnStmt) {
    	if len(b.Nodes) > 0 {
    		ret, _ = b.Nodes[len(b.Nodes)-1].(*ast.ReturnStmt)
    	}
    	return
    }
    
    // Format formats the control-flow graph for ease of debugging.
    func (g *CFG) Format(fset *token.FileSet) string {
    	var buf bytes.Buffer
    	for _, b := range g.Blocks {
    		fmt.Fprintf(&buf, ".%d: # %s\n", b.Index, b.comment(fset))
    		for _, n := range b.Nodes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. src/go/types/check.go

    	"go/token"
    	"internal/godebug"
    	. "internal/types/errors"
    	"strings"
    	"sync/atomic"
    )
    
    // nopos, noposn indicate an unknown position
    var nopos token.Pos
    var noposn = atPos(nopos)
    
    // debugging/development support
    const debug = false // leave on during development
    
    // gotypesalias controls the use of Alias types.
    // As of Apr 16 2024 they are used by default.
    // To disable their use, set GODEBUG to gotypesalias=0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. src/internal/trace/raw/doc.go

    bespoke but simple text format.
    
    The readers and writers in this package perform no validation on or ordering of
    the input, and so are generally unsuitable for analysis. However, they're very
    useful for testing and debugging the tracer in the runtime and more sophisticated
    trace parsers.
    
    # Text format specification
    
    The trace text format produced and consumed by this package is a line-oriented
    format.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top