Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for weights (0.12 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    	if forwardTo == nil {
    		return nil, nil, nil
    	}
    
    	weights := []int{}
    	action := []k8s.BackendRef{}
    	for _, w := range forwardTo {
    		wt := int(ptr.OrDefault(w.Weight, 1))
    		if wt == 0 {
    			continue
    		}
    		action = append(action, w)
    		weights = append(weights, wt)
    	}
    	if len(weights) == 1 {
    		weights = []int{0}
    	}
    
    	var invalidBackendErr *ConfigError
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

        (binaryOp (TFL_TransposeConvOp:$output $output_shape, $weights, $input,
                    (Arith_ConstantOp FloatElementsAttr:$bias), $padding,
                    $stride_h, $stride_w, TFL_AF_None),
                  (Arith_ConstantOp FloatElementsAttr:$value), $act_fn),
        (TFL_TransposeConvOp $output_shape, $weights, $input,
          (binaryOp (Arith_ConstantOp $bias),
             (Arith_ConstantOp $value), TFL_AF_None),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

                                        enable_per_channel_quantization_));
    
      // Apply activation-weight quantization.
      if (quantization_method_ ==
          tensorflow::quantization::QuantizationMethod::METHOD_STATIC_RANGE_INT8) {
        // For XLA case, weight quantization will be applied for the remaining f32
        // weights even in SRQ.
        pm.addNestedPass<func::FuncOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework.go

    		// encountered, let the individual Score weight take precedence.
    		if _, ok := f.scorePluginWeight[e.Name]; ok {
    			continue
    		}
    		// a weight of zero is not permitted, plugins can be disabled explicitly
    		// when configured.
    		f.scorePluginWeight[e.Name] = int(e.Weight)
    		if f.scorePluginWeight[e.Name] == 0 {
    			f.scorePluginWeight[e.Name] = 1
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    format which contains three 1D tensors.
      }];
    
      let arguments = (ins
        TF_Int32Tensor:$indices_or_row_splits,
        TF_Int32Tensor:$values,
        TF_Float32Tensor:$weights,
    
        ConfinedAttr<I64Attr, [IntMinValue<1>]>:$sample_count,
        StrAttr:$combiner
      );
    
      let results = (outs
        TF_Int32Tensor:$row_ids,
        TF_Int32Tensor:$col_ids,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    			Address: netutils.ParseIPSloppy(ip),
    			Port:    uint16(portNum),
    			Weight:  1,
    		}
    
    		if curEndpoints.Has(ep) {
    			// if we are syncing for the first time, loop through all current destinations and
    			// reset their weight.
    			if proxier.initialSync {
    				for _, dest := range curDests {
    					if dest.Weight != newDest.Weight {
    						err = proxier.ipvs.UpdateRealServer(appliedVirtualServer, newDest)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

    }
    
    // -----
    
    // Tests that basic convolution is properly quantized. In this example, the
    // convolution is always per-tensor quantized (even if
    // enable-per-channel-quantized-weights=true), according to
    // `_quantization_method`.
    
    // CHECK-LABEL: quantize_conv_fn_per_tensor
    func.func @quantize_conv_fn_per_tensor(%arg0: tensor<1x3x4x3xf32>) -> tensor<1x3x4x2xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route_test.go

    						Destination: &networking.Destination{
    							Host:   "c-weighted.extsvc.com",
    							Subset: "v2",
    						},
    						Weight: 100,
    					},
    				},
    			},
    			{
    				Route: []*networking.HTTPRouteDestination{
    					{
    						Destination: &networking.Destination{
    							Host:   "c-weighted.extsvc.com",
    							Subset: "v1",
    						},
    						Weight: 100,
    					},
    				},
    			},
    		},
    	},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route.go

    	} else {
    		weighted := make([]*route.WeightedCluster_ClusterWeight, 0)
    		for _, dst := range in.Route {
    			if dst.Weight == 0 {
    				// Ignore 0 weighted clusters if there are other clusters in the route.
    				continue
    			}
    			destinationweight, hostname := processWeightedDestination(dst, serviceRegistry, listenerPort, hashByDestination, action)
    			weighted = append(weighted, destinationweight)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/manual.css

    	border-width: 1px 0 0;
    	clear: both;
    	margin: 1.25em 0 1.1875em;
    	height: 0;
    }
    
    /* Helpful Typography Defaults */
    em,
    i {
    	font-style: italic;
    	line-height: inherit;
    }
    
    strong,
    b {
    	font-weight: bold;
    	line-height: inherit;
    }
    
    small {
    	font-size: 60%;
    	line-height: inherit;
    }
    
    code {
    	font-family: "Droid Sans Mono", "DejaVu Sans Mono", monospace;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top