Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 283 for weights (0.61 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

    }
    
    // Returns the quantized type for the
    // input_type/min/max/storag_type_width/narrow_range.
    // This is entry point to the Quant dialect and used for both quantizing
    // activations and weights.
    Type GetQuantizedType(Builder builder, const Type input_type,
                          const ArrayRef<double> min, const ArrayRef<double> max,
                          const int quant_dim, const int storage_type_width,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    format which contains three 1D tensors.
      }];
    
      let arguments = (ins
        TF_Int32Tensor:$indices_or_row_splits,
        TF_Int32Tensor:$values,
        TF_Float32Tensor:$weights,
    
        ConfinedAttr<I64Attr, [IntMinValue<1>]>:$sample_count,
        StrAttr:$combiner
      );
    
      let results = (outs
        TF_Int32Tensor:$row_ids,
        TF_Int32Tensor:$col_ids,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      }];
    
      let description = [{
    Outputs a vector with length `size` and the same dtype as `weights`. If
    `weights` are empty, then index `i` stores the number of times the value `i` is
    counted in `arr`. If `weights` are non-empty, then index `i` stores the sum of
    the value in `weights` at each index where the corresponding value in `arr` is
    `i`.
    
    Values in `arr` outside of the range [0, size) are ignored.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier.go

    			Address: netutils.ParseIPSloppy(ip),
    			Port:    uint16(portNum),
    			Weight:  1,
    		}
    
    		if curEndpoints.Has(ep) {
    			// if we are syncing for the first time, loop through all current destinations and
    			// reset their weight.
    			if proxier.initialSync {
    				for _, dest := range curDests {
    					if dest.Weight != newDest.Weight {
    						err = proxier.ipvs.UpdateRealServer(appliedVirtualServer, newDest)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    }
    
    // WeightedPodAffinityTerm represents the weights of all of the matched WeightedPodAffinityTerm
    // fields are added per-node to find the most preferred node(s)
    type WeightedPodAffinityTerm struct {
    	// weight associated with matching the corresponding podAffinityTerm,
    	// in the range 1-100.
    	Weight int32
    	// Required. A pod affinity term, associated with the corresponding weight.
    	PodAffinityTerm PodAffinityTerm
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    var map_WeightedPodAffinityTerm = map[string]string{
    	"":                "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
    	"weight":          "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.",
    	"podAffinityTerm": "Required. A pod affinity term, associated with the corresponding weight.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

            /*input=*/new_filter);
        rewriter.replaceAllUsesExcept(filter_op->getResult(0), dq.getOutput(), dq);
      }
    
     private:
      // Returns new quantized type for weights after transpose.
      Type GetNewWeightQuantizedType(MLIRContext* context, Location location,
                                     ArrayRef<int64_t> new_shape, Type filter_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize.cc

            // This filter goes through quantize and dequantize ops. Then we just
            // need to update the weight to the quantize op.
            filter.replaceAllUsesWith(new_filter_op);
          } else {
            // This filter doesn't go through quantize and dequantize ops, Then
            // we update the weight of the affine op directly.
            fc_op.setOperand(1, new_filter_op);
          }
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sync/semaphore/semaphore.go

    // maximum combined weight for concurrent access.
    func NewWeighted(n int64) *Weighted {
    	w := &Weighted{size: n}
    	return w
    }
    
    // Weighted provides a way to bound concurrent access to a resource.
    // The callers can request access with a given weight.
    type Weighted struct {
    	size    int64
    	cur     int64
    	mu      sync.Mutex
    	waiters list.List
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)
    message WeightedPodAffinityTerm {
      // weight associated with matching the corresponding podAffinityTerm,
      // in the range 1-100.
      optional int32 weight = 1;
    
      // Required. A pod affinity term, associated with the corresponding weight.
      optional PodAffinityTerm podAffinityTerm = 2;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top