Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SetMax (0.42 sec)

  1. cmd/kube-proxy/app/server_linux.go

    func (s *ProxyServer) setupConntrack(ctx context.Context) error {
    	ct := &realConntracker{}
    
    	max, err := getConntrackMax(ctx, s.Config.Conntrack)
    	if err != nil {
    		return err
    	}
    	if max > 0 {
    		err := ct.SetMax(ctx, max)
    		if err != nil {
    			if err != errReadOnlySysFS {
    				return err
    			}
    			// errReadOnlySysFS is caused by a known docker issue (https://github.com/docker/docker/issues/24000),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

                  quant::DownCastScale(qtype, calibrated_type.getMin(),
                                       calibrated_type.getMax(), op.getLoc()));
            }
          } else if (tensor_property.number_of_bits == 16) {
            double max = std::max(std::abs(calibrated_type.getMin()),
                                  std::abs(calibrated_type.getMax()));
            qtype = quantfork::fakeQuantAttrsToType(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

                                                rewriter);
        if (failed(min_or)) {
          return failure();
        }
        auto max_or = CreateConstantOrConvertOp(op, adaptor.getMax(), *min_max_type,
                                                rewriter);
        if (failed(max_or)) {
          return failure();
        }
    
        auto output_type = GetUniformQuantizedType(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top