Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for weights (0.31 sec)

  1. pkg/config/validation/validation_test.go

    			Weight:      5,
    		}, {
    			Destination: &networking.Destination{Host: "foo.baz.east"},
    			Weight:      -1,
    		}}, valid: false},
    		{name: "total weight > 100", routes: []*networking.RouteDestination{{
    			Destination: &networking.Destination{Host: "foo.baz.south"},
    			Weight:      550,
    		}, {
    			Destination: &networking.Destination{Host: "foo.baz.east"},
    			Weight:      500,
    		}}, valid: true},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier_test.go

    	}
    
    	rss, err = fp.ipvs.GetRealServers(vs)
    	if err != nil {
    		t.Errorf("failed to get real server, err: %v", err)
    	}
    	for _, rs := range rss {
    		if rs.Weight != 1 {
    			t.Logf("unexpected realserver weight: %d, expected weight: 1", rs.Weight)
    			t.Errorf("unexpected realserver state")
    		}
    	}
    }
    
    func TestIPv4Proxier(t *testing.T) {
    	tests := []struct {
    		name         string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

      return %1 : tensor<1x2x3x5xf32>
    }
    
    // CHECK: %[[WEIGHT:.+]] = "tfl.pseudo_qconst"() <{qtype = tensor<1x2x4x5x!quant.uniform<i8:f32, 1.000000e+00>>, value = dense<1> : tensor<1x2x4x5xi8>}>
    // CHECK: %[[DQ:.+]] = "tfl.dequantize"(%[[WEIGHT]]) : (tensor<1x2x4x5x!quant.uniform<i8:f32, 1.000000e+00>>) -> tensor<1x2x4x5xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          ('to_xla_per_tensor', quant_opts_pb2.XLA, False),
          ('stablehlo_per_channel', quant_opts_pb2.STABLEHLO, True),
          # TODO: b/289761265 - [Converter Component][TF-Quantizer] Improve Weight-
          # only Quantization
          # Enable this back once new weight-only quantizer is supported for per-
          # channel quantization.
          # ('to_xla_per_channel', quant_opts_pb2.XLA, True),
      )
      @test_util.run_in_graph_and_eager_modes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one_test.go

    				{
    					ExtenderName: "FakeExtender1",
    					Weight:       1,
    					Prioritizers: []tf.PriorityConfig{
    						{
    							Weight:   3,
    							Function: tf.Node1PrioritizerExtender,
    						},
    					},
    				},
    				{
    					ExtenderName: "FakeExtender2",
    					Weight:       1,
    					Prioritizers: []tf.PriorityConfig{
    						{
    							Weight:   2,
    							Function: tf.Node2PrioritizerExtender,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

        - destination:
            host: {{ (index .dst 0).Config.Service }}
          headers:
            request:
              set:
                Host: dest-authority
          weight: 50
        - destination:
            host: {{ (index .dst 0).Config.Service }}
          weight: 50
        headers:
          request:
            set:
              :authority: route-authority`,
    		opts: echo.CallOptions{
    			Port: echo.Port{
    				Name: "http",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // expected-error @+1 {{'tfl.unidirectional_sequence_lstm' op failed to verify that either projection weight must be specified or both projection weight and projection bias must not be specified}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	NS_DNS       = 12
    	NS_NLA       = 15
    	NS_BTH       = 16
    	NS_EMAIL     = 37
    	NS_PNRPNAME  = 38
    	NS_PNRPCLOUD = 39
    )
    
    type DNSSRVData struct {
    	Target   *uint16
    	Priority uint16
    	Weight   uint16
    	Port     uint16
    	Pad      uint16
    }
    
    type DNSPTRData struct {
    	Host *uint16
    }
    
    type DNSMXData struct {
    	NameExchange *uint16
    	Preference   uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_test.go

    			}
    
    			if tt.expectedLocalityWeightedConfig && c.CommonLbConfig.GetLocalityWeightedLbConfig() == nil {
    				t.Errorf("cluster expected to have weighed config, but is nil")
    			}
    			if tt.expectClusterLoadAssignmenttoBeNil && c.LoadAssignment != nil {
    				t.Errorf("cluster expected not to have load assignmentset, but is present")
    			}
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let constructor = "TFTPU::CreateTPUColocateSplitsPass()";
      let description = [{
        It is beneficial for performance to assign a `Split` op to the same device
        as its predecessor. This is because the weight of cut edges is always
        minimized when the `Split` is with its predecessor. This colocation
        constraint will be used by the placer graph optimization to assign a device
        to the op.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top