Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for spdelta (0.21 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // the resulting tensor computed, then the start and delta is used with the
    // dynamic_iota value to compute the final range value.
    //
    // For example, the resulting range op value:
    //   %range = "tf.range"(%start, %limit, %delta)
    //
    // Is converted to the following.
    //   %start + %delta * iota(ceil(abs((%limit - %start) / %delta))
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	// The delta is the number of bytes to offset ptr by.
    	delta := s.newValue2(mulOp, types.Types[types.TINT], i, stride)
    
    	// If we're slicing to the point where the capacity is zero,
    	// zero out the delta.
    	mask := s.newValue1(ssa.OpSlicemask, types.Types[types.TINT], rcap)
    	delta = s.newValue2(andOp, types.Types[types.TINT], delta, mask)
    
    	// Compute rptr = ptr + delta.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    			}
    
    			// Adjust flow control of currently-open
    			// frames by the difference of the old initial
    			// window size and this one.
    			delta := int32(s.Val) - int32(cc.initialWindowSize)
    			for _, cs := range cc.streams {
    				cs.flow.add(delta)
    			}
    			cc.cond.Broadcast()
    
    			cc.initialWindowSize = s.Val
    		case http2SettingHeaderTableSize:
    			cc.henc.SetMaxDynamicTableSize(s.Val)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top