Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for underflow (0.15 sec)

  1. lib/fips140/v1.0.0.zip

    > m even if x < m. // // x and m operands must have the same announced length. // //go:norace func (x *Nat) maybeSubtractModulus(always choice, m *Modulus) { t := NewNat().set(x) underflow := t.sub(m.nat) // We keep the result if x - m didn't underflow (meaning x >= m) // or if always was set. keep := not(choice(underflow)) | choice(always) x.assign(keep, t) } // Sub computes x = x - y mod m. // // The length of both operands must be the same as the modulus. Both operands // must already be reduced...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
  2. RELEASE.md

            `TransformedDistribution`.
        *   Fix a bug in `import_meta_graph`'s handling of partitioned variables
            when
        *   Ensure `tf.distributions.Multinomial` doesn't underflow in `log_prob`.
            Before this change, all partitions of an integer variable were
            initialized with the shape of the unpartitioned variable; after this
            change they are initialized correctly.
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Aug 18 20:54:38 UTC 2025
    - 740K bytes
    - Viewed (1)
Back to top