Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 260 for weights (0.11 sec)

  1. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity.go

    	}
    	state := &preScoreState{
    		preferredNodeAffinity: preferredNodeAffinity,
    	}
    	cycleState.Write(preScoreStateKey, state)
    	return nil
    }
    
    // Score returns the sum of the weights of the terms that match the Node.
    // Terms came from the Pod .spec.affinity.nodeAffinity and from the plugin's
    // default affinity.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // resource ops are considered duplicated if they have the same `shared_name`.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateMergeDuplicateResourceOpsPass();
    
    // Apply quantization to weights based on the provided schemes.
    std::unique_ptr<OperationPass<ModuleOp>> CreateQuantizeWeightsPass(
        const tensorflow::quantization::QuantizationOptions& quant_options);
    
    // Propagate quantized type through allowed ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    //       value {dimension_specs {dimension: 3}}}
    //   }}
    // }
    // ```
    //
    // This preset:
    //   * Applies per-channel quantization for weights (input index 1) of
    //     convolution quantizable unit family. The quantization dimension is 3, the
    //     channel dimension, which assumes the weight tensor is in NHWC format.
    //   * Applies static-range PTQ for all other ops.
    //
    // Next ID: 4
    message StaticRangePtqPreset {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

    constexpr mlir::StringRef kUnidirectionalSequenceRnnOp =
        "name: 'UnidirectionalSequenceRnn' input_arg: {name: 'Input' type: "
        "DT_FLOAT} input_arg: { name: 'Weights' type: DT_FLOAT } "
        "input_arg: { name: 'RecurrentWeights' type: DT_FLOAT } input_arg: { "
        "name: 'Bias' type: DT_FLOAT} "
        "input_arg: { name: 'HiddenState' type: DT_FLOAT} "
        "output_arg: { name: "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

      // prepare_quantize_ptq_per_channel.mlir.
      Option<bool> enable_per_channel_quantization_{
          *this, "enable-per-channel-quantization", llvm::cl::init(false),
          llvm::cl::desc("Whether enable per-channel quantized weights.")};
    };
    
    bool PrepareQuantizePass::SetInputNodesQuantizationParams(func::FuncOp func) {
      StringRef func_name = func.getName();
      auto has_quantize_op = [&](const Value arg) {
        return (arg.hasOneUse() &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    		ret += edge.Weight
    	}
    	return ret
    }
    
    type edgeList []*Edge
    
    func (el edgeList) Len() int {
    	return len(el)
    }
    
    func (el edgeList) Less(i, j int) bool {
    	if el[i].Weight != el[j].Weight {
    		return abs64(el[i].Weight) > abs64(el[j].Weight)
    	}
    
    	from1 := el[i].Src.Info.PrintableName()
    	from2 := el[j].Src.Info.PrintableName()
    	if from1 != from2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. pilot/pkg/xds/endpoints/ep_filters_test.go

    					{Address: "20.0.0.1", Weight: 6},
    					{Address: "20.0.0.2", Weight: 6},
    					{Address: "20.0.0.3", Weight: 6},
    					// 2 endpoint on network1 with weight aggregated at the gateway
    					{Address: "1.1.1.1", Weight: 12},
    					// 1 endpoint on network4 with no gateway (i.e. directly accessible)
    					{Address: "40.0.0.1", Weight: 6},
    				},
    				Weight: 36,
    			},
    		},
    		wantWorkloadMetadata: []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

    # Mapping of signature def key -> SignatureDef.
    _SignatureDefMap = Mapping[str, meta_graph_pb2.SignatureDef]
    
    # Default minimum number of elements in the weights for them to be quantized
    # during dynamic range quantization (DRQ) and weight-only quantization.
    _DYNAMIC_RANGE_DEFAULT_MIN_NUM_ELEMENTS_FOR_WEIGHTS = 1024
    
    
    def _is_qat_saved_model(saved_model_path: str):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // broadcasting support. This needs to be run immediately after HLO->TF
      // legalization; otherwise other passes like `ConvertTFBroadcastTo` will
      // constant fold the newly generated TF broadcast ops and materialize the
      // weights.
      pass_manager.addNestedPass<mlir::func::FuncOp>(
          mlir::TF::CreateBroadcastFoldPass());
    
      // Canonicalization after TF legalization.
      pass_manager.addNestedPass<mlir::func::FuncOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

          // but work beyond that must take at least one second
          assertTrue(afterBurst >= 1000);
        }
      }
    
      /**
       * This neat test shows that no matter what weights we use in our requests, if we push X amount of
       * permits in a cool state, where X = rate * timeToCoolDown, and we have specified a
       * timeToWarmUp() period, it will cost as the prescribed amount of time. E.g., calling
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
Back to top