Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 283 for weights (0.41 sec)

  1. 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)
  2. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)
    type WeightedPodAffinityTerm struct {
    	// weight associated with matching the corresponding podAffinityTerm,
    	// in the range 1-100.
    	Weight int32 `json:"weight" protobuf:"varint,1,opt,name=weight"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "weight": {
                "default": 0,
                "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.",
                "format": "int32",
                "type": "integer"
              }
            },
            "required": [
              "weight",
              "preference"
            ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/networkfilter.go

    		if route.Weight > 0 {
    			clusterName := istioroute.GetDestinationCluster(route.Destination, service, port.Port)
    			clusterSpecifier.WeightedClusters.Clusters = append(clusterSpecifier.WeightedClusters.Clusters, &tcp.TcpProxy_WeightedCluster_ClusterWeight{
    				Name:   clusterName,
    				Weight: uint32(route.Weight),
    			})
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. src/cmd/gofmt/gofmt.go

    // (if any) and will cause a nonzero final exit code.
    func (s *sequencer) Add(weight int64, f func(*reporter) error) {
    	if weight < 0 || weight > s.maxWeight {
    		weight = s.maxWeight
    	}
    	if err := s.sem.Acquire(context.TODO(), weight); err != nil {
    		// Change the task from "execute f" to "report err".
    		weight = 0
    		f = func(*reporter) error { return err }
    	}
    
    	r := &reporter{prev: s.prev}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. src/net/lookup_plan9.go

    		if len(f) < 6 {
    			continue
    		}
    		port, _, portOk := dtoi(f[4])
    		priority, _, priorityOk := dtoi(f[3])
    		weight, _, weightOk := dtoi(f[2])
    		if !(portOk && priorityOk && weightOk) {
    			continue
    		}
    		addrs = append(addrs, &SRV{absDomainName(f[5]), uint16(port), uint16(priority), uint16(weight)})
    		cname = absDomainName(f[0])
    	}
    	byPriorityWeight(addrs).sort()
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. pkg/scheduler/apis/config/testing/defaults/defaults.go

    			{Name: names.TaintToleration, Weight: 3},
    			{Name: names.NodeAffinity, Weight: 2},
    			{Name: names.NodePorts},
    			{Name: names.NodeResourcesFit, Weight: 1},
    			{Name: names.VolumeRestrictions},
    			{Name: names.NodeVolumeLimits},
    			{Name: names.VolumeBinding},
    			{Name: names.VolumeZone},
    			{Name: names.PodTopologySpread, Weight: 2},
    			{Name: names.InterPodAffinity, Weight: 2},
    			{Name: names.DefaultPreemption},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. pkg/scheduler/apis/config/v1/default_plugins_test.go

    						{Name: names.PodTopologySpread, Weight: ptr.To[int32](2)},
    						{Name: names.InterPodAffinity, Weight: ptr.To[int32](2)},
    						{Name: names.DefaultPreemption},
    						{Name: names.NodeResourcesBalancedAllocation, Weight: ptr.To[int32](1)},
    						{Name: names.ImageLocality, Weight: ptr.To[int32](1)},
    						{Name: names.DefaultBinder},
    					},
    				},
    			},
    		},
    		{
    			name: "Feature gate DynamicResourceAllocation enabled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top