Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for max8 (0.07 sec)

  1. pkg/printers/internalversion/printers.go

    			if len(list) < max {
    				list = append(list, address)
    			} else if len(list) == max {
    				more = true
    			}
    			count++
    		}
    	}
    	return listWithMoreString(list, more, count, max)
    }
    
    func listWithMoreString(list []string, more bool, count, max int) string {
    	ret := strings.Join(list, ",")
    	if more {
    		return fmt.Sprintf("%s + %d more...", ret, count-max)
    	}
    	if ret == "" {
    		ret = "<unset>"
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        if (index_and_value.index() % 2 == 0) {
          mins.push_back(value.convertToFloat());
        } else {
          maxs.push_back(value.convertToFloat());
        }
      }
    
      return tflite::CreateQuantizationParameters(
          builder_, builder_.CreateVector<float>(mins),
          builder_.CreateVector<float>(maxs), /*scale=*/0, /*zero_point=*/0,
          tflite::QuantizationDetails_NONE, /*details=*/0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // CHECK-DAG: %[[ZERO:.+]] = arith.constant dense<0> : tensor<1xi64>
    // CHECK-DAG: %[[MAX1:.+]] = arith.constant dense<2> : tensor<1xi64>
    // CHECK-DAG: %[[MAX2:.+]] = arith.constant dense<3> : tensor<1xi64>
    // CHECK: %[[BITCAST1:.+]] = "tfl.bitcast"(%[[ARG1]]) : (tensor<i64>) -> tensor<1xi64>
    // CHECK: %[[MIN1:.+]] = "tfl.minimum"(%[[BITCAST1]], %[[MAX1]]) : (tensor<1xi64>, tensor<1xi64>) -> tensor<1xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    			(RotateLeft8 <typ.UInt8>
    				(Mul8 <typ.UInt8>
    					(Const8 <typ.UInt8> [int8(udivisible8(c).m)])
    					x)
    				(Const8 <typ.UInt8> [int8(8-udivisible8(c).k)])
    				)
    			(Const8 <typ.UInt8> [int8(udivisible8(c).max)])
    		)
    
    (Eq16 x (Mul16 (Const16 [c])
      (Trunc64to16
        (Rsh64Ux64
          mul:(Mul64
            (Const64 [m])
            (ZeroExt16to64 x))
          (Const64 [s])))
    	)
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        SameOperandsAndResultsScale]> {
      let summary = "Max operator";
      let description = [{
        Element-wise max operation.
      }];
    
      let arguments = (
        ins TFL_TensorOf<[F32, TFL_Int32Or64, QI8, QUI8, QI16]>:$lhs,
        TFL_TensorOf<[F32, TFL_Int32Or64, QI8, QUI8, QI16]>:$rhs
      );
    
      let results = (outs
        TFL_TensorOf<[F32, TFL_Int32Or64, QI8, QUI8, QI16]>:$max
      );
    
      let hasFolder = 1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			},
    			errors: map[string]string{
    				// return an error for min/max on empty list
    				"self.emptyInts.min() == 1":      "min called on empty list",
    				"self.emptyInts.max() == 3":      "max called on empty list",
    				"self.emptyDoubles.min() == 1.0": "min called on empty list",
    				"self.emptyDoubles.max() == 3.0": "max called on empty list",
    				"self.emptyStrings.min() == 'a'": "min called on empty list",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (min && !IsOfRankedFloatTensorType(min, 0))
        return op.emitOpError("requires min to be a 0d float tensor");
    
      auto max = GetRankedTensorTypeForOperand(op.getMax());
      if (max && !IsOfRankedFloatTensorType(max, 0))
        return op.emitOpError("requires max to be a 0d float tensor");
    
      int64_t num_bits = op.getNumBits();
      if (num_bits < 2 || num_bits > 16) {
        return op.emitOpError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		llvmStyle:       llvmStyle,
    		max:             max,
    		scopes:          1,
    	}
    	a.print(&ps)
    	s := ps.buf.String()
    	if max > 0 && len(s) > max {
    		s = s[:max]
    	}
    	return s
    }
    
    // The printState type holds information needed to print an AST.
    type printState struct {
    	tparams         bool // whether to print template parameters
    	enclosingParams bool // whether to print enclosing parameters
    	llvmStyle       bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  9. cmd/server_test.go

    	// execute the HTTP request to create bucket.
    	response, err := s.client.Do(request)
    	c.Assert(err, nil)
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	// create listObjectsV1 request with invalid value of max-keys parameter. max-keys is set to -2.
    	request, err = newTestSignedRequest(http.MethodGet, getListObjectsV1URL(s.endPoint, bucketName, "", "-2", ""),
    		0, nil, s.accessKey, s.secretKey, s.signer)
    	c.Assert(err, nil)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  10. pkg/config/validation/validation_test.go

    				},
    			},
    			valid: false,
    		},
    
    		{
    			name: "invalid connection pool, bad max pending requests", in: &networking.ConnectionPoolSettings{
    				Http: &networking.ConnectionPoolSettings_HTTPSettings{Http1MaxPendingRequests: -1},
    			},
    			valid: false,
    		},
    
    		{
    			name: "invalid connection pool, bad max requests", in: &networking.ConnectionPoolSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
Back to top