Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BenchmarkOr64 (0.24 sec)

  1. src/internal/runtime/atomic/atomic_andor_test.go

    	var x [128]uint32 // give x its own cache line
    	sink = &x
    	b.RunParallel(func(pb *testing.PB) {
    		i := uint32(0)
    		for pb.Next() {
    			atomic.Or32(&x[63], i)
    			i++
    		}
    	})
    }
    
    func BenchmarkOr64(b *testing.B) {
    	var x [128]uint64 // give x its own cache line
    	sink = &x
    	for i := 0; i < b.N; i++ {
    		atomic.Or64(&x[63], uint64(i))
    	}
    }
    
    func BenchmarkOr64Parallel(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 27 20:49:32 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top