Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,873 for Invert (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_trait_folds.mlir

    func.func @testTripleInvert(%arg0: tensor<i32>) -> tensor<i32> {
      // CHECK: [[INVERT:%.+]] = "tf.Invert"([[ARG0]])
      %0 = "tf.Invert"(%arg0) : (tensor<i32>) -> tensor<i32>
      %1 = "tf.Invert"(%0) : (tensor<i32>) -> tensor<i32>
      %2 = "tf.Invert"(%1) : (tensor<i32>) -> tensor<i32>
      // CHECK: return [[INVERT]]
      func.return %2: tensor<i32>
    }
    
    // CHECK-LABEL: func @testSingleNeg
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/fiat/p521_invert.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Code generated by addchain. DO NOT EDIT.
    
    package fiat
    
    // Invert sets e = 1/x, and returns e.
    //
    // If x == 0, Invert returns e = 0.
    func (e *P521Element) Invert(x *P521Element) *P521Element {
    	// Inversion is implemented as exponentiation with exponent p − 2.
    	// The sequence of 13 multiplications and 520 squarings is derived from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/fiat/p384_invert.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Code generated by addchain. DO NOT EDIT.
    
    package fiat
    
    // Invert sets e = 1/x, and returns e.
    //
    // If x == 0, Invert returns e = 0.
    func (e *P384Element) Invert(x *P384Element) *P384Element {
    	// Inversion is implemented as exponentiation with exponent p − 2.
    	// The sequence of 15 multiplications and 383 squarings is derived from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/fiat/p256_invert.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Code generated by addchain. DO NOT EDIT.
    
    package fiat
    
    // Invert sets e = 1/x, and returns e.
    //
    // If x == 0, Invert returns e = 0.
    func (e *P256Element) Invert(x *P256Element) *P256Element {
    	// Inversion is implemented as exponentiation with exponent p − 2.
    	// The sequence of 12 multiplications and 255 squarings is derived from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/unusedDestructuring.kt

    class Test {
        private fun test(x: Int, y: Int) {
            val (_, _) = invert(x, y)
        }
    
        private fun invert(x: Int, y: Int): Point {
            return Point(-x, -y)
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 25 08:05:58 UTC 2023
    - 219 bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/fiat/p224_invert.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Code generated by addchain. DO NOT EDIT.
    
    package fiat
    
    // Invert sets e = 1/x, and returns e.
    //
    // If x == 0, Invert returns e = 0.
    func (e *P224Element) Invert(x *P224Element) *P224Element {
    	// Inversion is implemented as exponentiation with exponent p − 2.
    	// The sequence of 11 multiplications and 223 squarings is derived from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/field/fe_alias_test.go

    		twoArgsF func(v, x, y *Element) *Element
    	}
    	for _, tt := range []target{
    		{name: "Absolute", oneArgF: (*Element).Absolute},
    		{name: "Invert", oneArgF: (*Element).Invert},
    		{name: "Negate", oneArgF: (*Element).Negate},
    		{name: "Set", oneArgF: (*Element).Set},
    		{name: "Square", oneArgF: (*Element).Square},
    		{name: "Pow22523", oneArgF: (*Element).Pow22523},
    		{
    			name: "Mult32",
    			oneArgF: func(v, x *Element) *Element {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    // Standard conditions.
    type Cond struct {
    	Value  uint8
    	Invert bool
    }
    
    func (Cond) isArg() {}
    
    func (c Cond) String() string {
    	cond31 := c.Value >> 1
    	invert := bool((c.Value & 1) == 1)
    	invert = (invert != c.Invert)
    	switch cond31 {
    	case 0:
    		if invert {
    			return "NE"
    		} else {
    			return "EQ"
    		}
    	case 1:
    		if invert {
    			return "CC"
    		} else {
    			return "CS"
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  9. test/prove_invert_loop_with_unused_iterators.go

    // errorcheck -0 -d=ssa/prove/debug=1
    
    //go:build amd64
    
    package main
    
    func invert(b func(), n int) {
    	for i := 0; i < n; i++ { // ERROR "(Inverted loop iteration|Induction variable: limits \[0,\?\), increment 1)"
    		b()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 225 bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/fiat/generate.go

    // license that can be found in the LICENSE file.
    
    // Code generated by {{ .Meta.Name }}. DO NOT EDIT.
    
    package fiat
    
    // Invert sets e = 1/x, and returns e.
    //
    // If x == 0, Invert returns e = 0.
    func (e *Element) Invert(x *Element) *Element {
    	// Inversion is implemented as exponentiation with exponent p − 2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 9.1K bytes
    - Viewed (0)
Back to top