Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 629 for _lifted (0.13 sec)

  1. tensorflow/compiler/mlir/quantization/common/ir/FakeQuantSupport.cc

    // If 0.0 < rmin < rmax or rmin < rmax < 0.0, the range will be shifted
    // to include 0.0, but the range width size (rmax-rmin) isn't changed. The zero
    // point is derived from the shifted range, and the scale isn't changed. As
    // a consequence some values, which are supposed in the original [rmin, rmax]
    // range will be outside the shifted range and be clamped during quantization.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:52:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. hack/verify-prometheus-imports.sh

    exit_code=0
    
    # check for files we've allow-listed that no longer need to be
    if [ -n "${allowed_but_not_failing[*]}" ]; then
      {
        echo "ERROR: Some files allow-listed to import prometheus are no longer failing and should be removed."
        echo "Please remove these files from allowed_prometheus_importers in hack/verify-prometheus-imports.sh"
        echo ""
        echo "Non-failing but allow-listed files:"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 04:03:51 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/pre_calibration.h

    // static-range quantization.
    
    // The resulting `ModuleOp` contains `TF::CustomAggregatorOp`s for collecting
    // quantization statistics, along with `TF::XlaCallModuleOp`s that correspond to
    // lifted quantizable functions.
    class PreCalibrationComponent : public Component {
     public:
      // Name of the post-training quantization pre-calibration step. Used for
      // debugging purposes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_goline_too_new.txt

    # go.mod referenced from go.work too new
    cp go.work.old go.work
    ! go build .
    stderr '^go: module . listed in go.work file requires go >= 1.99999, but go.work lists go 1.10; to update it:\n\tgo work use$'
    
    ! go work sync
    stderr '^go: cannot load module . listed in go.work file: go.mod requires go >= 1.99999 \(running go 1\..+\)$'
    
    # go.work too new
    cp go.work.new go.work
    cp go.mod.old go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/DefaultBuildableModuleVersionListingResolveResult.java

        }
    
        @Override
        public ModuleVersionResolveException getFailure() {
            assertHasResult();
            return failure;
        }
    
        @Override
        public void listed(Collection<String> versions) {
            reset(State.Listed);
            this.versions = ImmutableSet.copyOf(versions);
            this.authoritative = true;
        }
    
        @Override
        public void failed(ModuleVersionResolveException failure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. test/fixedbugs/issue28079c.go

    // Non-Go-constant but constant values aren't ok for shifts.
    
    package p
    
    import "unsafe"
    
    func f() {
    	_ = complex(1<<uintptr(unsafe.Pointer(nil)), 0) // ERROR "invalid operation: shifted operand 1 \(type float64\) must be integer|non-integer type for left operand of shift"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 22:28:41 UTC 2022
    - 451 bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/graph/DirectedGraphRendererTest.groovy

            then:
            output.value == """[1]
    {info}+--- {normal}[2]
    {info}|    \\--- {normal}[4]
    {info}\\--- {normal}[3]
    {info}     \\--- {normal}[2] (*)
    
    {info}(*) - details omitted (listed previously){normal}
    """
        }
    
        def "renders a graph that contains cycles"() {
            given:
            1 * graph.getNodeValues("1", _, _) >> { args -> args[2] << "2"; args[2] << "3" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_use_issue55952.txt

    ! go list .
    stderr '^go: cannot load module y listed in go\.work file: open y'${/}'go\.mod:'
    
    -- go.work --
    use ./y
    -- x/go.mod --
    module x
    
    go 1.19
    -- x/m.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 172 bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/decls1.go

    	s5 = s /* ERROR "invalid operation" */ / t
    	s6 = array[t1]
    	s7 = array[x /* ERROR "integer" */]
    	s8 = &a
    	s10 = &42 /* ERROR "cannot take address" */
    	s11 = &v
    	s12 = -(u + *t11) / *&v
    	s13 = a /* ERROR "shifted operand" */ << d
    	s14 = i << j
    	s18 = math.Pi * 10.0
    	s19 = s1 /* ERROR "cannot call" */ ()
     	s20 = f0 /* ERROR "no value" */ ()
    	s21 = f6(1, s1, i)
    	s22 = f6(1, s1, uu /* ERRORx `cannot use .* in argument` */ )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. src/crypto/x509/oid.go

    func parseBase128Int(bytes []byte, initOffset int) (ret, offset int, failed bool) {
    	offset = initOffset
    	var ret64 int64
    	for shifted := 0; offset < len(bytes); shifted++ {
    		// 5 * 7 bits per byte == 35 bits of data
    		// Thus the representation is either non-minimal or too large for an int32
    		if shifted == 5 {
    			failed = true
    			return
    		}
    		ret64 <<= 7
    		b := bytes[offset]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top