Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for CEIL (0.09 sec)

  1. pilot/pkg/xds/debug.go

    	}
    }
    
    // VersionLen is the Config Version and is only used as the nonce prefix, but we can reconstruct
    // it because is is a b64 encoding of a 64 bit array, which will always be 12 chars in length.
    // len = ceil(bitlength/(2^6))+1
    const VersionLen = 12
    
    func (s *DiscoveryServer) getResourceVersion(nonce, key string, cache map[string]string) string {
    	if len(nonce) < VersionLen {
    		return ""
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    }
    
    // CHECK-LABEL:   func @ceil(
    // CHECK-SAME:               %[[VAL_0:.*]]: tensor<2xf32>) -> tensor<2xf32> {
    // CHECK:           %[[VAL_1:.*]] = "tf.Ceil"(%[[VAL_0]]) : (tensor<2xf32>) -> tensor<2xf32>
    // CHECK:           return %[[VAL_1]] : tensor<2xf32>
    // CHECK:         }
    func.func @ceil(%arg0: tensor<2xf32>) -> tensor<2xf32> {
      %0 = "mhlo.ceil"(%arg0) : (tensor<2xf32>) -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// Round to integer, float64 only.
    	// Special cases:
    	//   ±∞  → ±∞ (sign preserved)
    	//   ±0  → ±0 (sign preserved)
    	//   NaN → NaN
    	{name: "Floor", argLength: 1},       // round arg0 toward -∞
    	{name: "Ceil", argLength: 1},        // round arg0 toward +∞
    	{name: "Trunc", argLength: 1},       // round arg0 toward 0
    	{name: "Round", argLength: 1},       // round arg0 to nearest, ties away from 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "FFLOOR", argLength: 1, reg: fp11, asm: "FRIM"},                                          // floor(arg0), float64
    		{name: "FCEIL", argLength: 1, reg: fp11, asm: "FRIP"},                                           // ceil(arg0), float64
    		{name: "FTRUNC", argLength: 1, reg: fp11, asm: "FRIZ"},                                          // trunc(arg0), float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        }], [{
          TypeAttr::get(getResult().getType().cast<TensorType>().getElementType())
        }]>;
    }
    
    def TFL_CeilOp: TFL_Op<"ceil", [
        Pure,
        TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Ceil operator";
    
      let description = [{
        Returns element-wise ceil value of the input.
      }];
    
      let arguments = (ins TFL_FpTensor:$x);
    
      let results = (outs TFL_FpTensor:$y);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal.go

    		} else if policy.Type == autoscalingv2.PercentScalingPolicy {
    			// the proposal has to be rounded up because the proposed change might not increase the replica count causing the target to never scale up
    			proposed = int32(math.Ceil(float64(periodStartReplicas) * (1 + float64(policy.Value)/100)))
    		}
    		result = selectPolicyFn(result, proposed)
    	}
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/crypto/tls/tls_test.go

    	clientConfig.DynamicRecordSizingDisabled = dynamicRecordSizingDisabled
    	clientConfig.MaxVersion = version
    
    	buf := make([]byte, bufsize)
    	chunks := int(math.Ceil(float64(totalBytes) / float64(len(buf))))
    	for i := 0; i < N; i++ {
    		conn, err := Dial("tcp", ln.Addr().String(), clientConfig)
    		if err != nil {
    			b.Fatal(err)
    		}
    		for j := 0; j < chunks; j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Select1 (Div128u (Const64 [0]) lo y)) => (Mod64u lo y)
    
    (Not (ConstBool [c])) => (ConstBool [!c])
    
    (Floor       (Const64F [c])) => (Const64F [math.Floor(c)])
    (Ceil        (Const64F [c])) => (Const64F [math.Ceil(c)])
    (Trunc       (Const64F [c])) => (Const64F [math.Trunc(c)])
    (RoundToEven (Const64F [c])) => (Const64F [math.RoundToEven(c)])
    
    // Convert x * 1 to x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      // tensorflow/lite/kernels/range.cc.
      FloatOrInt diff = limit - start;
      if (std::is_integral<FloatOrInt>::value) {
        return ((std::abs(diff) + std::abs(delta) - 1) / std::abs(delta));
      }
      return std::ceil(std::abs(diff / delta));
    }
    
    // Builds a constant range tensor of `result_elem_type` elements.
    // Template parameter `FloatOrIntAtrr` must be mlir::IntegerAttr or
    // mlir::FloatAttr.
    template <typename FloatOrIntAtrr>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal_test.go

    	resourcesUsedRatio := float64(totalUsedCPUOfAllPods) / float64(float64(totalRequestedCPUOfAllPods)*target)
    
    	// i.e. .60 * 20 -> scaled down expectation.
    	finalPods := int32(math.Ceil(resourcesUsedRatio * float64(startPods)))
    
    	// To breach tolerance we will create a utilization ratio difference of tolerance to usageRatioToleranceValue)
    	tc1 := testCase{
    		minReplicas:             0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top