Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 76 for linear_1 (0.15 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

    union QuantizationDetails {
      CustomQuantization,
    }
    
    // Parameters for converting a quantized tensor back to float.
    table QuantizationParameters {
      // These four parameters are the asymmetric linear quantization parameters.
      // Given a quantized value q, the corresponding float value f should be:
      //   f = scale * (q - zero_point)
      // For other quantization types, the QuantizationDetails below is used.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  2. src/strconv/eisel_lemire.go

    //
    //   - 1e43 ≈ (0xE596B7B0_C643C719                   * (2 ** 79))
    //   - 1e43 = (0xE596B7B0_C643C719_6D9CCD05_D0000000 * (2 ** 15))
    //
    // The mantissas are explicitly listed. The exponents are implied by a linear
    // expression with slope 217706.0/65536.0 ≈ log(10)/log(2).
    //
    // The table was generated by
    // https://github.com/google/wuffs/blob/ba3818cb6b473a2ed0b38ecfc07dbbd3a97e8ae7/script/print-mpb-powers-of-10.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 41.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    union QuantizationDetails {
      CustomQuantization,
    }
    
    // Parameters for converting a quantized tensor back to float.
    table QuantizationParameters {
      // These four parameters are the asymmetric linear quantization parameters.
      // Given a quantized value q, the corresponding float value f should be:
      //   f = scale * (q - zero_point)
      // For other quantization types, the QuantizationDetails below is used.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. cluster/log-dump/log-dump.sh

    # does not run on Windows nodes.
    #
    # Note: This step is O(#nodes^2) as we check if each node is present in the list of succeeded nodes.
    # Making it linear would add code complexity without much benefit (as it just takes ~1s for 5k nodes).
    # Assumes:
    #   NODE_NAMES
    # Sets:
    #   NON_LOGEXPORTED_NODES
    function find_non_logexported_nodes() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  5. src/debug/dwarf/line.go

    // returns [ErrUnknownPC]. In this case, *entry and the final seek
    // position are unspecified.
    //
    // Note that DWARF line tables only permit sequential, forward scans.
    // Hence, in the worst case, this takes time linear in the size of the
    // line table. If the caller wishes to do repeated fast PC lookups, it
    // should build an appropriate index of the line table.
    func (r *LineReader) SeekPC(pc uint64, entry *LineEntry) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  6. src/runtime/iface.go

    	if cheaprand()&uint32(oldC.Mask) != 0 {
    		// As cache gets larger, choose to update it less often
    		// so we can amortize the cost of building a new cache
    		// (that cost is linear in oldc.Mask).
    		return case_, tab
    	}
    
    	// Make a new cache.
    	newC := buildInterfaceSwitchCache(oldC, t, case_, tab)
    
    	// Update cache. Use compare-and-swap so if multiple threads
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/writebarrier.go

    		// trying to move.
    		// Look for volatile source, copy it to temporary before we check
    		// the write barrier flag.
    		// It is unlikely to have more than one of them. Just do a linear
    		// search instead of using a map.
    		// See issue 15854.
    		type volatileCopy struct {
    			src *Value // address of original volatile value
    			tmp *Value // address of temporary we've copied the volatile value into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/Hashing.java

          }
          return false;
        }
    
        @Override
        public int hashCode() {
          return Arrays.hashCode(functions);
        }
      }
    
      /**
       * Linear CongruentialGenerator to use for consistent hashing. See
       * http://en.wikipedia.org/wiki/Linear_congruential_generator
       */
      private static final class LinearCongruentialGenerator {
        private long state;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

     *       {@link #poll} and {@link #remove()}) run in {@code O(log n) time}.
     *   <li>The {@link #remove(Object)} and {@link #contains} operations require linear ({@code O(n)})
     *       time.
     *   <li>If you only access one end of the queue, and don't use a maximum size, this class is
     *       functionally equivalent to {@link PriorityQueue}, but significantly slower.
     * </ul>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableSet.java

      private static final int CUTOFF = (int) (MAX_TABLE_SIZE * DESIRED_LOAD_FACTOR);
    
      /**
       * Returns an array size suitable for the backing array of a hash table that uses open addressing
       * with linear probing in its implementation. The returned size is the smallest power of two that
       * can hold setSize elements with the desired load factor. Always returns at least setSize + 2.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top