Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. cmd/erasure-server-pool.go

    	if globalIsDistErasure {
    		n = 2048
    	}
    
    	// Avoid allocating more than half of the available memory
    	if maxN := availableMemory() / (blockSizeV2 * 2); n > maxN {
    		n = maxN
    	}
    
    	if globalIsCICD || strconv.IntSize == 32 {
    		n = 256 // 256MiB for CI/CD environments is sufficient or on 32bit platforms.
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      ASSERT_THAT(*float_quant_params.max(), SizeIs(1));
      float float_min = std::min(0.f, float_quant_params.min()->Get(0));
      float float_max = std::max(0.f, float_quant_params.max()->Get(0));
      if (symmetric) {
        // When the symmetric case, ConvertStatsToQDQs in PrepareQuantizePass
        // updates the min and max values into bigger absolute values.
        float_max = std::max(std::abs(float_min), std::abs(float_max));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/options/options_test.go

    	"--leader-elect-retry-period=5s",
    	"--legacy-service-account-token-clean-up-period=8760h",
    	"--master=192.168.4.20",
    	"--max-endpoints-per-slice=200",
    	"--min-resync-period=8h",
    	"--mirroring-concurrent-service-endpoint-syncs=2",
    	"--mirroring-max-endpoints-per-subset=1000",
    	"--namespace-sync-period=10m",
    	"--node-cidr-mask-size=48",
    	"--node-cidr-mask-size-ipv4=48",
    	"--node-cidr-mask-size-ipv6=108",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        return success();
      };
    };
    
    static LogicalResult static_dag_matcher(
        PatternRewriter &rewriter, Operation *op,
        ::llvm::SmallVector<Operation *, 4> &target_ops,
        Operation::operand_range &max, Operation::operand_range &min,
        Operation::operand_range &input, IntegerAttr &num_bits,
        BoolAttr &narrow_range) {
      auto fakequant_op = ::llvm::dyn_cast<TF::FakeQuantWithMinMaxVarsOp>(op);
      if (!(fakequant_op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
Back to top