Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BenchmarkAcosh (0.25 sec)

  1. src/math/cmplx/cmath_test.go

    	for i := 0; i < b.N; i++ {
    		Abs(complex(2.5, 3.5))
    	}
    }
    func BenchmarkAcos(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		Acos(complex(2.5, 3.5))
    	}
    }
    func BenchmarkAcosh(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		Acosh(complex(2.5, 3.5))
    	}
    }
    func BenchmarkAsin(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		Asin(complex(2.5, 3.5))
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 48.1K bytes
    - Viewed (0)
  2. src/math/all_test.go

    	GlobalI int
    	GlobalB bool
    	GlobalF float64
    )
    
    func BenchmarkAcos(b *testing.B) {
    	x := 0.0
    	for i := 0; i < b.N; i++ {
    		x = Acos(.5)
    	}
    	GlobalF = x
    }
    
    func BenchmarkAcosh(b *testing.B) {
    	x := 0.0
    	for i := 0; i < b.N; i++ {
    		x = Acosh(1.5)
    	}
    	GlobalF = x
    }
    
    func BenchmarkAsin(b *testing.B) {
    	x := 0.0
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
Back to top