Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for max8 (0.08 sec)

  1. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (CMP(W|WU) (MOVDconst [c]) x) => (InvertFlags (CMP(W|WU)const x [int32(c)]))
    
    // Match (x >> c) << d to 'rotate then insert selected bits [into zero]'.
    (SLDconst (SRDconst x [c]) [d]) => (RISBGZ x {s390x.NewRotateParams(uint8(max8(0, int8(c-d))), 63-d, uint8(int8(d-c)&63))})
    
    // Match (x << c) >> d to 'rotate then insert selected bits [into zero]'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  2. src/time/time_test.go

    		}
    	}
    }
    
    func TestParseDurationRoundTrip(t *testing.T) {
    	// https://golang.org/issue/48629
    	max0 := Duration(math.MaxInt64)
    	max1, err := ParseDuration(max0.String())
    	if err != nil || max0 != max1 {
    		t.Errorf("round-trip failed: %d => %q => %d, %v", max0, max0.String(), max1, err)
    	}
    
    	min0 := Duration(math.MinInt64)
    	min1, err := ParseDuration(min0.String())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      auto maxs = tensor.quantization->max;
      if (mins.size() != maxs.size() || mins.empty()) return nullptr;
    
      llvm::SmallVector<llvm::APFloat, 4> min_maxs;
      min_maxs.reserve(mins.size() * 2);
      for (int i = 0, end = mins.size(); i < end; ++i) {
        llvm::APFloat min(mins[i]);
        llvm::APFloat max(maxs[i]);
        min_maxs.push_back(min);
        min_maxs.push_back(max);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  4. plugin/pkg/admission/limitranger/admission_test.go

    			Limits: []api.LimitRangeItem{
    				{
    					Type:                 limitType,
    					Min:                  min,
    					Max:                  max,
    					Default:              defaultLimit,
    					DefaultRequest:       defaultRequest,
    					MaxLimitRequestRatio: maxLimitRequestRatio,
    				},
    			},
    		},
    	}
    	externalLimitRange := corev1.LimitRange{}
    	v1.Convert_core_LimitRange_To_v1_LimitRange(&internalLimitRage, &externalLimitRange, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/prove.go

    				//    min = w - delta
    				//    max = MaxInt - delta
    				//
    				// And we prove that:
    				//    if min<max: min < x AND x <= max
    				//    if min>max: min < x OR  x <= max
    				//
    				// This is always correct, even in case of overflow.
    				//
    				// If the initial fact is x+delta >= w instead, the derived conditions are:
    				//    if min<max: min <= x AND x <= max
    				//    if min>max: min <= x OR  x <= max
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/javadoc.css

        grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, max-content) minmax(15%, auto);
    }
    @media screen and (max-width: 1000px) {
        .four-column-summary {
            display: grid;
            grid-template-columns: minmax(15%, max-content) minmax(15%, auto);
        }
    }
    @media screen and (max-width: 800px) {
        .two-column-search-results {
            display: grid;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    // will round up). That is, even if max is small, the returned size is not guaranteed
    // to be equal to max. max is allowed to be less than min, in which case it is as if
    // max == min.
    func (m *pallocData) findScavengeCandidate(searchIdx uint, minimum, max uintptr) (uint, uint) {
    	if minimum&(minimum-1) != 0 || minimum == 0 {
    		print("runtime: min = ", minimum, "\n")
    		throw("min must be a non-zero power of 2")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions.mlir

    // CHECK-LABEL: private @composite_conv_with_relu_fn_1
    // CHECK: %[[CONST:.*]] = stablehlo.constant dense<0.000000e+00>
    // CHECK: %[[CONV:.*]] = stablehlo.convolution(%arg0, %arg1)
    // CHECK: %[[MAX:.*]] = stablehlo.maximum %[[CONV]], %[[CONST]]
    // CHECK: return %[[MAX]] : tensor<1x3x3x4xf32>
    // CHECK: }
    
    // -----
    
    // CHECK-LABEL: @dot_general_with_relu_fn(
    // CHECK-SAME:                 %[[ARG_0:.*]]: tensor<1x1x167xf32>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    // For both relu1 and relu_0_to_1, the min/max operators commute,
    // so there are two possible orderings we need to rewrite.
    // Concretely, `m < n -> max(m, min(n, x)) = min(m, max(m, x))`.
    // Proof:
    // case (x <= m)
    //   max(m, min(n, x)) = max(m, m) = m and
    //   min(n, max(m, x)) = min(n, m) = m
    // case (m < x < n)
    //   max(m, min(n, x)) = max(m, x) = x and
    //   min(n, max(m, x)) = min(n, x) = x
    // case (n <= x)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			setMaxElements:   10,
    			expectedSetCost:  11,
    		},
    		{
    			name: "extended library join",
    			schemaGenerator: func(max *int64) *schema.Structural {
    				strType := withMaxLength(primitiveType("string", ""), max)
    				array := withMaxItems(arrayType("atomic", nil, &strType), max)
    				array = withRule(array, "self.join(' ') == 'aa bb'")
    				return &array
    			},
    			expectedCalcCost: 329853068905,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top