Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for vfatanhSC (0.09 sec)

  1. src/math/arith_s390x_test.go

    		a := vf[i] / 10
    		if f := AtanhNovec(a); !veryclose(atanh[i], f) {
    			t.Errorf("Atanh(%g) = %g, want %g", a, f, atanh[i])
    		}
    	}
    	for i := 0; i < len(vfatanhSC); i++ {
    		if f := AtanhNovec(vfatanhSC[i]); !alike(atanhSC[i], f) {
    			t.Errorf("Atanh(%g) = %g, want %g", vfatanhSC[i], f, atanhSC[i])
    		}
    	}
    }
    
    func TestAcosNovec(t *testing.T) {
    	if !HasVX {
    		t.Skipf("no vector support")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 08 19:52:30 UTC 2017
    - 10.8K bytes
    - Viewed (0)
  2. src/math/all_test.go

    		a := vf[i] / 10
    		if f := Atanh(a); !veryclose(atanh[i], f) {
    			t.Errorf("Atanh(%g) = %g, want %g", a, f, atanh[i])
    		}
    	}
    	for i := 0; i < len(vfatanhSC); i++ {
    		if f := Atanh(vfatanhSC[i]); !alike(atanhSC[i], f) {
    			t.Errorf("Atanh(%g) = %g, want %g", vfatanhSC[i], f, atanhSC[i])
    		}
    	}
    }
    
    func TestAtan2(t *testing.T) {
    	for i := 0; i < len(vf); 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