Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for has_bias (0.16 sec)

  1. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/Hashing.java

                }
                int hashBits = prototype.getDigestLength() * 8;
                try {
                    Object ignored = prototype.clone();
                    return new CloningMessageDigestHashFunction(prototype, hashBits);
                } catch (CloneNotSupportedException e) {
                    return new RegularMessageDigestHashFunction(algorithm, hashBits);
                }
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:30 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. src/compress/flate/deflate.go

    	// stop things from getting too large.
    	maxFlateBlockTokens = 1 << 14
    	maxStoreBlockSize   = 65535
    	hashBits            = 17 // After 17 performance degrades
    	hashSize            = 1 << hashBits
    	hashMask            = (1 << hashBits) - 1
    	maxHashOffset       = 1 << 24
    
    	skipNever = math.MaxInt32
    )
    
    type compressionLevel struct {
    	level, good, lazy, nice, chain, fastSkipHashing int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

        bool needs_adjustment = false;
        for (int i = 0; i < bias_quantized_type.getScales().size(); ++i) {
          const float abs_bias = std::abs(bias_values.getValues<float>()[i]);
          if (abs_bias / new_bias_scales[i] > kBiasMax) {
            new_bias_scales[i] = static_cast<double>(abs_bias) / kBiasMax;
            new_filter_scales[i] = new_bias_scales[i] / input_scale;
            needs_adjustment = true;
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
Back to top