Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 260 for weights (0.26 sec)

  1. tensorflow/compiler/mlir/lite/tests/quantize-dynamic-range.mlir

    // RUN: tf-opt %s -tfl-prepare-quantize-dynamic-range="enable-custom-op-quantization=CustomTestOp=1" -tfl-quantize="enable-dynamic-range-quantization=true enable-custom-op-weight-only=CustomTestOp=false" | FileCheck --check-prefix=CustomOpNotWeightOnly %s
    
    // CHECK-LABEL: QuantizeConv2D
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 21:09:00 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. pkg/config/validation/agent/validation.go

    		destLocalities := make([]string, 0)
    		for loc, weight := range locality.To {
    			destLocalities = append(destLocalities, loc)
    			if weight <= 0 || weight > 100 {
    				errs = AppendValidation(errs, fmt.Errorf("locality weight must be in range [1, 100]"))
    				return
    			}
    			totalWeight += weight
    		}
    		if totalWeight != 100 {
    			errs = AppendValidation(errs, fmt.Errorf("total locality weight %v != 100", totalWeight))
    			return
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

      // function attribute prefixed with `"indy_lstm_"`.
      // IndyLSTMs have diagonal recurrent weight matrices and can benefit from
      // more efficent operations in TFLite with the correct conversion (i.e. when
      // the diagonal recurrent weight matrices are provided as vectors).
      if (attr.getValue().starts_with("indy_lstm_")) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cgroup_manager_linux.go

    }
    
    // Convert cgroup v1 cpu.shares value to cgroup v2 cpu.weight
    // https://github.com/kubernetes/enhancements/tree/master/keps/sig-node/2254-cgroup-v2#phase-1-convert-from-cgroups-v1-settings-to-v2
    func CpuSharesToCpuWeight(cpuShares uint64) uint64 {
    	return uint64((((cpuShares - 2) * 9999) / 262142) + 1)
    }
    
    // Convert cgroup v2 cpu.weight value to cgroup v1 cpu.shares
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio_test.go

    			args := config.NodeResourcesFitArgs{
    				ScoringStrategy: &config.ScoringStrategy{
    					Type: config.RequestedToCapacityRatio,
    					Resources: []config.ResourceSpec{
    						{Name: "intel.com/foo", Weight: 3},
    						{Name: "intel.com/bar", Weight: 5},
    					},
    					RequestedToCapacityRatio: &config.RequestedToCapacityRatioParam{
    						Shape: []config.UtilizationShapePoint{
    							{Utilization: 0, Score: 0},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/batch.v1.CronJob.yaml

                      matchFields:
                      - key: keyValue
                        operator: operatorValue
                        values:
                        - valuesValue
                    weight: 1
                  requiredDuringSchedulingIgnoredDuringExecution:
                    nodeSelectorTerms:
                    - matchExpressions:
                      - key: keyValue
                        operator: operatorValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.StatefulSet.yaml

                    - valuesValue
                  matchFields:
                  - key: keyValue
                    operator: operatorValue
                    values:
                    - valuesValue
                weight: 1
              requiredDuringSchedulingIgnoredDuringExecution:
                nodeSelectorTerms:
                - matchExpressions:
                  - key: keyValue
                    operator: operatorValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.yaml

                      matchFields:
                      - key: keyValue
                        operator: operatorValue
                        values:
                        - valuesValue
                    weight: 1
                  requiredDuringSchedulingIgnoredDuringExecution:
                    nodeSelectorTerms:
                    - matchExpressions:
                      - key: keyValue
                        operator: operatorValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.yaml

                    - valuesValue
                  matchFields:
                  - key: keyValue
                    operator: operatorValue
                    values:
                    - valuesValue
                weight: 1
              requiredDuringSchedulingIgnoredDuringExecution:
                nodeSelectorTerms:
                - matchExpressions:
                  - key: keyValue
                    operator: operatorValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/cache/CacheBuilderTest.java

      }
    
      @GwtIncompatible // weigher
      public void testWeigher_withoutMaximumWeight() {
        CacheBuilder<Object, Object> builder = CacheBuilder.newBuilder().weigher(constantWeigher(42));
        assertThrows(IllegalStateException.class, () -> builder.build(identityLoader()));
      }
    
      @GwtIncompatible // weigher
      public void testWeigher_withMaximumSize() {
        assertThrows(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 03 20:10:02 UTC 2023
    - 23.2K bytes
    - Viewed (0)
Back to top