Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 241 for bounded (0.18 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. android/guava-tests/test/com/google/common/reflect/TypeTokenSubtypeTest.java

        new WildcardSubtypingTests().testAllDeclarations();
      }
    
      /**
       * This test reproduces the bug in canonicalizeWildcardType() when the type variable is
       * recursively bounded.
       */
      public void testRecursiveWildcardSubtypeBug() throws Exception {
        Exception e =
            assertThrows(
                Exception.class, () -> new RecursiveTypeBoundBugExample<>().testAllDeclarations());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Range.java

     * appropriate {@link DiscreteDomain} to {@link ContiguousSet#create}.
     *
     * <h3>Types of ranges</h3>
     *
     * <p>Each end of the range may be bounded or unbounded. If bounded, there is an associated
     * <i>endpoint</i> value, and the range is considered to be either <i>open</i> (does not include the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Range.java

     * appropriate {@link DiscreteDomain} to {@link ContiguousSet#create}.
     *
     * <h3>Types of ranges</h3>
     *
     * <p>Each end of the range may be bounded or unbounded. If bounded, there is an associated
     * <i>endpoint</i> value, and the range is considered to be either <i>open</i> (does not include the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. pkg/controller/job/indexed_job_utils.go

    		nonPending = nonPending.withOrderedIndexes(sets.List(terminating))
    	}
    	if jobCtx.failedIndexes != nil {
    		nonPending = nonPending.merge(*jobCtx.failedIndexes)
    	}
    	// The following algorithm is bounded by len(nonPending) and count.
    	candidate := 0
    	for _, sInterval := range nonPending {
    		for ; candidate < completions && len(result) < count && candidate < sInterval.First; candidate++ {
    			result = append(result, candidate)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 00:44:53 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. 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)
  7. src/math/j0.go

    //              y0(x) = U(z)/V(z) + (2/pi)*(j0(x)*ln(x)), z= x**2
    //         where
    //              U(z) = u00 + u01*z + ... + u06*z**6
    //              V(z) = 1  + v01*z + ... + v04*z**4
    //         with absolute approximation error bounded by 2**-72.
    //         Note: For tiny x, U/V = u0 and j0(x)~1, hence
    //              y0(tiny) = u0 + (2/pi)*ln(tiny), (choose tiny<2**-27)
    //      2. For x>=2.
    //              y0(x) = sqrt(2/(pi*x))*(p0(x)*cos(x0)+q0(x)*sin(x0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/unify.go

    // equivalent by determining the types for a given list of (bound)
    // type parameters which may occur within x and y. If x and y are
    // structurally different (say []T vs chan T), or conflicting
    // types are determined for type parameters, unification fails.
    // If unification succeeds, as a side-effect, the types of the
    // bound type parameters may be determined.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. src/go/types/unify.go

    // equivalent by determining the types for a given list of (bound)
    // type parameters which may occur within x and y. If x and y are
    // structurally different (say []T vs chan T), or conflicting
    // types are determined for type parameters, unification fails.
    // If unification succeeds, as a side-effect, the types of the
    // bound type parameters may be determined.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. 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)
Back to top