Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for vfcoshSC (0.08 sec)

  1. src/math/arith_s390x_test.go

    	for i := 0; i < len(vf); i++ {
    		if f := CoshNoVec(vf[i]); !close(cosh[i], f) {
    			t.Errorf("Cosh(%g) = %g, want %g", vf[i], f, cosh[i])
    		}
    	}
    	for i := 0; i < len(vfcoshSC); i++ {
    		if f := CoshNoVec(vfcoshSC[i]); !alike(coshSC[i], f) {
    			t.Errorf("Cosh(%g) = %g, want %g", vfcoshSC[i], f, coshSC[i])
    		}
    	}
    }
    func TestSinNovec(t *testing.T) {
    	if !HasVX {
    		t.Skipf("no vector support")
    	}
    	for i := 0; i < len(vf); i++ {
    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

    		if f := Cosh(vf[i]); !close(cosh[i], f) {
    			t.Errorf("Cosh(%g) = %g, want %g", vf[i], f, cosh[i])
    		}
    	}
    	for i := 0; i < len(vfcoshSC); i++ {
    		if f := Cosh(vfcoshSC[i]); !alike(coshSC[i], f) {
    			t.Errorf("Cosh(%g) = %g, want %g", vfcoshSC[i], f, coshSC[i])
    		}
    	}
    }
    
    func TestErf(t *testing.T) {
    	for i := 0; i < len(vf); i++ {
    		a := vf[i] / 10
    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