- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for AVX2 (0.05 sec)
-
internal/s3select/select_test.go
for _, testCase := range testTable { t.Run(testCase.name, func(t *testing.T) { // Hack cpuid to the CPU doesn't appear to support AVX2. // Restore whatever happens. if cpuid.CPU.Supports(cpuid.AVX2) { cpuid.CPU.Disable(cpuid.AVX2) defer cpuid.CPU.Enable(cpuid.AVX2) } if simdjson.SupportedCPU() { t.Fatal("setup error: expected cpu to be unsupported") } testReq := testCase.requestXMLRegistered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 76.1K bytes - Viewed (0) -
.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) -
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) -
lib/fips140/v1.0.0-c2097c7c.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 blockAMD64(dig *Digest, p []byte) //go:noescape func blockAVX2(dig *Digest, p []byte) //go:noescape func blockSHANI(dig *Digest, p []byte) func block(dig *Digest, p []byte)...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Sep 25 19:53:19 UTC 2025 - 642.7K bytes - Viewed (0) -
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)