Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for narrower (0.19 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

                 "or tf.relu6 to narrow the tensor range. Range: "
              << range << ", bit width: " << num_bits;
        }
        if (std::abs(max - min) < kNearZeroTolerance) {
          op.emitWarning() << "Tensor range (" << min << ", " << max
                           << ") is too narrow and it might cause overflow. "
                              "Expanding range symmetrically by "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. src/runtime/mranges.go

    }
    
    // findSucc returns the first index in a such that addr is
    // less than the base of the addrRange at that index.
    func (a *addrRanges) findSucc(addr uintptr) int {
    	base := offAddr{addr}
    
    	// Narrow down the search space via a binary search
    	// for large addrRanges until we have at most iterMax
    	// candidates left.
    	const iterMax = 8
    	bot, top := 0, len(a.ranges)
    	for top-bot > iterMax {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Predicates.java

       * the given class. If the object being tested is {@code null} this predicate evaluates to {@code
       * false}.
       *
       * <p>If you want to filter an {@code Iterable} to narrow its type, consider using {@link
       * com.google.common.collect.Iterables#filter(Iterable, Class)} in preference.
       *
       * <p><b>Warning:</b> contrary to the typical assumptions about predicates (as documented at
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Predicates.java

       * the given class. If the object being tested is {@code null} this predicate evaluates to {@code
       * false}.
       *
       * <p>If you want to filter an {@code Iterable} to narrow its type, consider using {@link
       * com.google.common.collect.Iterables#filter(Iterable, Class)} in preference.
       *
       * <p><b>Warning:</b> contrary to the typical assumptions about predicates (as documented at
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		return nil, errors.New("no program header matches mapping info")
    	}
    	if len(headers) == 1 {
    		return headers[0], nil
    	}
    
    	// Use the file offset corresponding to the address to symbolize, to narrow
    	// down the header.
    	return elfexec.HeaderForFileOffset(headers, addr-m.start+m.offset)
    }
    
    // file implements the binutils.ObjFile interface.
    type file struct {
    	b       *binrep
    	name    string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. src/syscall/syscall_linux_test.go

    	}
    
    	// Perform a blocking read on the pipe.
    	var wg sync.WaitGroup
    	ready := make(chan bool)
    	wg.Add(1)
    	go func() {
    		data := make([]byte, 1)
    
    		// To narrow the window we have to wait for this
    		// goroutine to block in read, synchronize just before
    		// calling read.
    		ready <- true
    
    		// We use syscall.Read directly to avoid the poller.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    		// Conservatively scan the frame. Unlike the precise
    		// case, this includes the outgoing argument space
    		// since we may have stopped while this function was
    		// setting up a call.
    		//
    		// TODO: We could narrow this down if the compiler
    		// produced a single map per function of stack slots
    		// and registers that ever contain a pointer.
    		if frame.varp != 0 {
    			size := frame.varp - frame.sp
    			if size > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

        // parameters are created from the weights when the ops support per-channel
        // quantization. Otherwise, uses per-tensor asymmetric quantization with
        // narrow range.
    
        // per-axis quantization weight, with symmetric min/max enforced.
        final_type = GetUniformQuantizedPerAxisTypeForWeight(
            attr, it->second, /*symmetric=*/true, /*num_bits=*/8, is_signed_,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    The consumer can define any number of attributes.
    Each attribute helps narrow the possible variants that can be selected.
    Attribute values do not need to be exact matches.
    
    The variant can also define any number of attributes.
    The attributes should describe how the variant is intended to be used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. src/cmd/link/link_test.go

    length before the Court, perennially hopeless."`
    
    	principle int `text:"The one great principle of the English law is, to make business for itself. There is no other principle distinctly, certainly, and consistently maintained through all its narrow turnings. Viewed by this light it becomes a coherent scheme, and not the monstrous maze the laity are apt to think it. Let them but once clearly perceive that its grand principle is to make business for itself at their expense, and surely they will...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top