Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AVX2 (0.04 sec)

  1. .bazelrc

    # Configure short or long logs
    common:short_logs --output_filter=DONT_MATCH_ANYTHING
    common:verbose_logs --output_filter=
    
    # Instruction set optimizations
    # TODO(gunan): Create a feature in toolchains for avx/avx2 to
    #   avoid having to define linux/win separately.
    common:avx_linux --copt=-mavx
    common:avx_linux --host_copt=-mavx
    common:avx_linux --copt="-mf16c"
    common:avx_win --copt=/arch:AVX
    common:avx_win --copt="-mf16c"
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Fri Dec 26 23:20:26 UTC 2025
    - 56.8K bytes
    - Viewed (0)
  2. RELEASE.md

    youshenmebutuo, yqtianust, Yuan Tang, yuanbopeng, Yuriy Chernyshov, Yuta
    Fukasawa, Zachary Deane-Mayer, Zeno Gantner, Zhoulong Jiang, zhuyie, zilinzhu,
    彭震东
    
    # Release 2.4.1
    
    *   This release removes the AVX2 requirement from TF 2.4.0.
    
    # Release 2.3.2
    
    ## Bug Fixes and Other Changes
    
    *   Fixes an access to unitialized memory in Eigen code
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Tue Oct 28 22:27:41 UTC 2025
    - 740.4K bytes
    - Viewed (3)
  3. lib/fips140/v1.1.0-rc1.zip

    ( "crypto/internal/fips140deps/cpu" "crypto/internal/impl" ) var useAVX2 = cpu.X86HasAVX && cpu.X86HasAVX2 && cpu.X86HasBMI2 var useSHANI = cpu.X86HasAVX && cpu.X86HasSHA && cpu.X86HasSSE41 && cpu.X86HasSSSE3 func init() { impl.Register("sha256", "AVX2", &useAVX2) impl.Register("sha256", "SHA-NI", &useSHANI) } //go:noescape func blockAVX2(dig *Digest, p []byte) //go:noescape func blockSHANI(dig *Digest, p []byte) func block(dig *Digest, p []byte) { if useSHANI { blockSHANI(dig, p) } else if useAVX2...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top