Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for deltaT (0.24 sec)

  1. src/sync/atomic/atomic_test.go

    		before int32
    		i      int32
    		after  int32
    	}
    	x.before = magic32
    	x.after = magic32
    	var j int32
    	for delta := int32(1); delta+delta > delta; delta += delta {
    		k := SwapInt32(&x.i, delta)
    		if x.i != delta || k != j {
    			t.Fatalf("delta=%d i=%d j=%d k=%d", delta, x.i, j, k)
    		}
    		j = delta
    	}
    	if x.before != magic32 || x.after != magic32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/prove.go

    				//    if delta < 0 and x+delta cannot underflow, then x > w
    				// This is useful for loops with bounds "len(slice)-K" (delta = -K)
    				if delta < 0 && !underflow {
    					ft.update(parent, x, w, signed, r)
    				}
    			} else {
    				// With w,delta constants, we want to derive: x+delta > w  ⇒  x > w-delta
    				//
    				// We compute (using integers of the correct size):
    				//    min = w - delta
    				//    max = MaxInt - delta
    				//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        // CHECK: [[ACCUM_NEW_MOMENTUM_LR:%.*]] = "tf.Mul"([[ACCUM_NEW]], [[MOMENTUM_LR]])
        // CHECK: [[DELTA:%.*]] = "tf.AddV2"([[GRAD_LR]], [[ACCUM_NEW_MOMENTUM_LR]])
        // CHECK: [[VAR:%.*]] = "tf.ReadVariableOp"([[VAR_HANDLE]])
        // CHECK: [[VAR_NEW:%.*]] = "tf.Sub"([[VAR]], [[DELTA]])
        // CHECK: "tf.AssignVariableOp"([[VAR_HANDLE]], [[VAR_NEW]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf.go

    )
    
    // appendPCDeltaCFA appends per-PC CFA deltas to b and returns the final slice.
    func appendPCDeltaCFA(arch *sys.Arch, b []byte, deltapc, cfa int64) []byte {
    	b = append(b, dwarf.DW_CFA_def_cfa_offset_sf)
    	b = dwarf.AppendSleb128(b, cfa/dataAlignmentFactor)
    
    	switch {
    	case deltapc < 0x40:
    		b = append(b, uint8(dwarf.DW_CFA_advance_loc+deltapc))
    	case deltapc < 0x100:
    		b = append(b, dwarf.DW_CFA_advance_loc1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route.go

    	}
    
    	out := xdshttpfault.HTTPFault{}
    	if in.Delay != nil {
    		out.Delay = &xdsfault.FaultDelay{}
    		if in.Delay.Percentage != nil {
    			out.Delay.Percentage = translatePercentToFractionalPercent(in.Delay.Percentage)
    		} else {
    			out.Delay.Percentage = translateIntegerToFractionalPercent(in.Delay.Percent) // nolint: staticcheck
    		}
    		switch d := in.Delay.HttpDelayType.(type) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller.go

    // custom delay, but not smaller than the batching delay.
    // It is used when pod recreations are delayed due to pod failures.
    // obj could be an *batch.Job, or a DeletionFinalStateUnknown marker item.
    func (jm *Controller) enqueueSyncJobWithDelay(logger klog.Logger, obj interface{}, delay time.Duration) {
    	if delay < syncJobBatchPeriod {
    		delay = syncJobBatchPeriod
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

                                          TensorShape({1000}));
    
      // We update the weights by adding delta to them (to "simulate" a
      // ResourceApplyGradientDescent and similar things).
      Output delta = ops::Placeholder(scope.WithOpName("delta"), DT_FLOAT);
    
      ops::AssignAddVariableOp increment_op(
          scope.WithOpName("IncrementIteration"), iter,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/regalloc.go

    				// Compute additional distance for the edge.
    				// Note: delta must be at least 1 to distinguish the control
    				// value use from the first user in a successor block.
    				delta := int32(normalDistance)
    				if len(p.Succs) == 2 {
    					if p.Succs[0].b == b && p.Likely == BranchLikely ||
    						p.Succs[1].b == b && p.Likely == BranchUnlikely {
    						delta = likelyDistance
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    //   %start = "tf.Const"() {value = dense<0> : tensor<i32>}
    //   %limit = "tf.Const"() {value = dense<5> : tensor<i32>}
    //   %delta = "tf.Const"() {value = dense<1> : tensor<i32>}
    //   %updates = "tf.Range"(%start, %limit, %delta) :
    //     (tensor<i32>, tensor<i32>, tensor<i32>) -> tensor<5xi32>
    //   %shape = "tf.Const"() {value = dense<[5, 1]> : tensor<2xi32>}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        val startNanos = System.nanoTime()
        assertFailsWith<InterruptedIOException> {
          stream.takeHeaders()
        }
        val elapsedNanos = System.nanoTime() - startNanos
        awaitWatchdogIdle()
        // 200ms delta
        assertThat(TimeUnit.NANOSECONDS.toMillis(elapsedNanos).toDouble())
          .isCloseTo(500.0, 200.0)
        assertThat(connection.openStreamCount()).isEqualTo(0)
    
        // Verify the peer received what was expected.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
Back to top