Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 170 for weights (0.13 sec)

  1. samples/tcp-echo/gateway-api/tcp-echo-20-v2.yaml

    metadata:
      name: tcp-echo
    spec:
      parentRefs:
      - name: tcp-echo-gateway
        sectionName: tcp-31400
      rules:
      - backendRefs:
        - name: tcp-echo-v1
          port: 9000
          weight: 80
        - name: tcp-echo-v2
          port: 9000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 18 15:09:04 UTC 2022
    - 305 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_uniform_quantized_drq.mlir

      func.func @quantized_conv2d_fn(
                             %input : tensor<*xf32>, %weight : tensor<*x!tf_type.qint8>,
                             %weight_scale : tensor<*xf32>, %weight_zp : tensor<*xi32>) -> tensor<*xf32>
          attributes {tf_quant.quantized_ops = ["Conv2D"]} {
    
        %out = "tf.UniformQuantizedConvolutionHybrid"(%input, %weight,
                               %weight_scale, %weight_zp) {
            Tlhs = "tfdtype$DT_FLOAT",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Dec 01 12:06:54 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/v1/default_plugins.go

    				{Name: names.TaintToleration, Weight: ptr.To[int32](3)},
    				{Name: names.NodeAffinity, Weight: ptr.To[int32](2)},
    				{Name: names.NodePorts},
    				{Name: names.NodeResourcesFit, Weight: ptr.To[int32](1)},
    				{Name: names.VolumeRestrictions},
    				{Name: names.NodeVolumeLimits},
    				{Name: names.VolumeBinding},
    				{Name: names.VolumeZone},
    				{Name: names.PodTopologySpread, Weight: ptr.To[int32](2)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. samples/bookinfo/gateway-api/route-reviews-90-10.yaml

      name: reviews
    spec:
      parentRefs:
      - group: ""
        kind: Service
        name: reviews
        port: 9080
      rules:
      - backendRefs:
        - name: reviews-v1
          port: 9080
          weight: 90
        - name: reviews-v2
          port: 9080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 22:57:42 UTC 2023
    - 313 bytes
    - Viewed (0)
  5. samples/helloworld/gateway-api/helloworld-route.yaml

      - name: helloworld-gateway
      rules:
      - matches:
        - path:
            type: Exact
            value: /hello
        backendRefs:
        - name: helloworld-v1
          port: 5000
          weight: 90
        - name: helloworld-v2
          port: 5000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 03 18:46:50 UTC 2022
    - 353 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_xla_weight_only.mlir

        } : (tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
        func.return %3 : tensor<*xf32>
      }
    
      // TODO(b/269387785): Support asymmetric quantization for weight with weight-only scheme.
      parameters[
        {"quantized_ops": ["MatMul"], "internal_func_name": "internal_matmul_fn"},
        {"quantized_ops": ["Conv2D"], "internal_func_name": "internal_conv2d_fn"},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 15:43:38 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/invalid.yaml

        namespace: istio-system
      hostnames: ["third.domain.example"]
      rules:
      - backendRefs:
        - name: nonexistent
          port: 80
          weight: 1
        - name: httpbin
          port: 80
          weight: 1
        - name: httpbin
          kind: GcsBucket
          weight: 1
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-mirror
      namespace: default
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/cpp-application-configurations.dot

        cppCompileVariant -> nativeLinkVariant -> nativeRuntimeVariant [style=invis, weight=1000]
    
        cppCompileVariant[label=<cppCompile<i>Variant</i> (R)>]
        nativeLinkVariant[label=<nativeLink<i>Variant</i> (R)>]
        nativeRuntimeVariant[label=<nativeRuntime<i>Variant</i> (R)>]
      }
    
      subgraph right {
        node[style=filled, fillcolor="#ea9999"]
        variantRuntimeElements [weight=1000]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio.go

    	return func(requested, allocable []int64) int64 {
    		var nodeScore, weightSum int64
    		for i := range requested {
    			if allocable[i] == 0 {
    				continue
    			}
    			weight := resources[i].Weight
    			resourceScore := resourceScoringFunction(requested[i], allocable[i])
    			if resourceScore > 0 {
    				nodeScore += resourceScore * weight
    				weightSum += weight
    			}
    		}
    		if weightSum == 0 {
    			return 0
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 15:23:47 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/noderesources/most_allocated.go

    			weightSum += weight
    		}
    		if weightSum == 0 {
    			return 0
    		}
    		return nodeScore / weightSum
    	}
    }
    
    // The used capacity is calculated on a scale of 0-MaxNodeScore (MaxNodeScore is
    // constant with value set to 100).
    // 0 being the lowest priority and 100 being the highest.
    // The more resources are used the higher the score is. This function
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 15:23:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top