Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 98 for Approximates (0.19 sec)

  1. src/runtime/map.go

    	count     int // # live cells == size of map.  Must be first (used by len() builtin)
    	flags     uint8
    	B         uint8  // log_2 of # of buckets (can hold up to loadFactor * 2^B items)
    	noverflow uint16 // approximate number of overflow buckets; see incrnoverflow for details
    	hash0     uint32 // hash seed
    
    	buckets    unsafe.Pointer // array of 2^B Buckets. may be nil if count==0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        boolean longWait = TimeUnit.NANOSECONDS.toSeconds(thread.timeSpentBlocked) >= 5;
        // Count how long it actually took to return; we'll accept any number between the expected delay
        // and the approximate actual delay, to be robust to variance in thread scheduling.
        char overWaitNanosFirstDigit =
            Long.toString(
                    thread.timeSpentBlocked - TimeUnit.MILLISECONDS.toNanos(longWait ? 5000 : 3000))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  3. src/encoding/json/decode.go

    // The input can be assumed to be a valid encoding of
    // a JSON value. UnmarshalJSON must copy the JSON data
    // if it wishes to retain the data after returning.
    //
    // By convention, to approximate the behavior of [Unmarshal] itself,
    // Unmarshalers implement UnmarshalJSON([]byte("null")) as a no-op.
    type Unmarshaler interface {
    	UnmarshalJSON([]byte) error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  4. src/math/big/natdiv.go

    the future we will make it work like the alternative, to avoid a special case
    in the final iteration.
    
    Either way, each step is a 3-by-2-wide-digit division approximated first by
    a 2-by-1-wide-digit division, just as we did for regular digits in long division.
    Because the actual answer we want is a 3-by-2-wide-digit division, instead of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  5. src/runtime/trace.go

    }
    
    // stop stops a traceAdvancer and blocks until it exits.
    func (s *traceAdvancerState) stop() {
    	s.timer.wake()
    	<-s.done
    	close(s.done)
    	s.timer.close()
    }
    
    // traceAdvancePeriod is the approximate period between
    // new generations.
    const defaultTraceAdvancePeriod = 1e9 // 1 second.
    
    // wakeableSleep manages a wakeable goroutine sleep.
    //
    // Users of this type must call init before first use and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  6. src/go/printer/nodes.go

    	}
    	f := list[0]
    	if f.Tag != nil || f.Comment != nil {
    		return false // don't allow tags or comments
    	}
    	// only name(s) and type
    	const maxSize = 30 // adjust as appropriate, this is an approximate value
    	namesSize := identListSize(f.Names, maxSize)
    	if namesSize > 0 {
    		namesSize = 1 // blank between names and types
    	}
    	typeSize := p.nodeSize(f.Type, maxSize)
    	return namesSize+typeSize <= maxSize
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    	// maxPagesPerPhysPage is the maximum number of supported runtime pages per
    	// physical page, based on maxPhysPageSize.
    	maxPagesPerPhysPage = maxPhysPageSize / pageSize
    
    	// scavengeCostRatio is the approximate ratio between the costs of using previously
    	// scavenged memory and scavenging memory.
    	//
    	// For most systems the cost of scavenging greatly outweighs the costs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      typedef GeluOptions TableType;
      bool approximate = false;
    };
    
    struct GeluOptions FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table {
      typedef GeluOptionsT NativeTableType;
      typedef GeluOptionsBuilder Builder;
      enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
        VT_APPROXIMATE = 4
      };
      bool approximate() const {
        return GetField<uint8_t>(VT_APPROXIMATE, 0) != 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    func canMergeLoadClobber(target, load, x *Value) bool {
    	// The register containing x is going to get clobbered.
    	// Don't merge if we still need the value of x.
    	// We don't have liveness information here, but we can
    	// approximate x dying with:
    	//  1) target is x's only use.
    	//  2) target is not in a deeper loop than x.
    	if x.Uses != 1 {
    		return false
    	}
    	loopnest := x.Block.Func.loopnest()
    	loopnest.calculateDepths()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      %4 = "tfl.mul"(%0, %3) {fused_activation_function = "NONE"} : (tensor<3xf32>, tensor<3xf32>) -> tensor<3xf32>
      func.return %4 : tensor<3xf32>
    
    // CHECK-LABEL:gelu
    // CHECK: "tfl.gelu"(%arg0) <{approximate = false}> : (tensor<3xf32>) -> tensor<3xf32>
    }
    
    func.func @gelu_no_match(%arg0: tensor<3xf32>) -> tensor<3xf32> {
      %cst = arith.constant dense<0.707106769> : tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
Back to top