Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,266 for max8 (0.05 sec)

  1. 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)
  2. src/image/geom.go

    	}
    	if r.Max.X > s.Max.X {
    		r.Max.X = s.Max.X
    	}
    	if r.Max.Y > s.Max.Y {
    		r.Max.Y = s.Max.Y
    	}
    	// Letting r0 and s0 be the values of r and s at the time that the method
    	// is called, this next line is equivalent to:
    	//
    	// if max(r0.Min.X, s0.Min.X) >= min(r0.Max.X, s0.Max.X) || likewiseForY { etc }
    	if r.Empty() {
    		return ZR
    	}
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r66/CommandLineOptionsCrossVersionSpec.groovy

        }
    
        def "command-line arguments take precedence over system properties"() {
            when:
            def result = withBuild { BuildLauncher launcher ->
                launcher.withArguments("-Dorg.gradle.workers.max=4", "--max-workers=12")
            }
    
            then:
            result.standardOutput.contains("max workers: 12")
        }
    
        @TargetGradleVersion(">=6.6")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. src/internal/fuzz/mutator.go

    				// Don't let v exceed maxValue
    				max = maxValue - v
    			}
    
    			v += uint64(1 + m.rand(int(max)))
    			return v
    		case 1:
    			// Subtract a random number
    			if v <= 0 {
    				continue
    			}
    			if v < max {
    				// Don't let v drop below 0
    				max = v
    			}
    			v -= uint64(1 + m.rand(int(max)))
    			return v
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/CreateForm.java

        @Required
        @Size(max = 200)
        public String name;
    
        @Size(max = 1000)
        public String description;
    
        @Required
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerName;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerParameter;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerScript;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/webauth/CreateForm.java

        public Integer crudMode;
    
        @Size(max = 100)
        public String hostname;
    
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer port;
    
        @Size(max = 100)
        public String authRealm;
    
        @Size(max = 10)
        public String protocolScheme;
    
        @Required
        @Size(max = 100)
        public String username;
    
        @Size(max = 100)
        public String password;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. test/typeparam/listimp.dir/a.go

    	Next *ListNum[T]
    	Val  T
    }
    
    const Clip = 5
    
    // ClippedLargest returns the largest in the list of OrderNums, but a max of 5.
    func (l *ListNum[T]) ClippedLargest() T {
    	var max T
    	for p := l; p != nil; p = p.Next {
    		if p.Val > max && p.Val < Clip {
    			max = p.Val
    		}
    	}
    	return max
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

      """MinMaxCalibrationAlgorithm for calculating min and max values of calibration result.
    
      MinMax calibration calculates the global min and global max values.
    
      global min = min of given sample inputs
      global max = max of given sample inputs
      """
    
      def get_min_max_value(self) -> tuple[float, float]:
        """Calculates the global min and max values.
    
        Returns:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/rand/rand_test.go

    func TestIntnRange(t *testing.T) {
    	// 0 is invalid.
    	for min, max := range map[int]int{1: 2, 10: 123, 100: 500} {
    		for i := 0; i < maxRangeTestCount; i++ {
    			inrange := IntnRange(min, max)
    			if inrange < min || inrange >= max {
    				t.Errorf("%v out of range (%v,%v)", inrange, min, max)
    			}
    		}
    	}
    }
    
    func TestInt63nRange(t *testing.T) {
    	// 0 is invalid.
    	for min, max := range map[int64]int64{1: 2, 10: 123, 100: 500} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 07 13:45:36 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/cthread_windows.c

    static unsigned int
    goDummyCallbackThread(void* p)
    {
    	int i, max;
    
    	max = *(int*)p;
    	for(i=0; i<max; i++)
    		goDummy();
    	return 0;
    }
    
    int
    callGoInCThread(int max)
    {
    	uintptr_t thread_id;
    	thread_id = _beginthreadex(0, 0, goDummyCallbackThread, &max, 0, 0);
    	WaitForSingleObject((HANDLE)thread_id, INFINITE);
    	CloseHandle((HANDLE)thread_id);
    	return max;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top