Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 105 for Unbounded (0.33 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

               "'dim' to TF::ExpandDimsOp specifies the dimension index to expand.";
      }
    
      void runOnOperation() override;
    };
    
    // Returns True iff the otuput value of `op` is either a compile time constant
    // or bounded from the XLA compiler's perspective, even if it is not a
    // `ConstOp`.
    bool IsOutputCompileTimeConstantOrBounded(Operation* op) {
      return llvm::isa_and_nonnull<TF::ShapeOp, TF::ShapeNOp, TF::RankOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. test/codegen/shift.go

    	// amd64:-"TESTB"
    	_ = x << (v8 & 7)
    	// amd64:-"TESTW"
    	_ = x << (v16 & 15)
    	// amd64:-"TESTL"
    	_ = x << (v32 & 31)
    	// amd64:-"TESTQ"
    	_ = x << (v64 & 63)
    }
    
    // ------------------ //
    //   bounded shifts   //
    // ------------------ //
    
    func lshGuarded64(v int64, s uint) int64 {
    	if s < 64 {
    		// riscv64:"SLL",-"AND",-"SLTIU"
    		// s390x:-"RISBGZ",-"AND",-"LOCGR"
    		// wasm:-"Select",-".*LtU"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/unify.go

    			// (if they were not, the recursion would have stopped);
    			// search the ifacePair stack for the same pair.
    			//
    			// This is a quadratic algorithm, but in practice these stacks
    			// are extremely short (bounded by the nesting depth of interface
    			// type declarations that recur via parameter types, an extremely
    			// rare occurrence). An alternative implementation might use a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. src/go/types/unify.go

    			// (if they were not, the recursion would have stopped);
    			// search the ifacePair stack for the same pair.
    			//
    			// This is a quadratic algorithm, but in practice these stacks
    			// are extremely short (bounded by the nesting depth of interface
    			// type declarations that recur via parameter types, an extremely
    			// rare occurrence). An alternative implementation might use a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. RELEASE.md

        *   Disable default Grappler optimization timeout to make the optimization
            pipeline deterministic. This may lead to increased model loading time,
            because time spent in graph optimizations is now unbounded (was 20
            minutes).
    *   Deterministic Op Functionality (enabled by setting `TF_DETERMINISTIC_OPS` to
        `"true"` or `"1"`):
        *   Add a deterministic GPU implementation of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "format": "int32",
                "type": "integer"
              }
            },
            "type": "object"
          },
          "io.k8s.apimachinery.pkg.api.resource.Quantity": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  7. pkg/kubelet/stats/provider_test.go

    			"io.kubernetes.pod.namespace":  podNamespace,
    			"io.kubernetes.container.name": containerName,
    		}
    	}
    	// by default, kernel will set memory.limit_in_bytes to 1 << 63 if not bounded
    	unlimitedMemory := uint64(1 << 63)
    	spec := cadvisorapiv2.ContainerSpec{
    		CreationTime: testTime(creationTime, seed),
    		HasCpu:       true,
    		HasMemory:    true,
    		HasNetwork:   true,
    		Labels:       labels,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    		// wait for the delayed stopCh before closing the handler chain (it rejects everything after Wait has been called).
    		<-notAcceptingNewRequestCh.Signaled()
    
    		// Wait for all requests to finish, which are bounded by the RequestTimeout variable.
    		// once NonLongRunningRequestWaitGroup.Wait is invoked, the apiserver is
    		// expected to reject any incoming request with a {503, Retry-After}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/predicates.go

    				// (if they were not, the recursion would have stopped);
    				// search the ifacePair stack for the same pair.
    				//
    				// This is a quadratic algorithm, but in practice these stacks
    				// are extremely short (bounded by the nesting depth of interface
    				// type declarations that recur via parameter types, an extremely
    				// rare occurrence). An alternative implementation might use a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    	// and stolen by mutator assists.  Updates occur in bounded batches,
    	// since it is both written and read throughout the cycle.
    	bgScanCredit atomic.Int64
    
    	// assistTime is the nanoseconds spent in mutator assists
    	// during this cycle. This is updated atomically, and must also
    	// be updated atomically even during a STW, because it is read
    	// by sysmon. Updates occur in bounded batches, since it is both
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top