Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AVX2 (0.02 sec)

  1. 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.requestXML
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 76.1K bytes
    - Viewed (0)
  2. .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)
Back to top