Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for testSqr (0.23 sec)

  1. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	LEAQ  256(inp), inp
    	LEAQ  256(oup), oup
    	SUBQ  $256, inl
    	JMP   openSSEMainLoop
    
    openSSEMainLoopDone:
    	// Handle the various tail sizes efficiently
    	TESTQ inl, inl
    	JE    openSSEFinalize
    	CMPQ  inl, $64
    	JBE   openSSETail64
    	CMPQ  inl, $128
    	JBE   openSSETail128
    	CMPQ  inl, $192
    	JBE   openSSETail192
    	JMP   openSSETail256
    
    openSSEFinalize:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// TESTx: compare (arg0 & arg1) to 0
    		{name: "TESTQ", argLength: 2, reg: gp2flags, commutative: true, asm: "TESTQ", typ: "Flags"},
    		{name: "TESTL", argLength: 2, reg: gp2flags, commutative: true, asm: "TESTL", typ: "Flags"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  3. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %0 : tensor<1x80x128x!quant.uniform<i8:f32, 0.60070550441741943:-128>>
    }
    
    // -----
    
    // CHECK-LABEL: testSqrt
    func.func @testSqrt(tensor<? x f32>) -> tensor<? x f32> {
    ^bb0(%arg0: tensor<? x f32>):
      // CHECK: "tfl.sqrt"(%arg0)
      %0 = "tfl.sqrt"(%arg0): (tensor<? x f32>) -> tensor<? x f32>
      func.return %0 : tensor<? x f32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    	if x.pos >= len(x.last) {
    		x.last = append(x.last, choice{x.r.Intn(max), 0, max})
    	}
    	c := &x.last[x.pos]
    	x.pos++
    	if c.max != max {
    		panic("inconsistent use of exhaustive tester")
    	}
    	return (c.n + c.off) % max
    }
    
    func (x *exhaustive) Maybe() bool {
    	return x.Choose(2) == 1
    }
    
    func GCFunc(args []Value) []Value {
    	runtime.GC()
    	return []Value{}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top