Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 134 for CEIL (0.04 sec)

  1. src/math/floor.go

    		}
    		return -d
    	}
    	d, _ := Modf(x)
    	return d
    }
    
    // Ceil returns the least integer value greater than or equal to x.
    //
    // Special cases are:
    //
    //	Ceil(±0) = ±0
    //	Ceil(±Inf) = ±Inf
    //	Ceil(NaN) = NaN
    func Ceil(x float64) float64 {
    	if haveArchCeil {
    		return archCeil(x)
    	}
    	return ceil(x)
    }
    
    func ceil(x float64) float64 {
    	return -Floor(-x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    	case "url", "lowerAscii", "upperAscii", "substring", "trim":
    		if len(args) >= 1 {
    			cost := uint64(math.Ceil(float64(actualSize(args[0])) * common.StringTraversalCostFactor))
    			return &cost
    		}
    	case "replace", "split":
    		if len(args) >= 1 {
    			// cost is the traversal plus the construction of the result
    			cost := uint64(math.Ceil(float64(actualSize(args[0])) * 2 * common.StringTraversalCostFactor))
    			return &cost
    		}
    	case "join":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool.cc

      int sh;  // Stride on "height" dimension.
      int sw;  // Stride on "width" dimension.
    
      bool ceil_mode;  // Rounding strategy (ceil or floor).
    };
    
    // Rounds the dimension based on the ceil mode.
    int RoundDim(float dim, bool ceil_mode) {
      if (ceil_mode) {
        return std::ceil(dim);
      }
      return std::floor(dim);
    }
    
    // For H or W, calculate the output dimension for average pool.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/replica_calculator.go

    		if err != nil {
    			return 0, time.Time{}, fmt.Errorf("unable to calculate ready pods: %s", err)
    		}
    		replicaCount = int32(math.Ceil(usageRatio * float64(readyPodCount)))
    	} else {
    		// Scale to zero or n pods depending on usageRatio
    		replicaCount = int32(math.Ceil(usageRatio))
    	}
    
    	return replicaCount, timestamp, err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool_patterns.td

                        (IsBoolCompositeAttribute<"count_include_pad", "true"> $attrs)]>;
    
    // Replaces aten.avg_pool2d with ceil mode with (T -> tfl.pad -> tfl.average_pool_2d -> mul -> T). Multiplies by a constant
    // which corrects the overcounting of divisors that would occur if doing this computation on a padded tensor with ceil mode off.
    def LegalizeAvgPoolCeilModeTrue: Pat<
                        (MHLO_CompositeOp:$old_val
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.cc

    #include <cmath>
    
    #include "absl/container/flat_hash_set.h"
    #include "tensorflow/core/framework/types.pb.h"
    
    namespace mlir {
    namespace TFL {
    
    double PowerOfTwoBound(double value) {
      return std::pow(2, std::ceil(std::log2(value)));
    }
    
    tensorflow::DataType GetQuantizedInferenceType(bool is_signed,
                                                   int number_of_bits) {
      if (is_signed && number_of_bits == 8) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 03 12:08:30 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/math/floor_386.s

    	MOVW    -2(SP), AX
    	ANDW    $0xf3ff, AX
    	ORW     $0x0800, AX  // Rounding Control set to +Inf
    	MOVW    AX, -4(SP)   // store new Control Word
    	FLDCW   -4(SP)       // load new Control Word
    	FRNDINT              // F0=Ceil(x)
    	FLDCW   -2(SP)       // load old Control Word
    	FMOVDP  F0, ret+8(FP)
    	RET
    
    // func archFloor(x float64) float64
    TEXT ·archFloor(SB),NOSPLIT,$0
    	FMOVD   x+0(FP), F0  // F0=x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/helpers_linux.go

    // See: https://github.com/kubernetes/kubernetes/pull/102884#discussion_r662552642
    func sharesToMilliCPU(shares int64) int64 {
    	milliCPU := int64(0)
    	if shares >= int64(cm.MinShares) {
    		milliCPU = int64(math.Ceil(float64(shares*milliCPUToCPU) / float64(cm.SharesPerCPU)))
    	}
    	return milliCPU
    }
    
    // quotaToMilliCPU converts cpu.cfs_quota_us and cpu.cfs_period_us to milli-CPU value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. pkg/api/v1/resource/helpers.go

    	c := int64(math.Ceil(float64(cpu.MilliValue()) / float64(divisor.MilliValue())))
    	return strconv.FormatInt(c, 10), nil
    }
    
    // convertResourceMemoryToString converts memory value to the format of divisor and returns
    // ceiling of the value.
    func convertResourceMemoryToString(memory *resource.Quantity, divisor resource.Quantity) (string, error) {
    	m := int64(math.Ceil(float64(memory.Value()) / float64(divisor.Value())))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 13:58:16 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/shufflesharding/shufflesharding_test.go

    	}
    	return ans
    }
    
    func TestUniformDistribution(t *testing.T) {
    	const spare = 64 - MaxHashBits
    	tests := []struct {
    		deckSize, handSize int
    		hashMax            int
    	}{
    		{64, 3, 1 << uint(math.Ceil(math.Log2(float64(ff(64, 3))))+spare)},
    		{128, 3, ff(128, 3)},
    		{50, 4, ff(50, 4)},
    	}
    	for _, test := range tests {
    		dealer, err := NewDealer(test.deckSize, test.handSize)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 25 06:44:08 UTC 2021
    - 6.7K bytes
    - Viewed (0)
Back to top