Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 139 for Thresholds (0.26 sec)

  1. src/math/big/nat.go

    }
    
    // karatsubaLen computes an approximation to the maximum k <= n such that
    // k = p<<i for a number p <= threshold and an i >= 0. Thus, the
    // result is the largest number that can be divided repeatedly by 2 before
    // becoming about the value of threshold.
    func karatsubaLen(n, threshold int) int {
    	i := uint(0)
    	for n > threshold {
    		n >>= 1
    		i++
    	}
    	return n << i
    }
    
    func (z nat) mul(x, y nat) nat {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  2. src/crypto/internal/bigmod/nat.go

    	// enough to justify the cost of the multiplications.
    
    	// The threshold is selected experimentally as a linear function of n.
    	threshold := n / 4
    
    	// We calculate how many of the most-significant bits of the exponent we can
    	// compute before crossing the threshold, and we do it with doublings.
    	i := bits.UintSize
    	for logR>>i <= threshold {
    		i--
    	}
    	for k := uint(0); k < logR>>i; k++ {
    		rr.Add(rr, m)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

        }
    
        public SuggestDeleteResponse deleteOldWords(final ZonedDateTime threshold) {
            final long start = System.currentTimeMillis();
            final String query = FieldNames.TIMESTAMP + ":[* TO " + threshold.toInstant().toEpochMilli() + "] NOT " + FieldNames.KINDS + ':'
                    + SuggestItem.Kind.USER;
            deleteByQuery(query);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_compiler.h

      // compilation is disabled. This will raise an error for kLazy even if we have
      // not yet hit the compilation threshold and no compilation happens this
      // round. This is to avoid non-determanism of when compilation is disallowed,
      // for example by changing the threshold.
      if (state == DeviceCompileState::kUncompiled && FailOnXlaCompilation()) {
        VLOG(1) << "XLA compilation disabled: " << function.name() << "\n"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/passes.td

            2. Get list of supported block configurations of the op.
            3. Calculate random sparsity of the weight.
              3.1. If sparsity level is below the encoding threshold, keep in dense.
              3.2. If sparsity level is above the encoding threshold, go to 4.
            4. Try to encode the weight with supported block configurations. If the
               weight was pruned with the same block config, the blocked sparsity level
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. src/math/big/arith_arm64.s

    // if 'x' and 'z' happen to share the same underlying storage.
    // The overhead of the checking and branching is visible when 'z' are small (~5%),
    // so set a threshold of 32, and remain the small-sized part entirely untouched.
    TEXT ·addVW(SB),NOSPLIT,$0
    	MOVD	z+0(FP), R3
    	MOVD	z_len+8(FP), R0
    	MOVD	x+24(FP), R1
    	MOVD	y+48(FP), R2
    	CMP	$32, R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize_drq.cc

              << quantized_op->getName().getStringRef().str() << " because it has "
              << mlir::dyn_cast<DenseFPElementsAttr>(attr).size()
              << " elements which is fewer than the threshold("
              << quant_specs_.minimum_elements_for_weights << " elements).";
          return false;
        }
    
        if (is_per_channel_quantization) {
          quant_type = mlir::dyn_cast<quant::QuantizedType>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_weights.cc

        if (num_elements < num_elements_threshold) {
          op->emitRemark("Quantization is skipped because the op has ")
              << num_elements << " elements which is fewer than the threshold("
              << num_elements_threshold << " elements).";
          return failure();
        }
    
        return success();
      }
    
      // Apply quantization with the provided spec.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/mlrt/tpu_conversions.mlir

    // RUN: tf-tfrt-opt --split-input-file -pass-pipeline='builtin.module(pre-parallel-tf-to-mlrt{use-tpu-host-allocator-for-inputs=true},tf-mlrt-parallelization{tfrt-cost-threshold=4},tf-to-mlrt)'  %s | FileCheck %s --dump-input=fail --dump-input-filter=all
    
    func.func @callee(%arg0: tensor<i32>, %arg1: tensor<i32>) -> (tensor<i32>) {
      func.return %arg0: tensor<i32>
    }
    
    // CHECK-LABEL: func @batch_function
    func.func @batch_function(%arg0: tensor<i32>) -> (tensor<i32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 04 21:25:31 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. pkg/kubelet/prober/worker.go

    		w.resultRun = 1
    	}
    
    	if (result == results.Failure && w.resultRun < int(w.spec.FailureThreshold)) ||
    		(result == results.Success && w.resultRun < int(w.spec.SuccessThreshold)) {
    		// Success or failure is below threshold - leave the probe state unchanged.
    		return true
    	}
    
    	w.resultsManager.Set(w.containerID, result, w.pod)
    
    	if (w.probeType == liveness || w.probeType == startup) && result == results.Failure {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top