Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AtanhNovec (0.21 sec)

  1. src/math/export_s390x_test.go

    package math
    
    // Export internal functions and variable for testing.
    var Log10NoVec = log10
    var CosNoVec = cos
    var CoshNoVec = cosh
    var SinNoVec = sin
    var SinhNoVec = sinh
    var TanhNoVec = tanh
    var Log1pNovec = log1p
    var AtanhNovec = atanh
    var AcosNovec = acos
    var AcoshNovec = acosh
    var AsinNovec = asin
    var AsinhNovec = asinh
    var ErfNovec = erf
    var ErfcNovec = erfc
    var AtanNovec = atan
    var Atan2Novec = atan2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 08 19:52:30 UTC 2017
    - 732 bytes
    - Viewed (0)
  2. src/math/arith_s390x_test.go

    	if !HasVX {
    		t.Skipf("no vector support")
    	}
    	for i := 0; i < len(vf); i++ {
    		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])
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 08 19:52:30 UTC 2017
    - 10.8K bytes
    - Viewed (0)
Back to top