Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 223 for weights (0.38 sec)

  1. pkg/scheduler/apis/config/types.go

    	Disabled []Plugin
    }
    
    // Plugin specifies a plugin name and its weight when applicable. Weight is used only for Score plugins.
    type Plugin struct {
    	// Name defines the name of plugin
    	Name string
    	// Weight defines the weight of plugin, only used for Score plugins.
    	Weight int32
    }
    
    // PluginConfig specifies arguments that should be passed to a plugin at the time of initialization.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/podtopologyspread/scoring.go

    // however we don't care about topology weight in this case as we return a 0
    // score for all nodes.
    func topologyNormalizingWeight(size int) float64 {
    	return math.Log(float64(size + 2))
    }
    
    // scoreForCount calculates the score based on number of matching pods in a
    // topology domain, the constraint's maxSkew and the topology weight.
    // `maxSkew-1` is added to the score so that differences between topology
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-quant.mlir

    //===----------------------------------------------------------------------===//
    
    // CHECK-LABEL: func @quantized_matmul_fn
    func.func @quantized_matmul_fn(%input: tensor<?xf32>) -> tensor<?xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 01:25:29 UTC 2024
    - 37.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/prepare-quantize-signed.mlir

      func.return %fc : tensor<1x2xf32>
    // CHECK-DAG: %[[weight:.*]] = arith.constant dense<{{\[\[}}0.000000e+00, 1.000000e+00]
    // CHECK-DAG: %[[bias:.*]] = arith.constant dense<[0.000000e+00, 2147364.75]>
    // CHECK-DAG: %[[b_q:.*]] = "tfl.quantize"(%[[bias]]){{.*}}quant.uniform<i32:f32:0, {7.8740158861230386E-10,0.0019998892694710656}>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. pkg/scheduler/apis/config/validation/validation.go

    	extenderManagedResources := sets.New[string]()
    	for i, extender := range extenders {
    		path := fldPath.Index(i)
    		if len(extender.PrioritizeVerb) > 0 && extender.Weight <= 0 {
    			errs = append(errs, field.Invalid(path.Child("weight"),
    				extender.Weight, "must have a positive weight applied to it"))
    		}
    		if extender.BindVerb != "" {
    			binders++
    		}
    		for j, resource := range extender.ManagedResources {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composite_functions_weight_only.mlir

        %weight = "tf.Const"() {value = dense<2.000000e+00> : tensor<2x3x3x2xf32>} : () -> tensor<2x3x3x2xf32>
        %1 = "tf.PartitionedCall"(%arg0, %weight) {_tfl_quant_trait = "fully_quantizable", config = "", config_proto = "", executor_type = "", f = @composite_conv2d_fn_1} : (tensor<1x2x2x3xf32>, tensor<2x3x3x2xf32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/v1/zz_generated.conversion.go

    	out.URLPrefix = in.URLPrefix
    	out.FilterVerb = in.FilterVerb
    	out.PreemptVerb = in.PreemptVerb
    	out.PrioritizeVerb = in.PrioritizeVerb
    	out.Weight = in.Weight
    	out.BindVerb = in.BindVerb
    	out.EnableHTTPS = in.EnableHTTPS
    	out.TLSConfig = (*config.ExtenderTLSConfig)(unsafe.Pointer(in.TLSConfig))
    	out.HTTPTimeout = in.HTTPTimeout
    	out.NodeCacheCapable = in.NodeCacheCapable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  8. pkg/scheduler/extender.go

    		extenderURL:      config.URLPrefix,
    		preemptVerb:      config.PreemptVerb,
    		filterVerb:       config.FilterVerb,
    		prioritizeVerb:   config.PrioritizeVerb,
    		bindVerb:         config.BindVerb,
    		weight:           config.Weight,
    		client:           client,
    		nodeCacheCapable: config.NodeCacheCapable,
    		managedResources: managedResources,
    		ignorable:        config.Ignorable,
    	}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composite_functions_drq.mlir

        %weight = "tf.Const"() {value = dense<2.000000e+00> : tensor<2x3x3x2xf32>} : () -> tensor<2x3x3x2xf32>
        %1 = "tf.PartitionedCall"(%arg0, %weight) {_tfl_quant_trait = "fully_quantizable", config = "", config_proto = "", executor_type = "", f = @composite_conv2d_fn_1} : (tensor<1x2x2x3xf32>, tensor<2x3x3x2xf32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. 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)
Back to top