Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Maxi (0.04 sec)

  1. test/fixedbugs/issue13799.go

    func test6(iter int) {
    
    	const maxI = 500
    	var x int
    	m := &x
    
    	// var fn *str
    	for i := 0; i < maxI; i++ {
    		var fn *str  // this makes it work, because fn stays off heap
    		fn = &str{m} // ERROR "&str{...} does not escape"
    		recur1(0, fn)
    	}
    
    	if *m != maxI {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/tensorflow/tests/tf_to_quant_4bit.mlir

      %min = arith.constant dense<0.0> : tensor<f32>
      %max = arith.constant dense<15.0> : tensor<f32>
      %mini = "tf.Identity"(%min) : (tensor<f32>) -> tensor<f32>
      %maxi = "tf.Identity"(%max) : (tensor<f32>) -> tensor<f32>
      %rst = "tf.FakeQuantWithMinMaxVars"(%in, %mini, %maxi) {num_bits = 3, narrow_range = false} : (tensor<8xf32>, tensor<f32>, tensor<f32>) -> tensor<8xf32>
      func.return %rst : tensor<8xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/versions/KotlinGradlePluginVersions.groovy

            JavaVersion maxi = getMaximumJavaVersionFor(kotlinVersionNumber)
            if (maxi != null) {
                assumeTrue("KGP $kotlinVersionNumber maximum supported Java version is $maxi, current is $current", current <= maxi)
            }
        }
    
        static boolean hasConfigurationCacheWarnings(VersionNumber kotlinVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/tensorflow/tests/tf_to_quant.mlir

      %min = arith.constant dense<0.0> : tensor<f32>
      %max = arith.constant dense<255.0> : tensor<f32>
      %mini = "tf.Identity"(%min) : (tensor<f32>) -> tensor<f32>
      %maxi = "tf.Identity"(%max) : (tensor<f32>) -> tensor<f32>
      %rst = "tf.FakeQuantWithMinMaxVars"(%in, %mini, %maxi) {num_bits = 5, narrow_range = false} : (tensor<8xf32>, tensor<f32>, tensor<f32>) -> tensor<8xf32>
      func.return %rst : tensor<8xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/versions/AndroidGradlePluginVersions.groovy

            assumeTrue("AGP $agpVersion minimum supported Java version is $mini, current is $current", current >= mini)
            JavaVersion maxi = getMaximumJavaVersionFor(agpVersionNumber)
            if (maxi != null) {
                assumeTrue("AGP $agpVersion maximum supported Java version is $maxi, current is $current", current <= maxi)
            }
        }
    
        static JavaVersion getMinimumJavaVersionFor(String agpVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-tf-fake-quant-4bit.mlir

      %min = arith.constant dense<0.0> : tensor<f32>
      %max = arith.constant dense<15.0> : tensor<f32>
      %mini = "tf.Identity"(%min) : (tensor<f32>) -> tensor<f32>
      %maxi = "tf.Identity"(%max) : (tensor<f32>) -> tensor<f32>
      %rst = "tfl.custom_tf"(%in, %mini, %maxi) ({
      ^bb0(%arg1: tensor<8xf32>, %arg2: tensor<f32>, %arg3: tensor<f32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 22K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/prepare-tf-fake-quant.mlir

      %min = arith.constant dense<0.0> : tensor<f32>
      %max = arith.constant dense<255.0> : tensor<f32>
      %mini = "tf.Identity"(%min) : (tensor<f32>) -> tensor<f32>
      %maxi = "tf.Identity"(%max) : (tensor<f32>) -> tensor<f32>
      %rst = "tfl.custom_tf"(%in, %mini, %maxi) ({
      ^bb0(%arg1: tensor<8xf32>, %arg2: tensor<f32>, %arg3: tensor<f32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/magic_test.go

    	minI := -int64(1) << (n - 1)
    	maxI := int64(1) << (n - 1)
    	for c := int64(1); c < maxI; c++ {
    		if !sdivisibleOK(n, int64(c)) {
    			continue
    		}
    		k := sdivisible(n, int64(c)).k
    		m := sdivisible(n, int64(c)).m
    		a := sdivisible(n, int64(c)).a
    		max := sdivisible(n, int64(c)).max
    		mask := ^uint64(0) >> (64 - n)
    		for i := minI; i < maxI; i++ {
    			want := i%c == 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 22:02:07 UTC 2019
    - 9.1K bytes
    - Viewed (0)
  9. src/encoding/gob/codec_test.go

    	type inputT struct {
    		Maxi int64
    		Mini int64
    		Maxu uint64
    		Maxf float64
    		Minf float64
    		Maxc complex128
    		Minc complex128
    	}
    	var it inputT
    	var err error
    	b := new(bytes.Buffer)
    	enc := NewEncoder(b)
    	dec := NewDecoder(b)
    
    	// int8
    	b.Reset()
    	it = inputT{
    		Maxi: math.MaxInt8 + 1,
    	}
    	type outi8 struct {
    		Maxi int8
    		Mini int8
    	}
    	var o1 outi8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  10. internal/s3select/csv/reader_contrib_test.go

    		recordDelimiter string
    		fieldDelimiter  string
    		header          bool
    		wantColumns     []string
    		wantTenFields   string
    		totalFields     int
    	}{
    		{
    			file:            "nyc-taxi-data-100k.csv",
    			recordDelimiter: "\n",
    			fieldDelimiter:  ",",
    			header:          true,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 38.5K bytes
    - Viewed (0)
Back to top