Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for x_1 (0.06 sec)

  1. tensorflow/cc/ops/const_op_test.cc

      auto c_1 = ops::Const(root, {{2.0}, {3.0}});
      EXPECT_EQ(c_1.node()->name(), "Const_1");
    
      auto x = ops::Const(root.WithOpName("x"), 1);
      EXPECT_EQ(x.node()->name(), "x");
      auto x_1 = ops::Const(root.WithOpName("x"), 1);
      EXPECT_EQ(x_1.node()->name(), "x_1");
    
      Scope child = root.NewSubScope("c");
      auto c_y = ops::Const(child.WithOpName("y"), 1);
      EXPECT_EQ(c_y.node()->name(), "c/y");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 12 14:38:21 UTC 2019
    - 4.9K bytes
    - Viewed (0)
  2. src/crypto/internal/edwards25519/scalarmult.go

    	// as described in the Ed25519 paper
    	//
    	// Group even and odd coefficients
    	// x*B     = x_0*16^0*B + x_2*16^2*B + ... + x_62*16^62*B
    	//         + x_1*16^1*B + x_3*16^3*B + ... + x_63*16^63*B
    	// x*B     = x_0*16^0*B + x_2*16^2*B + ... + x_62*16^62*B
    	//    + 16*( x_1*16^0*B + x_3*16^2*B + ... + x_63*16^62*B)
    	//
    	// We use a lookup table for each i to get x_i*16^(2*i)*B
    	// and do four doublings to multiply by 16.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:10 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  3. internal/s3select/sql/parser_test.go

    	p := participle.MustBuild(
    		&ObjectKey{},
    		participle.Lexer(sqlLexer),
    		participle.CaseInsensitive("Keyword"),
    	)
    
    	validCases := []string{
    		"['abc']",
    		"['ab''c']",
    		"['a''b''c']",
    		"['abc-x_1##@(*&(#*))/\\']",
    	}
    	for i, tc := range validCases {
    		err := p.ParseString(tc, &k)
    		if err != nil {
    			t.Fatalf("%d: %v", i, err)
    		}
    		if string(*k.Lit) == "" {
    			t.Fatalf("Incorrect parse %#v", k)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top