Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for elide (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

      'main' entry-point, separating tensors with ':', dimension with ',', and
      using '?' for unknown sizes. For example, `input-arg-shapes=1,2::1,?`
      expresses argument shapes `[1,2]`, `[]` and `[1,?]`.
    * `--e`: Elide large elements attrs while dumping the output StableHLO.
    * `--output_filename`: Path to the output file where the textual StableHLO MLIR
      module will be written (default: stdout).
    
    
    ### Examples
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo_translate.cc

                       "Ignored for MLIR input"),
        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 {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    		// physical frame.
    		u2 := u
    		remaining, _ := traceback2(&u, showRuntime, maxInt, 0)
    		elide := remaining - lastN - tracebackOuterFrames
    		if elide > 0 {
    			print("...", elide, " frames elided...\n")
    			traceback2(&u2, showRuntime, lastN+elide, tracebackOuterFrames)
    		} else if elide <= 0 {
    			// There are tracebackOuterFrames or fewer frames left to print.
    			// Just print the rest of the stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

    opt<bool> verbose(
        "v", llvm::cl::desc("Dump intermediate translations to output dir."),
        llvm::cl::Optional, llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> elide_large_elements_attrs(
        "e", llvm::cl::desc("Elide large elements attrs."), llvm::cl::Optional,
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> debug_info(
        "debug-info", llvm::cl::desc("Inclide MLIR debug location info in output."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. src/crypto/tls/ticket.go

    		SignedCertificateTimestamps: s.scts,
    	})
    	b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    		for _, chain := range s.verifiedChains {
    			b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    				// We elide the first certificate because it's always the leaf.
    				if len(chain) == 0 {
    					b.SetError(errors.New("tls: internal error: empty verified chain"))
    					return
    				}
    				for _, cert := range chain[1:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      // contains places with the same source. If a stack occurs multiple times
      // in places, only the outer-most occurrence is kept.
      function partitionPlaces(places) {
        // Find outer-most slot per stack (used later to elide duplicate stacks).
        const stackMap = new Map();  // Map from stack index to outer-most slot#
        for (const place of places) {
          const prevSlot = stackMap.get(place.Stack);
          if (prevSlot && prevSlot <= place.Pos) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. src/net/textproto/reader.go

    	r     *Reader
    	state int
    }
    
    // Read satisfies reads by decoding dot-encoded data read from d.r.
    func (d *dotReader) Read(b []byte) (n int, err error) {
    	// Run data through a simple state machine to
    	// elide leading dots, rewrite trailing \r\n into \n,
    	// and detect ending .\r\n line.
    	const (
    		stateBeginLine = iota // beginning of line; initial state; must be zero
    		stateDot              // read . at beginning of line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/func.go

    }
    
    // A ScopeID represents a lexical scope within a function.
    type ScopeID int32
    
    const (
    	funcDupok      = 1 << iota // duplicate definitions ok
    	funcWrapper                // hide frame from users (elide in tracebacks, don't count as a frame for recover())
    	funcABIWrapper             // is an ABI wrapper (also set flagWrapper)
    	funcNeedctxt               // function uses context register (has closure variables)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/gateway_simulation_test.go

    						VirtualHostMatched: "example.com:80",
    						RouteConfigMatched: "http.80",
    						StrictMatch:        true,
    					},
    				},
    			},
    		},
    		simulationTest{
    			// This should be the same as without, we elide the routes anyways since they always
    			// redirect
    			name: "httpsRedirect with routes",
    			config: createGateway("gateway", "", `port:
      number: 80
      name: http
      protocol: HTTP
    hosts:
    - "example.com"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    		apiVersionsForDiscovery := []metav1.GroupVersionForDiscovery{}
    		for _, groupVersion := range apiGroupInfo.PrioritizedVersions {
    			// Check the config to make sure that we elide versions that don't have any resources
    			if len(apiGroupInfo.VersionedResourcesStorageMap[groupVersion.Version]) == 0 {
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
Back to top