Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LO (0.08 sec)

  1. lib/fips140/v1.0.0.zip

    64-bit limbs, for use with the // bits.Mul64 and bits.Add64 intrinsics. type uint128 struct { lo, hi uint64 } // mul64 returns a * b. func mul64(a, b uint64) uint128 { hi, lo := bits.Mul64(a, b) return uint128{lo, hi} } // addMul64 returns v + a * b. func addMul64(v uint128, a, b uint64) uint128 { hi, lo := bits.Mul64(a, b) lo, c := bits.Add64(lo, v.lo, 0) hi, _ = bits.Add64(hi, v.hi, c) return uint128{lo, hi} } // shiftRightBy51 returns a >> 51. a is assumed to be at most 115 bits. func shiftRightBy51(a...
    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

        *   XLA:GPU reductions are deterministic by default (reductions within
            `jit_compile=True` are now deterministic).
        *   XLA:GPU works with Horovod (OSS contribution by Trent Lo from NVidia)
        *   XLA:CPU and XLA:GPU can compile tf.unique and tf.where when shapes are
            provably correct at compile time.
    *   `tf.saved_model.save`:
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Aug 18 20:54:38 UTC 2025
    - 740K bytes
    - Viewed (1)
  3. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    0EA1..0EA3    ; valid                                  # 1.1  LAO LETTER MO..LAO LETTER LO LING
    0EA4          ; disallowed                             # NA   <reserved-0EA4>
    0EA5          ; valid                                  # 1.1  LAO LETTER LO LOOT
    0EA6          ; disallowed                             # NA   <reserved-0EA6>
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
Back to top