Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 255 for weights (0.13 sec)

  1. 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)
  2. 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)
  3. docs/en/docs/img/deployment/https/https08.drawio

                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Reader.kt

        streamId: Int,
      ) {
        val w1 = source.readInt()
        val exclusive = w1 and 0x80000000.toInt() != 0
        val streamDependency = w1 and 0x7fffffff
        val weight = (source.readByte() and 0xff) + 1
        handler.priority(streamId, streamDependency, weight, exclusive)
      }
    
      @Throws(IOException::class)
      private fun readRstStream(
        handler: Handler,
        length: Int,
        flags: Int,
        streamId: Int,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/maintenance/admin_maintenance.jsp

                                </div>
                                <div class="card-body">
                                    <div class="form-group row">
                                        <span class="font-weight-bold col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.replace_aliases"/></span>
                                        <div class="form-inline col-sm-9">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.css

    }
    
    .multi-language-selector .language-option {
        background-color: white;
        border: 1px solid #f7f7f8;
        border-radius: 4px 4px 0 0;
        cursor: pointer;
        display: inline-block;
        font-weight: normal;
        font-family: 'Lato', Arial, sans-serif;
        margin: 0;
        padding: 4px 20px;
        min-width: 130px;
        max-width: 320px;
        text-align: center;
        filter: grayscale(1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:27:34 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    				{
    					Weight: 2,
    					Preference: v1.NodeSelectorTerm{
    						MatchExpressions: []v1.NodeSelectorRequirement{
    							{
    								Key:      "foo",
    								Operator: v1.NodeSelectorOpIn,
    								Values:   []string{"bar"},
    							},
    						},
    					},
    				},
    				{
    					Weight: 4,
    					Preference: v1.NodeSelectorTerm{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/init_test.go

    			},
    			expectError: true,
    		},
    
    		// Pre-flight errors:
    		{
    			name: "pre-flights errors from CLI args only",
    			flags: map[string]string{
    				options.IgnorePreflightErrors: "a,b",
    			},
    			validate: expectedInitIgnorePreflightErrors("a", "b"),
    		},
    		{
    			name: "pre-flights errors from InitConfiguration only",
    			flags: map[string]string{
    				options.CfgPath: configFilePath,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize_weight.cc

    #include "tensorflow/compiler/mlir/quantization/stablehlo/utils/fill_quantization_options.h"
    
    // NOLINTNEXTLINE
    //===----------------------------------------------------------------------===//
    // The Quantization Pass for Weight.
    //===----------------------------------------------------------------------===//
    
    namespace mlir::quant::stablehlo {
    
    // Put the definitions inside the ::mlir::quant::stablehlo namespace, to match
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top