Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for Igamma (0.1 sec)

  1. src/math/lgamma.go

    	-1.63092934096575273989e-03, // 0xBF5AB89D0B9E43E4
    }
    
    // Lgamma returns the natural logarithm and sign (-1 or +1) of [Gamma](x).
    //
    // Special cases are:
    //
    //	Lgamma(+Inf) = +Inf
    //	Lgamma(0) = +Inf
    //	Lgamma(-integer) = +Inf
    //	Lgamma(-Inf) = -Inf
    //	Lgamma(NaN) = NaN
    func Lgamma(x float64) (lgamma float64, sign int) {
    	const (
    		Ymin  = 1.461632144968362245
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                "Rsqrt", "Sigmoid", "Sign", "Sinh", "Softplus", "Softsign", "Sqrt",
                "Square", "Tan", "Tanh", "Real", "Imag", "Erf", "Erfc", "Erfinv",
                "Lgamma", "Digamma",
                // Binary
                "Add", "AddV2", "Sub", "Mul", "Div", "Atan2", "Complex", "DivNoNan",
                "MulNoNan", "FloorDiv", "Xlogy", "Xlog1py", "Xdivy", "FloorMod",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-gamma.yaml

    Alexander Zielenski <******@****.***> 1697824555 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 365 bytes
    - Viewed (0)
  4. src/math/all_test.go

    	for i := 0; i < len(vf); i++ {
    		if f, s := Lgamma(vf[i]); !close(lgamma[i].f, f) || lgamma[i].i != s {
    			t.Errorf("Lgamma(%g) = %g, %d, want %g, %d", vf[i], f, s, lgamma[i].f, lgamma[i].i)
    		}
    	}
    	for i := 0; i < len(vflgammaSC); i++ {
    		if f, s := Lgamma(vflgammaSC[i]); !alike(lgammaSC[i].f, f) || lgammaSC[i].i != s {
    			t.Errorf("Lgamma(%g) = %g, %d, want %g, %d", vflgammaSC[i], f, s, lgammaSC[i].f, lgammaSC[i].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)
  5. src/crypto/internal/mlkem768/mlkem768_test.go

    		}
    	}
    }
    
    func TestGammas(t *testing.T) {
    	ζ := big.NewInt(17)
    	q := big.NewInt(q)
    	for k, gamma := range gammas {
    		// ζ^2BitRev7(i)+1
    		exp := new(big.Int).Exp(ζ, big.NewInt(int64(BitRev7(uint8(k)))*2+1), q)
    		if big.NewInt(int64(gamma)).Cmp(exp) != 0 {
    			t.Errorf("gammas[%d] = %v, expected %v", k, gamma, exp)
    		}
    	}
    }
    
    func TestRoundTrip(t *testing.T) {
    	dk, err := GenerateKey()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 15:27:18 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        // Compute the reflected value, used when x < 0.5:
        //
        //   lgamma(x) = log(pi) - lgamma(1-x) - log(abs(sin(pi * x))).
        //
        // (The abs is because lgamma is the log of the absolute value of the gamma
        // function.)
        //
        // We have to be careful when computing the final term above. gamma(x) goes
        // to +/-inf at every integer x < 0, and this is controlled by the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r24/BuildInvocationsCrossVersionSpec.groovy

              task alpha {
                description = 'ALPHA from sub project'
              }
              task beta {
                description = 'BETA from sub project'
              }
              task gamma {
                description = 'GAMMA from sub'
              }
            '''
    
            when:
            def buildInvocations = withConnection { ProjectConnection connection ->
                connection.getModel(BuildInvocations.class)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. src/crypto/elliptic/params.go

    	z3.Mul(z3, z3)
    	z3.Sub(z3, gamma)
    	if z3.Sign() == -1 {
    		z3.Add(z3, curve.P)
    	}
    	z3.Sub(z3, delta)
    	if z3.Sign() == -1 {
    		z3.Add(z3, curve.P)
    	}
    	z3.Mod(z3, curve.P)
    
    	beta.Lsh(beta, 2)
    	beta.Sub(beta, x3)
    	if beta.Sign() == -1 {
    		beta.Add(beta, curve.P)
    	}
    	y3 := alpha.Mul(alpha, beta)
    
    	gamma.Mul(gamma, gamma)
    	gamma.Lsh(gamma, 3)
    	gamma.Mod(gamma, curve.P)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. src/bytes/buffer_test.go

    	{"hello\x01world", 1, []string{"hello\x01"}, nil},
    	{"foo\nbar", 0, []string{"foo\nbar"}, io.EOF},
    	{"alpha\nbeta\ngamma\n", '\n', []string{"alpha\n", "beta\n", "gamma\n"}, nil},
    	{"alpha\nbeta\ngamma", '\n', []string{"alpha\n", "beta\n", "gamma"}, io.EOF},
    }
    
    func TestReadBytes(t *testing.T) {
    	for _, test := range readBytesTests {
    		buf := NewBufferString(test.buffer)
    		var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:31:36 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/debuginfo/v1_1.0_224_frozen.wrong_attr.line.part.pbtxt

          }
        }
      }
    }
    node {
      name: "MobilenetV1/Conv2d_0/BatchNorm/gamma/read"
      op: "Identity"
      input: "MobilenetV1/Conv2d_0/BatchNorm/gamma"
      attr {
        key: "T"
        value {
          type: DT_FLOAT
        }
      }
      attr {
        key: "_class"
        value {
          list {
            s: "loc:@MobilenetV1/Conv2d_0/BatchNorm/gamma"
          }
        }
      }
    }
    node {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 27 18:59:05 UTC 2023
    - 16.2K bytes
    - Viewed (0)
Back to top