Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 358 for weights (0.19 sec)

  1. pkg/test/framework/components/istio/util.go

    spec:
      hosts:
        - non-existent-host
      http:
        - route:
          - destination:
              host: non-existent-host
              subset: v1
            weight: 75
          - destination:
              host: non-existent-host
              subset: v2
            weight: 25
    `
    
    func waitForValidationWebhook(ctx resource.Context, cluster cluster.Cluster, cfg Config) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

      return ConstantFoldOpIfPossible(reshape_op).front();
    }
    
    // Checks if a value can be symmetrically quantized.
    bool CanBeSymmetricallyQuantized(Value weight) {
      auto dq_op = weight.getDefiningOp<quantfork::DequantizeCastOp>();
      if (!dq_op) return true;
    
      auto qtype =
          mlir::cast<TensorType>(dq_op.getArg().getType()).getElementType();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_waypoint.go

    	weighted := make([]*route.WeightedCluster_ClusterWeight, 0)
    	for _, dst := range in.Route {
    		weight := &wrappers.UInt32Value{Value: uint32(dst.Weight)}
    		if dst.Weight == 0 {
    			// Ignore 0 weighted clusters if there are other clusters in the route.
    			// But if this is the only cluster in the route, then add it as a cluster with weight 100
    			if len(in.Route) == 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. src/encoding/xml/marshal_test.go

    			`<name>Zaphod</name>` +
    			`<name>Beeblebrox</name>` +
    			`<weight>7.25</weight>` +
    			`</passenger>` +
    			`<passenger>` +
    			`<name>Trisha</name>` +
    			`<name>McMillen</name>` +
    			`<weight>5.5</weight>` +
    			`</passenger>` +
    			`<passenger>` +
    			`<name>Ford</name>` +
    			`<name>Prefect</name>` +
    			`<weight>7</weight>` +
    			`</passenger>` +
    			`<passenger>` +
    			`<name>Arthur</name>` +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  5. 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)
  6. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/style.css

    .max-value {
        color: red;
    }
    
    .details {
        padding-top: 5px;
        font-size: 10pt;
    }
    
    #controls {
        float: right;
        text-align: right;
        font-size: 10pt;
    }
    
    #controls label {
        font-weight: bold;
        cursor: pointer;
    }
    
    nav ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: #f1f1f1;;
    }
    
    nav li {
        float: left;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    table.striped > tbody > tr > th {
        font-weight: normal;
    }
    /**
     * Tweak style for small screens.
     */
    @media screen and (max-width: 920px) {
        header.flex-header {
            max-height: 100vh;
            overflow-y: auto;
        }
        div#navbar-top {
            height: 2.8em;
            transition: height 0.35s ease;
        }
        ul.nav-list {
            display: block;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

      // quantizable ops, Q-DQ ops need to be preserved.
      bool shouldKeepUnusedQdqPattern();
    
      void runOnOperation() override;
    
     private:
      QuantizationSpecs quant_specs_;
    
      Option<bool> weight_quantization_{
          *this, "weight-quantization", llvm::cl::init(false),
          llvm::cl::desc("Whether to enable weight quantization.")};
      Option<OpSet> target_opset_{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/convert_tf_quant_ops_to_mhlo.mlir

    // RUN: stablehlo-quant-opt %s -quant-convert-tf-quant-ops-to-mhlo | FileCheck %s
    
    // CHECK-LABEL: func @quantized_matmul_fn
    func.func @quantized_matmul_fn(%input: tensor<?x?xf32>) -> tensor<?x?xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/post-quantize-dynamic-range.mlir

    // RUN: tf-opt %s -tfl-prepare-quantize-dynamic-range="enable-custom-op-quantization=CustomTestOp=1" -tfl-quantize="enable-dynamic-range-quantization=true enable-custom-op-weight-only=CustomTestOp=false" -tfl-post-quantize="enable-no-side-effect=CustomTestOp=true" | FileCheck...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top