Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for weighted (0.3 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. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_TensorOf<[F32, I8]>:$fw_recurrent_to_output_weights,
    
        // Forward Cell weights
        TFL_TensorOfOrNone<[F32, I8]>:$fw_cell_to_input_weights,
        // Optional Forward cell weights
        TFL_TensorOfOrNone<[F32, I8]>:$fw_cell_to_forget_weights,
        // Optional Forward cell weights
        TFL_TensorOfOrNone<[F32, I8]>:$fw_cell_to_output_weights,
    
        // Forward Bias
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

          ValueReference<K, V> previous = entry.getValueReference();
          int weight = map.weigher.weigh(key, value);
          checkState(weight >= 0, "Weights must be non-negative");
    
          ValueReference<K, V> valueReference =
              map.valueStrength.referenceValue(this, entry, value, weight);
          entry.setValueReference(valueReference);
          recordWrite(entry, weight, now);
          previous.notifyNewValue(value);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework_test.go

    	return buildScoreConfigWithWeights(defaultWeights, ps...)
    }
    
    func buildScoreConfigWithWeights(weights map[string]int32, ps ...string) *config.Plugins {
    	var plugins []config.Plugin
    	for _, p := range ps {
    		plugins = append(plugins, config.Plugin{Name: p, Weight: weights[p]})
    	}
    	return &config.Plugins{Score: config.PluginSet{Enabled: plugins}}
    }
    
    type injectedResult struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    	}
    	return
    }
    
    func validateRouteDestinations(weights []*networking.RouteDestination, gatewaySemantics bool) (errs error) {
    	var totalWeight int32
    	for _, weight := range weights {
    		if weight == nil {
    			errs = multierror.Append(errs, errors.New("weight may not be nil"))
    			continue
    		}
    		if weight.Destination == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/LocalCache.java

          ValueReference<K, V> previous = entry.getValueReference();
          int weight = map.weigher.weigh(key, value);
          checkState(weight >= 0, "Weights must be non-negative");
    
          ValueReference<K, V> valueReference =
              map.valueStrength.referenceValue(this, entry, value, weight);
          entry.setValueReference(valueReference);
          recordWrite(entry, weight, now);
          previous.notifyNewValue(value);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    additionalProperties: type: integer description: Set of ports associated with the endpoint. type: object serviceAccount: description: The service account associated with the workload if a sidecar is present in the workload. type: string weight: description: The load balancing weight associated with the endpoint. type: integer type: object type: array exportTo: description: A list of namespaces to which this service is exported. items: type: string type: array hosts: description: The hosts associated with the...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  10. 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)
Back to top