Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for rsqr (0.32 sec)

  1. src/crypto/internal/edwards25519/field/fe_test.go

    	x2sq.Square(&x)
    
    	if x2 != x2sq {
    		t.Fatalf("all ones failed\nmul: %x\nsqr: %x\n", x2, x2sq)
    	}
    
    	var bytes [32]byte
    
    	_, err := io.ReadFull(rand.Reader, bytes[:])
    	if err != nil {
    		t.Fatal(err)
    	}
    	x.SetBytes(bytes[:])
    
    	x2.Multiply(&x, &x)
    	x2sq.Square(&x)
    
    	if x2 != x2sq {
    		t.Fatalf("all ones failed\nmul: %x\nsqr: %x\n", x2, x2sq)
    	}
    }
    
    func TestEqual(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⨒":                        "\u2a12",
    	"⇉":                           "\u21c9",
    	"›":                          "\u203a",
    	"𝓇":                            "\U0001d4c7",
    	"↱":                             "\u21b1",
    	"]":                            "\u005d",
    	"’":                           "\u2019",
    	"’":                          "\u2019",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.golden_summary

    cluster 11 size 302
     Add 24
     BatchMatMulV2 1
     BiasAdd 8
     Cast 8
     ConcatV2 16
     Const 81
     ExpandDims 3
     Fill 1
     GreaterEqual 8
     Identity 1
     Less 1
     MatMul 10
     Mul 44
     Range 1
     Rsqrt 1
     Select 19
     Shape 6
     Sigmoid 24
     Snapshot 8
     Softmax 1
     Split 8
     SplitV 6
     Square 1
     Squeeze 1
     StridedSlice 1
     Sum 2
     Tanh 17
    cluster 12 size 6
     Add 1
     All 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. src/html/entity.go

    		"rppolint;":                        '\U00002A12',
    		"rrarr;":                           '\U000021C9',
    		"rsaquo;":                          '\U0000203A',
    		"rscr;":                            '\U0001D4C7',
    		"rsh;":                             '\U000021B1',
    		"rsqb;":                            '\U0000005D',
    		"rsquo;":                           '\U00002019',
    		"rsquor;":                          '\U00002019',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  5. src/math/big/rat.go

    func (z *Rat) Mul(x, y *Rat) *Rat {
    	if x == y {
    		// a squared Rat is positive and can't be reduced (no need to call norm())
    		z.a.neg = false
    		z.a.abs = z.a.abs.sqr(x.a.abs)
    		if len(x.b.abs) == 0 {
    			z.b.abs = z.b.abs.setWord(1)
    		} else {
    			z.b.abs = z.b.abs.sqr(x.b.abs)
    		}
    		return z
    	}
    	z.a.Mul(&x.a, &y.a)
    	z.b.abs = mulDenom(z.b.abs, x.b.abs, y.b.abs)
    	return z.norm()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  6. src/math/big/nat_test.go

    				}
    			}
    		}
    	}
    }
    
    func testSqr(t *testing.T, x nat) {
    	got := make(nat, 2*len(x))
    	want := make(nat, 2*len(x))
    	got = got.sqr(x)
    	want = want.mul(x, x)
    	if got.cmp(want) != 0 {
    		t.Errorf("basicSqr(%v), got %v, want %v", x, got, want)
    	}
    }
    
    func TestSqr(t *testing.T) {
    	for _, a := range prodNN {
    		if a.x != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/vhlo.mlir

    //CHECK-NEXT: return %0 : tensor<1x30x1xi32>
    //CHECK-NEXT:}
    
    func.func @rsqrt(%arg0: tensor<1x1x1x96xf32>) -> tensor<1x1x1x96xf32> {
     %0 = "vhlo.rsqrt_v1" (%arg0) : (tensor<1x1x1x96xf32>) -> tensor<1x1x1x96xf32>
     func.return %0 : tensor<1x1x1x96xf32>
    }
    
    //CHECK:func.func private @rsqrt(%arg0: tensor<1x1x1x96xf32>) -> tensor<1x1x1x96xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 31.9K bytes
    - Viewed (1)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

            $round_val
          ),
          /*incompatible_shape_error*/ConstBoolAttrTrue
        ),
        $zero,
        $rounded
      )>;
    
    //===----------------------------------------------------------------------===//
    // Rsqrt op patterns.
    //===----------------------------------------------------------------------===//
    
    // RsqrtGrad(lhs, rhs) = (lhs * lhs * lhs) * (rhs / -2)
    def LowerRsqrtGradOp : Pat<
      (TF_RsqrtGradOp $lhs, $rhs),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. src/math/big/ratconv.go

    	var t, r nat         // temporaries
    	for {
    		if _, r = t.div(r, q, f); len(r) != 0 {
    			break // f doesn't divide q evenly
    		}
    		tab = append(tab, f)
    		f = nat(nil).sqr(f) // nat(nil) to ensure a new f for each table entry
    	}
    
    	// Factor q using the table entries, if any.
    	// We start with the largest factor f = tab[len(tab)-1]
    	// that evenly divides q. It does so at most once because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/const-fold.mlir

      %8 = "tfl.sin"(%1) : (tensor<f32>) -> tensor<f32>
      %9 = "tfl.cos"(%2) : (tensor<f32>) -> tensor<f32>
      %10 = "tfl.log"(%3) : (tensor<f32>) -> tensor<f32>
      %11 = "tfl.sqrt"(%4) : (tensor<f32>) -> tensor<f32>
      %12 = "tfl.rsqrt"(%5) : (tensor<f32>) -> tensor<f32>
      %13 = "tfl.square"(%6) : (tensor<f32>) -> tensor<f32>
    
      func.return %7, %8, %9, %10, %11, %12, %13 : tensor<f32>, tensor<f32>, tensor<f32>, tensor<f32>, tensor<f32>, tensor<f32>, tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 45.8K bytes
    - Viewed (0)
Back to top