Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 151 for dumpling (1.02 sec)

  1. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo_translate.cc

        llvm::cl::Optional, llvm::cl::init("serve"));
    
    // NOLINTNEXTLINE
    opt<bool> elide_large_elements_attrs(
        "e",
        llvm::cl::desc(
            "Elide large elements attrs while dumping the output StableHLO."),
        llvm::cl::Optional, llvm::cl::init(false));
    
    }  // namespace
    
    namespace mlir {
    
    namespace {
    // Dump the ModuleOp 'module' to the file specified using 'outputFileName'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.h

    // in the serialized operation on which the pass is invoked. For verbose log
    // level >= 1, `bridge_logger.cc` prints details about pass invocations for
    // which the IR dumping was skipped because of a filter.
    class BridgeLoggerConfig : public mlir::PassManager::IRPrinterConfig {
     public:
      explicit BridgeLoggerConfig(
          bool print_module_scope = false, bool print_after_only_on_change = true,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

        ): KaCompilationResult
    }
    
    public typealias KtCompilerFacility = KaCompilerFacility
    
    public interface KaCompilerFacilityMixIn : KaSessionMixIn {
        /**
         * Compile the given [file] in-memory (without dumping the compiled binaries to a disk).
         *
         * @param file A file to compile.
         *  The file must be either a source module file, or a [KtCodeFragment].
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/productpage.py

        incoming_headers = [
            # All applications should propagate x-request-id. This header is
            # included in access log statements and is used for consistent trace
            # sampling and log sampling decisions in Istio.
            'x-request-id',
    
            # Lightstep tracing header. Propagate this if you use lightstep tracing
            # in Istio (see
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.h

    namespace tensorflow {
    
    inline constexpr absl::string_view kCrashReproducerStdErr = "-";
    inline constexpr absl::string_view kCrashReproducerCrashAnalysis =
        "crash_analysis";
    
    // Creates a file to use for dumping and returns success if a file could be
    // created. The opened file is placed in 'os' and the path of the file used is
    // placed in 'filepath'.
    //
    // If the TF_DUMP_GRAPH_PREFIX environment variable is kCrashReproducerStdErr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. src/runtime/pprof/protomem.go

    			}
    		})
    	}
    	b.build()
    	return nil
    }
    
    // scaleHeapSample adjusts the data from a heap Sample to
    // account for its probability of appearing in the collected
    // data. heap profiles are a sampling of the memory allocations
    // requests in a program. We estimate the unsampled value by dividing
    // each collected sample by its probability of appearing in the
    // profile. heap profiles rely on a poisson process to determine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_test.go

    		tproxy           *model.Proxy
    		envPilotSampling float64
    	}{
    		{
    			name:             "random-sampling-env",
    			tproxy:           getProxy(),
    			envPilotSampling: 80.0,
    			in: &meshconfig.Tracing{
    				Tracer:           nil,
    				CustomTags:       nil,
    				MaxPathTagLength: 0,
    				Sampling:         0,
    			},
    			out: &hcm.HttpConnectionManager_Tracing{
    				MaxPathTagLength: nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/branches.go

    // It catches:
    //   - misplaced breaks, continues, and fallthroughs
    //   - bad labeled breaks and continues
    //   - invalid, unused, duplicate, and missing labels
    //   - gotos jumping over variable declarations and into blocks
    func checkBranches(body *BlockStmt, errh ErrorHandler) {
    	if body == nil {
    		return
    	}
    
    	// scope of all labels in this body
    	ls := &labelScope{errh: errh}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  9. src/runtime/mkfastlog2table.go

    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // fastlog2Table contains log2 approximations for 5 binary digits.
    // This is used to implement fastlog2, which is used for heap sampling.
    
    package main
    
    import (
    	"bytes"
    	"fmt"
    	"log"
    	"math"
    	"os"
    )
    
    func main() {
    	var buf bytes.Buffer
    
    	fmt.Fprintln(&buf, "// Code generated by mkfastlog2table.go; DO NOT EDIT.")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 22:12:19 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. pkg/test/framework/scope.go

    		return
    	}
    	st := time.Now()
    	defer func() {
    		l := scopes.Framework.Debugf
    		if time.Since(st) > time.Second*10 {
    			// Log slow dumps at higher level
    			l = scopes.Framework.Infof
    		}
    		l("Done dumping: %s for %s (%v)", s.id, ctx.ID(), time.Since(st))
    	}()
    	s.mu.Lock()
    	defer s.mu.Unlock()
    	if recursive {
    		for _, c := range s.children {
    			c.dump(ctx, recursive)
    		}
    	}
    	wg := sync.WaitGroup{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 21:55:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top