Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for nudge (0.07 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        auto float_to_quant =
            rewriter.create<DivOp>(op.getLoc(), quant_diff, float_diff);
    
        // During quantization, the quantized min/max values may not line up
        // perfectly with the specified min/max. Nudge them into the right range.
        auto min_scaled =
            rewriter.create<DivOp>(op.getLoc(), float_min, quant_to_float);
        auto min_scaled_sub =
            rewriter.create<SubOp>(op.getLoc(), quant_min, min_scaled);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcher.java

    import static org.apache.commons.lang.StringUtils.substringAfterLast;
    
    /**
     * This class has two public APIs:
     *
     * <ul>
     * <li>Judge whether a test class might be included. For example, class 'org.gradle.Test' can't
     * be included by pattern 'org.apache.Test'
     * <li>Judge whether a test method is matched exactly.
     * </ul>
     *
     * In both cases, if the pattern starts with an upper-case letter, it will be used to match
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    		capacity := max(w.capacity/2, w.lowerBoundCapacity)
    		if capacity < w.capacity {
    			w.doCacheResizeLocked(capacity)
    		}
    		return
    	}
    }
    
    // isCacheFullLocked used to judge whether watchCacheEvent is full.
    // Assumes that lock is already held for write.
    func (w *watchCache) isCacheFullLocked() bool {
    	return w.endIndex == w.startIndex+w.capacity
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    		// Horrible hack. If a range contains only zero-width
    		// instructions, e.g. an Arg, and it's at the beginning of the
    		// function, this would be indistinguishable from an
    		// end entry. Fudge it.
    		if begin == 0 && end == 0 {
    			end = 1
    		}
    
    		if ctxt.UseBASEntries {
    			listSym.WriteInt(ctxt, listSym.Size, ctxt.Arch.PtrSize, int64(begin))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		factor = fmt.Sprintf("more than 100x")
    	} else if exceedFactor < 1.5 {
    		factor = fmt.Sprintf("%fx", exceedFactor) // avoid reporting "exceeds budge by a factor of 1.0x"
    	} else {
    		factor = fmt.Sprintf("%.1fx", exceedFactor)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  6. RELEASE.md

    Yu, PinkySan, pks, powderluv, Qiao Hai-Jun, Qiao Longfei, Rajendra Arora, Ralph
    Tang, resec, Robin Richtsfeld, Rohan Varma, Ryohei Kuroki, SaintNazaire, Samuel
    He, Sandeep Dcunha, sandipmgiri, Sang Han, scott, Scott Mudge, Se-Won Kim, Simon
    Perkins, Simone Cirillo, Steffen Schmitz, Suvojit Manna, Sylvus, Taehoon Lee,
    Ted Chang, Thomas Deegan, Till Hoffmann, Tim, Toni Kunic, Toon Verstraelen,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top