Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for erf (0.03 sec)

  1. src/math/erf.go

    	sb7 = -2.24409524465858183362e+01 // 0xC03670E242712D62
    )
    
    // Erf returns the error function of x.
    //
    // Special cases are:
    //
    //	Erf(+Inf) = 1
    //	Erf(-Inf) = -1
    //	Erf(NaN) = NaN
    func Erf(x float64) float64 {
    	if haveArchErf {
    		return archErf(x)
    	}
    	return erf(x)
    }
    
    func erf(x float64) float64 {
    	const (
    		VeryTiny = 2.848094538889218e-306 // 0x0080000000000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/math_grad_test.cc

            y = Complex(scope_, x, x);
            break;
          case ANGLE:
            y = Angle(scope_, x);
            break;
          case LGAMMA:
            y = Lgamma(scope_, x);
            break;
          case ERF:
            y = Erf(scope_, x);
            break;
          case ERFINV:
            y = Erfinv(scope_, x);
            break;
          case NDTRI:
            y = Ndtri(scope_, x);
            break;
        }
    
        float max_error;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  3. src/math/arith_s390x_test.go

    		t.Skipf("no vector support")
    	}
    	for i := 0; i < len(vf); i++ {
    		a := vf[i] / 10
    		if f := ErfNovec(a); !veryclose(erf[i], f) {
    			t.Errorf("Erf(%g) = %g, want %g", a, f, erf[i])
    		}
    	}
    	for i := 0; i < len(vferfSC); i++ {
    		if f := ErfNovec(vferfSC[i]); !alike(erfSC[i], f) {
    			t.Errorf("Erf(%g) = %g, want %g", vferfSC[i], f, erfSC[i])
    		}
    	}
    }
    
    func TestErfcNovec(t *testing.T) {
    	if !HasVX {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 08 19:52:30 UTC 2017
    - 10.8K bytes
    - Viewed (0)
  4. src/math/stubs_s390x.s

    TEXT ·erfTrampolineSetup(SB), NOSPLIT, $0
    	MOVB   ·hasVX(SB), R1
    	CMPBEQ R1, $1, vectorimpl               // vectorfacility = 1, vector supported
    	MOVD   $·erfvectorfacility+0x00(SB), R1
    	MOVD   $·erf(SB), R2
    	MOVD   R2, 0(R1)
    	BR     ·erf(SB)
    
    vectorimpl:
    	MOVD $·erfvectorfacility+0x00(SB), R1
    	MOVD $·erfAsm(SB), R2
    	MOVD R2, 0(R1)
    	BR   ·erfAsm(SB)
    
    GLOBL ·erfvectorfacility+0x00(SB), NOPTR, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  5. src/hash/maphash/smhasher_test.go

    	// all sums inside those bounds with 99% probability.
    	N := n * hashSize
    	var c float64
    	// find c such that Prob(mean-c*stddev < x < mean+c*stddev)^N > .9999
    	for c = 0.0; math.Pow(math.Erf(c/math.Sqrt(2)), float64(N)) < .9999; c += .1 {
    	}
    	c *= 11.0 // allowed slack: 40% to 60% - we don't need to be perfectly random
    	mean := .5 * REP
    	stddev := .5 * math.Sqrt(REP)
    	low := int(mean - c*stddev)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/runtime/hash_test.go

    	// all sums inside those bounds with 99% probability.
    	N := n * hashSize
    	var c float64
    	// find c such that Prob(mean-c*stddev < x < mean+c*stddev)^N > .9999
    	for c = 0.0; math.Pow(math.Erf(c/math.Sqrt(2)), float64(N)) < .9999; c += .1 {
    	}
    	c *= 11.0 // allowed slack: 40% to 60% - we don't need to be perfectly random
    	mean := .5 * REP
    	stddev := .5 * math.Sqrt(REP)
    	low := int(mean - c*stddev)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. src/runtime/race/testdata/mop_test.go

    		ch <- 1
    	}()
    	go func() {
    		y = z
    		ch <- 1
    	}()
    	<-ch
    	<-ch
    }
    
    // May crash if the instrumentation is reckless.
    func TestNoRaceEnoughRegisters(t *testing.T) {
    	// from erf.go
    	const (
    		sa1 = 1
    		sa2 = 2
    		sa3 = 3
    		sa4 = 4
    		sa5 = 5
    		sa6 = 6
    		sa7 = 7
    		sa8 = 8
    	)
    	var s, S float64
    	s = 3.1415
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 16:46:25 UTC 2023
    - 28.9K bytes
    - Viewed (0)
Back to top