Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for Tolerance (0.13 sec)

  1. internal/dsync/drwmutex.go

    		// quorum + 1 when tolerance is exactly half of the
    		// total locker clients.
    		if quorum == tolerance {
    			quorum++
    		}
    	}
    
    	log("lockBlocking %s/%s for %#v: lockType readLock(%t), additional opts: %#v, quorum: %d, tolerance: %d, lockClients: %d\n", id, source, dm.Names, isReadLock, opts, quorum, tolerance, len(restClnts))
    
    	tolerance = len(restClnts) - quorum
    	attempt := uint(0)
    
    	for {
    		select {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/check_test.go

    }
    func TestSpec(t *testing.T) { testDirFiles(t, "../../../../internal/types/testdata/spec", 20, false) } // TODO(gri) narrow column tolerance
    func TestExamples(t *testing.T) {
    	testDirFiles(t, "../../../../internal/types/testdata/examples", 125, false)
    } // TODO(gri) narrow column tolerance
    func TestFixedbugs(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/config/types.go

    	// backwards and not scale down below any recommendation it made during that period.
    	HorizontalPodAutoscalerDownscaleStabilizationWindow metav1.Duration
    	// horizontalPodAutoscalerTolerance is the tolerance for when
    	// resource usage suggests upscaling/downscaling
    	HorizontalPodAutoscalerTolerance float64
    	// HorizontalPodAutoscalerCPUInitializationPeriod is the period after pod start when CPU samples
    	// might be skipped.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/hpacontroller.go

    	fs.Float64Var(&o.HorizontalPodAutoscalerTolerance, "horizontal-pod-autoscaler-tolerance", o.HorizontalPodAutoscalerTolerance, "The minimum change (from 1.0) in the desired-to-actual metrics ratio for the horizontal pod autoscaler to consider scaling.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/quantize-numeric-verify.mlir

    // DEBUG: %[[f_split:.*]]:2 = "tfl.split"
    // DEBUG: %[[q_split:.*]]:2 = "tfl.split"
    // DEBUG: "tfl.NumericVerify"(%[[q_split]]#1, %[[f_split]]#1) <{log_if_failed = true, tolerance = 5.000000e+00 : f32}>
    // DEBUG: "tfl.NumericVerify"(%[[q_split]]#0, %[[f_split]]#0) <{log_if_failed = true, tolerance = 5.000000e+00 : f32}>
    }
    
    // DEBUG-LABEL: NotQuantizePow
    func.func @NotQuantizePow(%arg0: tensor<4x!quant.uniform<u8:f32, 1.0>>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. src/image/gif/writer_test.go

    			t.Errorf("%s, bounds differ: %v and %v", tc.filename, m0.Bounds(), m1.Bounds())
    			continue
    		}
    		// Compare the average delta to the tolerance level.
    		avgDelta := averageDelta(m0, m1)
    		if avgDelta > tc.tolerance {
    			t.Errorf("%s: average delta is too high. expected: %d, got %d", tc.filename, tc.tolerance, avgDelta)
    			continue
    		}
    	}
    }
    
    func TestSubImage(t *testing.T) {
    	m0, err := readImg("../testdata/video-001.gif")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/passes.td

          Option<"enable_numeric_verify_", "numeric-verify",
                 "bool", "false",
                 "Whether verify numericals at runtime.">,
          Option<"error_tolerance_", "error-tolerance",
                 "float", "5.0f",
                 "Error tolerance for numeric verify. Valid when `-numeric-verify` is set.">,
          Option<"enable_whole_model_verify_", "whole-model-verify",
                 "bool", "false",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

    // Used in TFL Numeric Verify
    struct NumericVerifySpec {
      // Whether to enable numeric verification
      bool verify_numeric = false;
    
      // Tolerance level from the quantized value for verification. If the tolerance
      // is very small(<0.1), only the stats of the diff is displayed.
      float error_tolerance = 5.0f;
    
      // Whether to verify numerical correctness layer by layer or by whole model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    // TODO(b/228291745): Assert that $x and $y have the same shape.
    def : Pat<(TF_ApproximateEqualOp:$result $x, $y, $tolerance),
              (CHLO_BroadcastCompareOp
               (MHLO_AbsOp:$abs (MHLO_SubtractOp $x, $y)),
               (CastValueToElementType $result, (MHLO_ConstantOp $tolerance), $abs),
               (NullDenseI64ArrayAttr),
               CHLO_ComparisonDirectionValue<"LT">,
               (CHLO_DEFAULT_COMPARISON_TYPE))>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_386.go

    	Sec  int32
    	Usec int32
    }
    
    type Timex struct {
    	Modes     uint32
    	Offset    int32
    	Freq      int32
    	Maxerror  int32
    	Esterror  int32
    	Status    int32
    	Constant  int32
    	Precision int32
    	Tolerance int32
    	Time      Timeval
    	Tick      int32
    	Ppsfreq   int32
    	Jitter    int32
    	Shift     int32
    	Stabil    int32
    	Jitcnt    int32
    	Calcnt    int32
    	Errcnt    int32
    	Stbcnt    int32
    	Tai       int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top