Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 139 for Thresholds (0.15 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/unfreeze_constants.mlir

    // CHECK-NEXT: return %[[ARG_0]] : tensor<5xf32>
    }
    
    // -----
    
    // Tests that constants that are smaller than "size_threshold_in_bytes" are
    // not converted to variables. This test uses the threshold of 16 bytes.
    
    module attributes {tf_saved_model.semantics} {
      "tf_saved_model.session_initializer"() {initializers = [@init_func_restore_op]} : () -> ()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  2. src/runtime/slice.go

    	if newLen > doublecap {
    		return newLen
    	}
    
    	const threshold = 256
    	if oldCap < threshold {
    		return doublecap
    	}
    	for {
    		// Transition from growing 2x for small slices
    		// to growing 1.25x for large slices. This formula
    		// gives a smooth-ish transition between the two.
    		newcap += (newcap + 3*threshold) >> 2
    
    		// We need to check `newcap >= newLen` and whether `newcap` overflowed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. pilot/pkg/features/experimental.go

    			"  To avoid, sending traffic to non ready endpoints, enabling this flag, disables panic threshold in Envoy i.e. Envoy does not load balance requests"+
    			" to unhealthy/non-ready hosts even if the percentage of healthy hosts fall below minimum health percentage(panic threshold).",
    	).Get())
    
    	EnablePersistentSessionFilter = env.Register(
    		"PILOT_ENABLE_PERSISTENT_SESSION_FILTER",
    		false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. docs/bigdata/README.md

    mapreduce.reduce.shuffle.input.buffer.percent=0.9 # Min % buffer in RAM
    mapreduce.reduce.shuffle.merge.percent=0.9 # Minimum % merges in RAM
    mapreduce.reduce.speculative=false # Disable speculation for reducing
    mapreduce.task.io.sort.factor=999 # Threshold before writing to disk
    mapreduce.task.sort.spill.percent=0.9 # Minimum % before spilling to disk
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitoringIntegrationTest.groovy

    The currently configured max heap space is 'unknown' and the configured max metaspace is '512 MiB'.
    ${COMMON_HINT}""")
        }
    
        def "does not expire daemon when leak does not consume heap threshold"() {
            given:
            configureGarbageCollectionHeapEventsFor(256, 512, 5, garbageCollector.monitoringStrategy.gcRateThreshold + 0.2)
    
            when:
            run "injectEvents"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  6. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Pmd.java

            configureAction.execute(reports);
            return reports;
        }
    
        /**
         * Validates the value is a valid PMD rules minimum priority (1-5)
         *
         * @param value rules minimum priority threshold
         */
        public static void validate(int value) {
            if (value > 5 || value < 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

                      (MHLO_NegOp $threshold),
                      (NullDenseI64ArrayAttr),
                      CHLO_ComparisonDirectionValue<"GT">,
                      (CHLO_DEFAULT_COMPARISON_TYPE)
                     ),
                     $features,
                     (MHLO_SelectOp
                      (CHLO_BroadcastCompareOp
                       $features,
                       $threshold,
                       (NullDenseI64ArrayAttr),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/pgo_inl_test.go

    	for _, fname := range wantNot {
    		fullName := pkg + "." + fname
    		expectedNotInlinedList[fullName] = struct{}{}
    	}
    
    	// Build the test with the profile. Use a smaller threshold to test.
    	// TODO: maybe adjust the test to work with default threshold.
    	gcflag := fmt.Sprintf("-m -m -pgoprofile=%s -d=pgoinlinebudget=160,pgoinlinecdfthreshold=90", profFile)
    	out := buildPGOInliningTest(t, dir, gcflag)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/inline/inlheur/scoring.go

    // the original hairiness estimate to form the score. "Status" shows
    // whether anything changed with the site -- did the adjustment bump
    // it down just below the threshold ("PROMOTED") or instead bump it
    // above the threshold ("DEMOTED"); this will be blank ("---") if no
    // threshold was crossed as a result of the heuristics. Note that
    // "Status" also shows whether PGO was involved. "Callee" is the name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/HealthExpirationStrategyTest.groovy

        )
        GarbageCollectionStats aboveMetaspaceThreshold = stats(
            strategy.getNonHeapUsageThreshold() + 1,
            1,
            true
        )
    
        def "daemon is not expired when memory stats are below threshold" () {
            given:
            def underTest = new HealthExpirationStrategy(
                health(belowThreshold, belowThreshold),
                strategy
            )
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top